Forma definitiva de configurar dispositivos de rede no Centos 6.2

3

Qual é a maneira definitiva de configurar dispositivos de rede no Centos 6.2? Através do gerenciador de rede ou editando /etc/sysconfig/network-scripts ?

Eu tenho um notebook com uma porta ethernet e um adaptador usb ethernet plugado.

Quando eu faço ip link show , vejo eth0 e em1 . No entanto, quando vou para /etc/sysconfig/network-scripts , há um arquivo ifcfg-eth0 e ifcfg-usb0 , mas não ifcfg-em1 .

O applet do gerenciador de rede é exibido em Conexões com fio, System eth0 e System usb0. Eu configurei eth0 para 10.0.4.24 e usb0 para usar o dhcp no applet do gerenciador de rede.

Quando eu removo o dispositivo usb ethernet, ip link show mostra apenas em1 . Isso significa em1 mapeia para eth0 ? No entanto, como eth0 não está mais presente (porque o adaptador usb foi removido), isso significa que usb0 também é mapeado para eth0 ?

Meu problema é que, quando eu faço um ifconfig , BOTH em1 e eth0 mostram um endereço IP de 10.0.4.24 .

PS, se isso pertencer aqui ou no serverfault?

edite: saída solicitada adicionada:

# more 70-persistent-net.rules 
# This file was automatically generated by the /lib/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:0x422b (iwlagn)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="24:77:03:74:85:98", ATTR{type}=="1", KERNEL=="wlan*", NAME="wlan0"

# USB device 0x0b95:0x7720 (usb)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:50:b6:50:b5:fc", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"

---------------------

# more ifcfg-eth0 
DEVICE="eth0"
BOOTPROTO=none
#HWADDR="00:21:70:B9:4C:9F" # Commented by Clonezilla
NM_CONTROLLED="yes"
ONBOOT="yes"
TYPE="Ethernet"
DEFROUTE=yes
IPV4_FAILURE_FATAL=yes
IPV6INIT=no
NAME="System eth0"
UUID=5fb06bd0-0bb0-7ffb-45f1-d6edd65f3e03
IPADDR=10.0.4.24
PREFIX=24

-----------------------

# more ifcfg-usb0 
DEVICE="usb0"
NM_CONTROLLED="yes"
ONBOOT="no"
TYPE=Ethernet
BOOTPROTO=dhcp
DEFROUTE=yes
IPV4_FAILURE_FATAL=yes
IPV6INIT=no
NAME="System usb0"
UUID=689ce77b-bfa1-c10b-19a2-eb3a89251128
HWADDR=02:80:37:EC:02:00
PEERDNS=yes
PEERROUTES=yes

-------------------------

# ifconfig
em1       Link encap:Ethernet  HWaddr D4:BE:D9:2B:D3:72  
          inet addr:10.0.4.24  Bcast:10.0.4.255  Mask:255.255.255.0
          inet6 addr: fe80::d6be:d9ff:fe2b:d372/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:120 errors:0 dropped:0 overruns:0 frame:0
          TX packets:57 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:11475 (11.2 KiB)  TX bytes:10552 (10.3 KiB)
          Interrupt:20 Memory:e6e00000-e6e20000 

eth0      Link encap:Ethernet  HWaddr 00:50:B6:50:B5:FC  
          inet addr:10.0.4.24  Bcast:10.0.4.255  Mask:255.255.255.0
          inet6 addr: fe80::250:b6ff:fe50:b5fc/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:1000 errors:0 dropped:0 overruns:0 frame:0
          TX packets:473 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:87868 (85.8 KiB)  TX bytes:56643 (55.3 KiB)

Note que não há entrada em ifconfig ou ip link para usb0

    
por A G 16.01.2013 / 12:35

1 resposta

3

Use o NetworkManager, que é o caminho a seguir. Costumava fazer coisas estranhas há algum tempo, mas isso foi resolvido agora. Se você tiver alguma configuração exótica, tente integrá-la lá. Edite os arquivos apenas em /etc/sysconfig/network-scripts à mão como último recurso.

    
por 21.01.2013 / 21:12