Como um nome seria definido permanentemente para a interface de rede (wifi / ethernet) no arco

5

Parece que a cada reinicialização, os nomes invertem diferentes nics (wifi / ethernet)…

    
por Nolochemical 14.01.2011 / 01:36

1 resposta

6

Use udev . No Gentoo e em muitas outras distribuições, isso é feito automaticamente, mas você pode querer basear-se nisso se quiser uma solução rápida e sem precedentes:

# This file was automatically generated by the /lib64/udev/write_net_rules
# program, run by the persistent-net-generator.rules rules file.
#
# You can modify it, as long as you keep each rule on a single
# line, and change only the value of the NAME= key.

# PCI device 0x8086:0x10f5 (e1000e)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="<MAC_ADDRESS>", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"

# PCI device 0x8086:0x4236 (iwlagn)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="<MAC_ADDRESS>", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="wlan*", NAME="wlan0"

Você alterou alguma configuração udev ?

    
por 14.01.2011 / 03:58