ubuntu设置静态IP的实现方法

Ubuntu(友帮拓、优般图、乌班图)是一个以桌面应用为主的开源GNU/Linux操作系统,Ubuntu 是基于Debian GNU/Linux,支持x86、amd64(即x64)和ppc架构,由全球化的专业开发团队(Canonical Ltd)打造的。

Ubuntu的开发者与Debian和GNOME开源社区合作密切,其各个正式版本的桌面环境均采用GNOME的最新版本,通常会紧随GNOME项目的进展而及时更新(同时,也提供基于KDE、XFCE等桌面环境的派生版本)。GNOME是一套运行在操作系统上,提供图形桌面环境的计算机软件。Ubuntu的每个新版本均会包含当时最新的GNOME桌面环境,通常在GNOME发布新版本后一个月内发布。

Ubuntu所有系统相关的任务均需使用Sudo指令是它的一大特色,这种方式比传统的以系统管理员账号进行管理工作的方式更为安全,此为Linux、Unix系统的基本思维之一。Windows 在较新的版本内也引入了类似的 UAC 机制,但用户数量不多。它与其它基于Debian的Linux发布版,如MEPIS、Xandros、Linspire、Progeny和Libranet等相比,Ubuntu更接近Debian的开发理念,它主要使用自由、开源的软件,而其它发布版往往会附带很多闭源的软件。

本文将详细介绍ubuntu静态IP的设定实现方法

Ubuntu 设定静态IP:

切换到root用户,然后进入/etc/network目录。备份interfaces文件(备份文件是一个好习惯)

下面编辑interfaces文件,添加如下语句:

1 # Assgin static IP by eric on 26-SEP-2012
2 iface eth0 inet static
3 address 192.168.196.135 #change to your static IP
4 netmask 255.255.255.0 #change to your netmask
5 gateway 192.168.196.255 #change to your getway
6 #We must specify dns-nameserver here
7 #in order to get internet access from host
8 dns-nameservers 192.168.196.255
9 auto eth0

编辑完成后的interfaces文件内容如下:

root@ubuntu:/etc/network# cat interfaces
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo
iface lo inet loopback

#add by andy at 2014-08-14
# Assgin static IP by eric on 26-SEP-2012
iface eth0 inet static
address 192.168.196.135 #change to your static IP
netmask 255.255.255.0 #change to your netmask
gateway 192.168.196.255 #change to your getway
#We must specify dns-nameserver here
#in order to get internet access from host
dns-nameservers 192.168.196.255
auto eth0

下一步就是重启网卡:

root@ubuntu:/etc/network# /etc/init.d/networking restart
重启完成后,测试一下:

root@ubuntu:/etc/network# ping www.baidu.com.cn
PING www.a.shifen.com (220.181.112.244) 56(84) bytes of data.
64 bytes from 220.181.112.244: icmp_req=1 ttl=128 time=6.12 ms
64 bytes from 220.181.112.244: icmp_req=2 ttl=128 time=14.7 ms

OK。静态IP设置完成。

赞(0)
声明:本网站发布的内容(图片、视频和文字)以原创、转载和分享网络内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-62778877-8306;邮箱:fanjiao@west.cn。本站原创内容未经允许不得转载,或转载时需注明出处:西部数码知识库 » ubuntu设置静态IP的实现方法

登录

找回密码

注册