Config the Network in Linux

####### The local networking ########

auto lo
iface lo inet loopback

#####################################

####### The DHCP networking ########

auto eth0
    iface eth0 inet dhcp

#####################################


###### The Static networking ########
# auto eth0
# iface eth0 inet static
# address 172.17.151.54
# netmask 255.255.255.0
# gateway 172.17.151.254
#####################################


你可能感兴趣的:(Config the Network in Linux)