配置linux网络时候,可以ping通局域网,ping外网时提示: connect: network is unreachable
这条命令就可以搞定:
route add default gw 192.168.1.1
后面那是你的网关。
现在 route 一下
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.1.0 * 255.255.255.0 U 0 0 0 eth0
default my.router 0.0.0.0 UG 0 0 0 eth0
之前如果没有添加 的话, 只有上面的第一条。 第二条是新加进去的。
如果还访问不了, 哪你的情况可能有点特殊哦。
这样重启以后 就不能 用了。
永久静态路由
编辑
vi /etc/sysconfig/network
方法:GATEWAY=gw-ip 或者 GATEWAY=gw-dev
如:GATEWAY=192.168.1.1