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

Debian 里设置 IP 地址、网关、DNS

时间:2015-07-05 08:24:23      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

1、设置IP地址、网关


cp /etc/network/interfaces /etc/network/interfaces.bak  # 备份原有配置文件


vi /etc/network/interfaces   # 编辑网网卡配置文件

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0                       # 开机自动连接网络
allow-hotplug eth0
iface eth0 inet static       # static表示使用固定ip,dhcp表述使用动态ip
address 192.168.21.166   # 设置ip地址
netmask 255.255.255.0   # 设置子网掩码
gateway 192.168.21.2     # 设置网关

按 ESC 键,然后输入 :eq 保存并退出。

 

下面的版本便于复制, 因为配置文件里最好不要有中文:

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
allow-hotplug eth0
iface eth0 inet static
address 192.168.21.166
netmask 255.255.255.0
gateway 192.168.21.1


2、设置dns


cp  /etc/resolv.conf /etc/resolv.conf.bak    # 备份原有dns配置文件


vi /etc/resolv.conf        # 编辑配置文件


nameserver 127.0.0.1
nameserver 8.8.8.8       # 设置首选dns
nameserver 8.8.4.4       # 设置备用dns

按 ESC 键,然后输入 :eq 保存并退出。

 

下面的版本便于复制, 因为配置文件里最好不要有中文:

nameserver 127.0.0.1
nameserver 8.8.8.8
nameserver 8.8.4.4


3、重启网络


service networking restart   # 重启网络


至此,IP地址、网关、DNS配置完成,现在系统已经可以上网了。

Debian 里设置 IP 地址、网关、DNS

标签:

原文地址:http://my.oschina.net/u/190634/blog/474664

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