1. Configure o primeiro endereço IP:
[root@Linux root]#cd /etc/sysconfig/network-scripts
[scripts de rede root@Linux]#vi ifcfg-eth0
DISPOSITIVO=eth0
BOOTPROTO=estático
BROADCAST=192.168.80.255 //*endereço de transmissão*//
IPADDR=192.168.80.189 //*Primeiro endereço IP*//
NETMASK=255.255.255.0 //*Máscara de rede*//
REDE=192.168.80.0 //*Segmento de rede*//
ONBOOT = sim
:wq //*Salvar e sair*//
2. Copie o primeiro arquivo de configuração de endereço IP para o segundo arquivo de configuração de endereço IP e modifique o endereço IP dentro:
[scripts de rede root@Linux]#cp ifcfg-eth0 ifcfg-eth1
[scripts de rede root@Linux]#vi ifcfg-eth1
DISPOSITIVO=eth0
BOOTPROTO=estático
BROADCAST=192.168.80.255 //*endereço de transmissão*//
IPADDR=192.168.80.199 //*Segundo endereço IP*//
NETMASK=255.255.255.0 //*Máscara de rede*//
REDE=192.168.80.0 //*Segmento de rede*//
ONBOOT = sim
:wq //*Salvar e sair*//
3. Reinicie a placa de rede:
[root@Linux network-scripts]#reinicialização da rede de serviço
ou:
[scripts de rede root@Linux]#ifdown eth0
[scripts de rede root@Linux]#ifup eth0
ou
[scripts de rede root@Linux]#ifconfig eth0 down
[scripts de rede root@Linux]#ifconfig eth0 up