分类: LINUX
2010-05-12 18:56:49
Ubuntu的网络配置信息是保存在 /etc/network/interfaces 文件中,使用Vim打开配置文件,默认是自动获取IP的配置.如下:
# The primary network interface
auto eth0
iface eth0 inet dhcp
下面我们将其设置成静态IP.
第一步:屏蔽掉自动获取IP的设置
iface eth0 inet dhcp将这一行屏蔽掉
修改之后的内容如下:
# The primary network interface
auto eth0
#iface eth0 inet dhcp
第二步:添加静态IP的信息
# The primary network interface
iface eth0 inet static
address 192.168.1.195
netmask 255.255.255.0
gateway 192.168.1.1
第三步:设置DNS
编辑 /etc/resolv.conf,设置dns
nameserver 192.168.1.210
重启网络:/etc/init.d/networking restart