Finalmente, recebi a solução.
Ao digitar ifconfig eth0
, estava mostrando o endereço IP.
[root@localhost ~]# ifconfig eth0 eth0 Link encap:Ethernet HWaddr 00:1E:EC:95:18:66 inet addr:192.168.56.7 Bcast:192.168.56.255 Mask:255.255.255.0 UP BROADCAST MULTICAST MTU:1500 Metric:1 RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:0 (0.0 b) TX bytes:0 (0.0 b) Interrupt:19
No arquivo /etc/sysconfig/network-scripts/ifcfg-eth0
também estava mostrando o endereço IP.
. . IPADDR=192.168.56.7 NETMASK=255.255.255.0 . .
Mesmo ele estava pingando o ip também.
[root@localhost ~]# ping 192.168.56.7 PING 192.168.56.7 (192.168.56.7) 56(84) bytes of data. 64 bytes from 192.168.56.7: icmp_seq=1 ttl=64 time=0.098 ms 64 bytes from 192.168.56.7: icmp_seq=2 ttl=64 time=0.080 ms 64 bytes from 192.168.56.7: icmp_seq=3 ttl=64 time=0.087 ms ^C --- 192.168.56.7 ping statistics --- 3 packets transmitted, 3 received, 0% packet loss, time 2032ms rtt min/avg/max/mdev = 0.080/0.088/0.098/0.010 ms
Aqui eu fiquei confuso, achei que estava pingando, então minha interface eth0
está funcionando. Este é o maior erro que cometi.
Hoje testei este comando
[root@localhost ~]# /etc/init.d/network restart Shutting down interface eth0: Error: Device 'eth0' (/org/freedesktop/NetworkManager/Devices/0) disconnecting failed: This device is not active [FAILED] Shutting down loopback interface: [ OK ] Bringing up loopback interface: [ OK ] Bringing up interface eth0: RTNETLINK answers: File exists
Estava a mostrar este Este dispositivo não está ativo . Então eu entendi o motivo pelo qual não está funcionando. Depois disso eu editei o arquivo /etc/sysconfig/network-scripts/ifcfg-eth0
com apenas este conteúdo e deletei todas as outras linhas.
DEVICE=eth0 BOOTPROTO=none HWADDR=AA:BB:BB:DD:EE:FF NM_CONTROLLED=no ONBOOT=yes IPADDR=192.168.56.7 NETMASK=255.255.255.0
Depois disso eu reafirmei o serviço de rede, tentei o comando ping e ele começou a pingar minha máquina guest que é 192.168.56.9.