Adicionar 2 ou mais IPs em uma placa de rede no Linux ips virtuais
Este artigo vai mostrar como configurar aliases de IP em uma unica placa de rede no linux.
Esse procedimeto pode ser feito utilizando o comando o ifconfig ou editando o arquivo /etc/network/interfaces.
Utilizando o ifconfig
Para adicionar um alias (segundo IP) em sua placa de rede utilize o comando abaixo:
# ifconfig eth0:1 192.168.0.2
O “:1”, identifica que o ip “192.168.0.2” é o primeiro IP adicional de sua placa de rede.
Editando o Arquivo /etc/network/interfaces
Editando esse arquivo sua maquina pode ser reiniciada e as configurações não são perdidas. Com o vi abra o arquivo iterfaces:
# vi /etc/network/interfaces
E adicione as linhas abaixo:
auto eth0
allow-hotplug eth0
iface eth0 inet static
address 172.16.0.1
netmask 255.0.0.0
allow-hotplug eth0
iface eth0 inet static
address 172.16.0.1
netmask 255.0.0.0
gateway 172.16.0.254
auto eth0:0
iface eth0:0 inet static
address 10.0.10.2
netmask 255.0.0.0
auto eth0:1
iface eth0:1 inet static
address 192.168.0.2
netmask 255.255.255.0
auto eth0:2
iface eth0:2 inet static
address 10.0.0.4
netmask 255.0.0.0
auto eth0:0
iface eth0:0 inet static
address 10.0.10.2
netmask 255.0.0.0
auto eth0:1
iface eth0:1 inet static
address 192.168.0.2
netmask 255.255.255.0
auto eth0:2
iface eth0:2 inet static
address 10.0.0.4
netmask 255.0.0.0
Reinicie o serviço de rede,salve e feche o arquivo.
Ou outro meio é inserir este comando no /etc/rc.local:
ifconfig eth0:1 192.168.0.2
# /etc/init.d/networking restart
Nenhum comentário:
Postar um comentário