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

Debian下配置网络的方法

时间:2014-06-28 15:30:31      阅读:258      评论:0      收藏:0      [点我收藏+]

标签:blog   strong   文件   art   name   c   

1.网络配置

配置网卡
修改 /etc/network/interfaces 添加如下

# #号后面是备注,不要添加哦!

auto eth0 #开机自动激活
iface eth0 inte static #静态IP
address 192.168.0.56 #本机IP
netmask 255.255.255.0 #子网掩码
gateway 192.168.0.254 #路由网关

#因为我是通过路由上网的,所以配置为静态IP和网关

如果是用DHCP自动获取,请在配置文件里添加如下:

iface eth0 inet dhcp

设置DNS

echo "nameserver 202.96.128.86" >> /etc/resolv.conf
#请设置为你当地的DNS

到这里配置好以后,重启一下网卡。

/etc/init.d/network restart

 

Debian下配置网络的方法,布布扣,bubuko.com

Debian下配置网络的方法

标签:blog   strong   文件   art   name   c   

原文地址:http://www.cnblogs.com/lizunicon/p/3798122.html

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