device# ifconfig ... eth0 Link encap:Ethernet HWaddr 00:0a:21:ff:45:2a inet addr:10.10.10.0 Bcast:10.10.10.255 Mask:255.255.255.0 ...
device# route -n Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface 0.0.0.0 10.10.10.2 0.0.0.0 UG 100 0 0 eth0 172.16.77.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
device# sudo nano /etc/network/interfaces
... auto eth0 iface eth0 inet dhcp ...
... auto eth0 iface eth0 inet static address 10.0.0.100 netmask 255.255.255.0 gateway 10.0.0.0 ...
device# sudo nano /etc/resolv.conf
device# sudo /etc/init.d/networking restart
device# sudo apt-get remove dhcp-client
device# ping www.extremenetworks.com
device# sudo ifup eth0