Ecco una breve guida che mostra come settare un IP statico su una distribuzione Ubuntu ed altri paramatri riconducibili alla scheda di rete:
sudo nano /etc/network/interfaces
Settare come di seguito:
auto lo eth0
iface lo inet loopback
iface eth0 inet static
address xxx.xxx.xxx.xxx(enter your ip here)
netmask xxx.xxx.xxx.xxx
gateway xxx.xxx.xxx.xxx(enter gateway ip here,usually the address of the router)
If you use "nano" editor, type Ctrl+x to save changes.
Per settare i DNS:
sudo nano /etc/resolv.conf
nameserver xxx.xxx.xxx.xxx(enter your dns server ip)
nameserver xxx.xxx.xxx.xxx(enter your alt dns server ip
Riavviamo il servizio:
sudo /etc/init.d/networking restart