¿Cómo asignar varias IP’s a una tarjeta eth en Fedora? Supongamos que tenemos 2 tarjetas eth0 y eth1.
En el directorio /etc/sysconfig/network-scripts, asignamos las IP’s 191.168.1.10, 191.168.1.11, 191.168.1.13 a la tarjeta eth0 y la IP 191.168.1.20 a la tarjeta eth1.
Fichero ifcfg-eth0 DEVICE=eth0 ONBOOT=yes BOOTPROTO=static IPADDR=191.168.1.10 NETMASK=255.255.255.0 GATEWAY=192.168.1.1
Fichero ifcfg-eth0:0 DEVICE=eth0:0 ONBOOT=yes BOOTPROTO=static IPADDR=191.168.1.11 NETMASK=255.255.255.0 GATEWAY=192.168.1.1
Fichero ifcfg-eth0:1 DEVICE=eth0:1 ONBOOT=yes BOOTPROTO=static IPADDR=191.168.1.12 NETMASK=255.255.255.0 GATEWAY=192.168.1.1
Fichero ifcfg-eth1 DEVICE=eth1 ONBOOT=yes BOOTPROTO=static IPADDR=191.168.1.20 NETMASK=255.255.255.0 GATEWAY=192.168.1.1
0 comentarios