新闻  |   论坛  |   博客  |   在线研讨会
ubuntu设置静态IP
0750long | 2009-05-08 19:01:01    阅读:2443   发布文章

ubuntu设置静态IP

vim /etc/network/interfaces

将iface eth0 inet dhcp注释掉
加入:
iface eth0 inet static
address 192.168.12.225
netmask 255.255.255.0
gateway 192.168.12.254
退出后重新进入,设置静态IP完成

设置动态获取IP,只要相反的过程既可

从网上看到,别人这么说的:
Ubuntu的网络参数保存在文件/etc/network/interfaces中,默认设置使用dhcp,内容如下:

#Theprimarynetworkinterface
auto eth0
iface eth0 inet dhcp

设置静态ip的方法如下:
1)编辑/etc/network/interfaces
1.1)将dhcp一行屏蔽
#The primary network interface
auto eth0
#iface eth0 inet dhcp

1.2)添加和静态ip有关的参数
#The primary network interface
iface eth0 inet static
address 192.168.0.10
netmask 255.255.255.0
gateway 192.168.0.1

2)编辑/etc/resolv.conf,设置dns
nameserver 202.96.134.133
nameserver 202.106.0.20

3)执行下面两个命令,启用新设置
$sudo ifdown eth0
$sudo ifup eth0

*博客内容为网友个人发布,仅代表博主个人观点,如有侵权请联系工作人员删除。

参与讨论
登录后参与讨论
推荐文章
最近访客