define o endereço MAC no arquivo “interfaces” sem configurar outros parâmetros de rede

2

Sob a configuração de rede permanente do Debian Wheezy ocorre no arquivo /etc/network/interfaces . É possível configurar hwaddress para uma interface sem configurar outros parâmetros de rede como address ou netmask ? Algo como:

root@1:~# cat /etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

auto eth0
iface eth0
hwaddress ether DE:AD:BE:EF:69:01

# The primary network interface
auto eth0.100
iface eth0.100 inet static
        address 10.1.1.2
        netmask 255.255.255.0
        network 10.1.1.0
        broadcast 10.1.1.255
        gateway 10.1.7.1
root@1:~# 
    
por Martin 23.03.2015 / 16:54

1 resposta

1

Eu estava procurando por iface eth0 inet manual . Isso permite a configuração como:

root@1:~# cat /etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

auto eth0
iface eth0 inet manual
        hwaddress ether DE:AD:BE:EF:69:01

# The primary network interface
auto eth0.100
iface eth0.100 inet static
        address 10.1.1.2
        netmask 255.255.255.0
        network 10.1.1.0
        broadcast 10.1.1.255
        gateway 10.1.7.1
root@1:~# 
    
por 24.03.2015 / 10:00