版本:ubuntu10.04 以前使用的是動態分配IP,網絡忽然就不行了,改成靜態分配IP。ubuntu
配置靜態IP地址
sudo vi /etc/network/interfaces網絡
內容以下:
auto lo
iface lo inet loopbackoop
auto eth1
#iface eth1 inet dhcp 動態分配
iface eth1 inet static
address 192.168.1.8
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1rest
配置DNS
vi /etc/resolv.conf
增長內容:
nameserver 192.168.1.1
naserver 202.106.0.20server
配置網關
route add default gw 192.168.1.1it
從新啓動網絡配置
/etc/init.d/networking restart 重啓配置ast