知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

Ubuntu Server配置网络

发布时间:2014-09-05 14:16:49作者:知识屋

Ubuntu Server配置网络
 
Ubuntu Server的网络参数保存在文件 /etc/network/interfaces中,默认设置使用dhcp,内容如下: 
# The primary network interface 
auto eth0 
iface eth0 inet dhcp 
设置静态ip的方法如下: 
1)编辑vi /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)编辑vi /etc/resolv.conf,设置dns 
nameserver 202.96.134.133 
nameserver 202.106.0.20 
3)执行下面两个命令,启用新设置 
$sudo ifdown eth0 
$sudo ifup eth0 
若还有没有配置成功,则需重启下网络服务 
/etc/init.d/networking restart
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜