Estou configurando o ubuntu server 11.10 para ir de dhcp para static e sempre que tento reiniciar meu gerenciador de rede, recebo o erro: comando executado:
sudo /etc/init.d/networking restart
saída:
*Running /etc/init.d/networking restart is depricated because it may not enable
again some interfaces
*Reconfiguring network interfaces...
/etc/network/interfaces:10: unknown method
ifdown: couldn't read interfaces file "/etc/network/interfaces"
/etc/network/interfaces:10: unknown method
ifup: couldn't read interfaces file "/etc/network/interfaces"
[fail]
Eu assumo que o ": 10:" significa a linha 10 no arquivo de interfaces, mas vou postar meu arquivo de interfaces aqui:
#This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
#The loopback interface
auto lo
iface lo inet loopback
#The primary network device
auto eth0
iface eth0 inet static
address 10.x.x.210
netmask 255.255.255.0
network 10.x.x.0
broadcast 10.x.x.255
gateway 10.x.x.1
Há algo de errado? Como resolvo esse erro? A linha
iface eth0 inet static
costumava ser
iface eth0 inet dhcp
Essa é a causa? Eu estou tentando configurar isso para executar um servidor de dns, servidor web, servidor de email e servidor de arquivos. Alguém pode ajudar?
NOTA: Eu já tentei remover o gerenciador de rede, mas ele não me permite.