Uma interface de alias não deve ter um gateway.
Eu quero configurar dois endereços IP no meu sistema para acesso através da LAN. Esta é a minha configuração no meu outro sistema.
A instalação da minha área de trabalho é executada com vários IPs adicionados por meio do Network Manager, por meio de LAN e Wi-Fi.
Na instalação do meu servidor, editei /etc/network/interfaces
para o seguinte:
auto eth0
auto eth0:1
# IP-1
iface eth0 inet static
address 172.16.35.35
network 172.16.34.1
netmask 255.255.254.0
broadcast 172.16.35.255
dns-nameservers 172.16.100.221 8.8.8.8
# IP-2
iface eth0:1 inet static
address 172.16.34.34
network 172.16.34.1
netmask 255.255.254.0
gateway 172.16.34.1
broadcast 172.16.35.255
Depois de reiniciar por /etc/init.d/networking restart
, recebo
Falha ao exibir eth0: 1
O que estou fazendo de errado?
Já faz muito tempo que eu publiquei essa pergunta. Embora eu nunca tenha conseguido configurar o servidor antigo com vários endereços, o seguinte é uma configuração de trabalho que estou usando em um servidor diferente atualmente.
auto eth0
iface eth0 inet static
address 172.16.100.125
netmask 255.255.255.0
network 172.16.100.0
broadcast 172.16.100.255
gateway 172.16.100.1
dns-nameservers 172.16.100.221 208.67.222.222
auto eth0:0
iface eth0:0 inet static
name Ethernet alias LAN card
address 172.16.100.123
netmask 255.255.255.0
network 172.16.100.0
broadcast 172.16.100.255
gateway 172.16.100.1
Eu sei que isso chega um pouco atrasado, mas meu palpite é que você pode fazer o seguinte:
edite /etc/network/interfaces
auto venet 0:0
iface venet 0:0 inet static
address XXX.XX.XXX.XXX
netmask 255.XXX.XXX.XXX
auto venet 0:1
iface venet 0:1 inet static
address XXX.XX.XXX.XX1
netmask 255.XXX.XXX.XXX
auto venet 0:2
iface venet 0:2 inet static
address XXX.XX.XXX.XX2
netmask 255.XXX.XXX.XXX
Tags internet networking server ip