您的位置:首页 > 其它

Ubuntu network is unreachable

2010-07-16 17:38 375 查看
每次在装ubuntu的时候,如果连上网络,到设置apt源的那步,总要等半天, 所以我就拔掉网线,选择为暂不配置

装完之后要第一件事要配置ip,在配置好 /etc/network/interfaces 之后,也配置了 /etc/resolv.conf

内网的机器都可以ping通 但是ping 外网的就是不行·~一直提示 network is unreachable

在增加一个缺省的网关后 所有问题ok

我初学linux 希望各位高手多多指教

我的配置如下:

配置静态IP地址
sudo vi /etc/network/interfaces

内容如下:
auto lo
iface lo inet loopback

auto eth0

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
geteway 192.168.1.1

配置DNS
vi /etc/resolv.conf
增加内容:
nameserver 192.168.1.1
naserver 202.106.0.20

配置网关
route add default gw 192.168.1.1

重新启动网络配置
/etc/init.d/networking restart
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: