Eu gostaria de editar /etc/network/interfaces
para ter o seguinte conteúdo:
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
address 127.0.0.1
netmask 255.0.0.0
auto eth0
iface eth0 inet static
address x.y.z.61
netmask 255.255.255.224
gateway x.y.z.33
Embora você possa precisar usar algo diferente de eth0
dependendo do seu sistema. Executar ifconfig
fornecerá uma lista de interfaces de rede. Então você editaria /etc/resolv.conf
para suas entradas de DNS:
nameserver a.b.c.245
nameserver a.b.c.30
E finalmente, emita o comando
sudo /etc/init.d/networking restart