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

linux -- ubuntu修改IP地址

时间:2015-05-26 18:05:42      阅读:277      评论:0      收藏:0      [点我收藏+]

标签:

ubuntu系统

1、修改IP地址:sudo gedit /etc/network/interfaces

sudo vim  /etc/network/interfaces

添加以下内容:

auto eth0                                               //设置自动启动eth0接口
iface eth0 inet static                                     //配置静态IP
address 192.168.100.13                                 //IP地址
netmask  255.255.255.128                            // 子网掩码
gateway  192.168.100.1                                //网关

2、修改DNS

sudo  vim /etc/resolve.conf
nameserver  202.96.26.38         //当地dns服务器

3、重启网络,使配置生效

sudo /etc/init.d/networking restart

至此IP和DNS配置好了,可以通过浏览器等方式可以上网了,测试远程SSH可以正常连接。

linux -- ubuntu修改IP地址

标签:

原文地址:http://www.cnblogs.com/hf8051/p/4531008.html

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