HOW-TO:Keep static IP
From XBMC
This is quite easy:
- vi /etc/network/interfaces (After you "sudo su")
- Add your IP INFO as per your configuration:
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 10.0.0.10
netmask 255.255.255.0
gateway 10.0.0.1
NOTE
You can check your INTERFACE with "ifconfig". Mine is eth0 in this example.