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

ubuntu设置静态ip

时间:2014-11-04 16:41:04      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:style   color   sp   on   bs   ad   as   res   nbsp   

 

1. 配置静态ip地址

$sudo vi /etc/network/interfaces

原有内容只有如下两行:

auto lo

iface lo inet loopback

向末尾追加以下内容:

auto eth0

iface eth0 inet static

address 192.168.0.33

gateway 192.168.0.1

netmask 255.255.255.0

network 192.168.0.0

broadcast 192.168.0.255

然后保存退出;

2. 手动配置 dns

$sudo vi /etc/resolv.conf

想末尾追加如下内容:

nameserver 192.168.0.10

然后保存退出。

3. 重启 network 使修改生效

$sudo ipdown eth0

$sudo ipup eth0

$ifconfig

 

ubuntu设置静态ip

标签:style   color   sp   on   bs   ad   as   res   nbsp   

原文地址:http://www.cnblogs.com/muzhongjiang/p/4073762.html

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