Você terá que configurá-lo no arquivo / etc / network / interfaces
O formato é assim para um IP estático:
auto eth0
iface eth0 inet static
address 10.10.0.4
netmask 255.0.0.0
gateway 10.10.0.1
broadcast 10.255.255.255
network 10.0.0.0
dns-nameservers 8.8.8.8 8.8.4.4
dns-search domain-search.com
Se você quiser o dhcp:
auto eth0
iface eth0 inet dhcp
Depois disso, salve o arquivo e reinicie sua rede: /etc/init.d/networking restart (acredito que esta é a maneira antiga de fazer isso, mas deve funcionar).