vim /etc/network/interfaces 最后添加:

  1. ######静态IP配置#######    
  2. auto eth0    
  3. iface eth0 inet static                 #表示静态IP
  4. address 192.168.3.250                  #IP地址
  5. netmask 255.255.255.0                  #子网掩码    
  6. gateway 192.168.3.1                    #网关    
  7. dns-nameservers 114.114.114.114 114.114.115.115        #dns服务器

最后一行的DNS设置,当然可以用另一种方法:

vim /etc/resolv.conf 最后添加:

nameserver 114.114.114.114

nameserver 114.114.115.115

 

但ubuntu有时重启后resolve.conf会被还原,所以建议用前一种