Normalmente cuando eliminas un dispositivo de red y agregas otro mediante vmware, ocurre este error «Device eth0 does not seem to be present» en VMWARE», tambien el error ocurre cuando migras la maquina virtual a otra.
Bien haciendo un ls – /sys/class/net pude ver que eth0 no existia, entonces era evidente el error en ese momento.
Entonces lo que hice fue verificar el dispositivo persistente en udev
cat /etc/udev/rules.d/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 0x1022:0x2000 (pcnet32) (custom name provided by external tool)
SUBSYSTEM==»net», ACTION==»add», DRIVERS==»?*», ATTR{address}==»00:0c:55:0d:48:83″, ATTR{type}==»1″, KERNEL==»eth*», NAME=»eth0″
# PCI device 0x1022:0x2000 (pcnet32)
SUBSYSTEM==»net», ACTION==»add», DRIVERS==»?*», ATTR{address}==»00:0c:19:53:1e:ed», ATTR{type}==»1″, KERNEL==»eth*», NAME=»eth1″
Entonces lo que debemos hacer es lo siguiente:
- Edita el archivo anterior.
- Cambia la MAC de eth0 por la de eth1
- Borra la entrada de eth1
- Guarda el archivo.
Luego edita la tarjeta de red eth0
vi /etc/sysconfig/network-scripts/ifcfg-eth0
Coloca la direccion mac del archivo que editaste anteriormente.
Reinicia el servicio de red.
Listo!!!
MFCP!!!