码迷,mamicode.com
首页 > 其他好文 > 详细

ubuntu server配置网络

时间:2014-09-15 09:51:48      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:使用   ar   strong   art   sp   on   c   ad   r   

我将virtualbox网络设置为桥接模式

=====================================

检查网络配置

$ ifconfig

配置DHCP客户端

$ sudo vi /etc/network/interfaces

加入 iface eth0 inet dhcp

配置静态IP地址

$ sudo vi /etc/network/interfaces

eth0配置如下:

auto eth0

address 192.168.0.88

netmask 255.255.255.0

gateway 192.168.0.1

让新配置生效

保存退出后,使用重启networking命令让新配置生效:

$ sudo /etc/init.d/networking restart

也可以重启网卡让新配置生效,优点是不影响其他网络接口:

$ sudo ifdown eth0

$ sudo ifup eth0

 

ubuntu server配置网络

标签:使用   ar   strong   art   sp   on   c   ad   r   

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

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