在我的电脑上,我有2个连接 - 3G和LAN。
在连接3G之前,路由表将如下所示:
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
default 192.168.0.1 0.0.0.0 UG 100 0 0 eth0
192.168.0.0 * 255.255.255.0 U 0 0 0 eth0
3G拨号后,路由表如下所示:
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
default 10.64.64.64 0.0.0.0 UG 0 0 0 ppp0
10.64.64.64 * 255.255.255.255 UH 0 0 0 ppp0
192.168.0.0 * 255.255.255.0 U 0 0 0 eth0
断开3G后,路由表将如下所示:
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.0.0 * 255.255.255.0 U 0 0 0 eth0
由于默认路由在断开3G后被禁用,因此即使LAN处于活动状态,系统也无法连接到服务器。
有没有办法在断开3G后修改路由表?
提前致谢
答案 0 :(得分:4)
%sudo route add default gw 192.168.0.1
如果路线命令不可用,请尝试
%sudo ip route add default via 192.168.0.1