您的位置:首页 > 运维架构 > Linux

debian linux静态IP设置。

2010-09-11 16:02 435 查看
今天发现服务器的一个磁盘满了,于是就上网找方法吧其它盘的空间移动一些过去,结果fdisk时误删了一个分区,导致数据丢失,还好没有什么重要的东西…于是只好重新安装系统了,本来还想尝试恢复回去呢,发现不是一点两点的只是要补充,于是当务之急只好先把新的系统安装上去,以后有机会再研究了~

debian系统默认使用的dhpc服务,如果做为服务器使用肯定是要手动配置一下静态IP。

静态IP设置:

bjcl:~# vi /etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# 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.1.10
netmask 255.255.255.0
gateway 192.168.1.1
bjcl:~# /etc/init.d/networking restart
Reconfiguring network interfaces...done.
DNS服务器设置:

bjcl:~# vi /etc/resolv.conf
nameserver 192.168.1.10
nameserver 202.106.46.151
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: