Linux Network Settings
Check the state
# ifconfig –a
Activate/Deactivate Network Interface
# ifup eth0
# ifdown eth0
Hostname
# hostname
# uname -n
# vi /etc/hostname
Get an IP from the DHCP Server
# dhclient
Edit this file to setup a fix IP
#vi /etc/network/interfaces
auto eth0
iface eth0 inet static
address 192.168.0.25
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255
gateway 192.168.5.1
# /etc/init.d/networking restart
Edit this file to setup DNS
#vi /etc/resolv.conf
order hotsts, bind
domain mydomain.local
nameserver 192.168.0.10

