ubuntu server 12.04中设置静态IP

1、简介

    有时需要静态设置IP地址,在ubuntu server 12.04中设置方法如下:

     1) sudo vim /etc/network/interfaces

     2)然后输入以下内容

     auto lo
     iface lo inet loopback
 
     # The primary network interface
     auto eth0
     iface eth0 inet static
     address 222.24.24.165
     netmask 255.255.255.0
     broadcast 222.24.24.255
     gateway 222.24.24.1
     dns-nameservers 202.117.128.2 

     3)重启网络

     /etc/init.d/networking restart

你可能感兴趣的:(Linux学习)