Ubuntu配置IP和DNS

Ubuntu配置IP和DNS

首先设置IP

sudo vim  / etc / network / interface

      将其内容删除 加上以下内容

       auto lo

       iface lo inet loopback

#使用网卡0
       auto eth0

#使用静态IP
       iface eth0 inet 
static

       address 
192.168 . 0.168

       netmask 
255.255 . 255.0

       network 
192.168 . 0.0

       broadcast 
192.168 . 0.255

       gateway 
192.168 . 0.1



保存 然后修改DNS

sudo vim  / etc / resolv.conf

       将内容修改为 nameserver 202.103.24.68

保存 重启网络连接

sudo  / etc / init.d / networking restart

 

你可能感兴趣的:(Ubuntu配置IP和DNS)