首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 操作系统 > UNIXLINUX >

linux静态IP设立

2012-08-16 
linux静态IP设置今天发现服务器的一个磁盘满了,于是就上网找方法吧其它盘的空间移动一些过去,结果fdisk时

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 interfaceauto eth0#allow-hotplug eth0iface eth0 inet staticaddress 192.168.1.10netmask 255.255.255.0gateway 192.168.1.1bjcl:~# /etc/init.d/networking restartReconfiguring network interfaces...done. 

?DNS服务器设置

bjcl:~# vi /etc/resolv.confnameserver 192.168.1.10nameserver 202.106.46.151

?

热点排行