日期:2014-05-16  浏览次数:20535 次

linux静态IP设置

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

系统默认使用的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

?