码迷,mamicode.com
首页 > 系统相关 > 详细

ubuntu12.04配置静态IP及设置DNS

时间:2014-10-27 10:33:46      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   color   io   ar   sp   文件   

静态IP配置方法:
编辑/etc/network/interfaces,删掉内容,并输入以下几行(假设你的网卡是eth0)
sudo gedit /etc/network/interfaces
auto eth0
iface eth0 inet static   //指定为static
address 192.168.1.103   //IP地址
gateway 192.168.1.1   //网关
netmask 255.255.255.0   //子网掩码
network 192.168.1.0   //这个是网络?
broadcast 192.168.1.255   //广播
然后重启网络设备
sudo /etc/init.d/networking restart

设置DNS:
Ubuntu设置DNS,只要将DNS地址写入/ect/resolv.conf文件即可,但在12.04 desktop版中,重启系统之后,静态IP设置生效,但无法链接外网,/etc/resole.conf文件的DNS地址也覆盖掉了。
解决办法,在/etc/resolvconf/resolv.conf.d/目录下创建tail文件,写入
nameserver 202.96.134.133
nameserver 202.96.128.68
然后重启,DNS生效。

转自:
http://blog.chinaunix.net/xmlrpc.php?r=blog/article&uid=24708340&id=3218349
 

ubuntu12.04配置静态IP及设置DNS

标签:des   style   blog   http   color   io   ar   sp   文件   

原文地址:http://www.cnblogs.com/shiningrise/p/4053453.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!