我的一台电脑无法上网。它显示已连接。我的另一台电脑也遇到了类似的问题,我使用以下命令修复了它:
ip route add default via defaultgatewayip
它给了我这样的信息:
RTNETLINK answers:file exists.
无法连接。我该怎么办?此消息是什么意思?
答案1
您已有此网关的默认路由
例子:
没有默认路由
% route Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface link-local * 255.255.0.0 U 1000 0 0 eth0 192.168.2.0 * 255.255.255.0 U 0 0 0 eth0
添加路线
% sudo ip route add default via 192.168.2.1 % route Kernel IP routing table Destination Gateway Genmask Flags Metric Ref Use Iface default fritz.box 0.0.0.0 UG 0 0 0 eth0 link-local * 255.255.0.0 U 1000 0 0 eth0 192.168.2.0 * 255.255.255.0 U 0 0 0 eth0
重新添加路线
% sudo ip route add default via 192.168.2.1 RTNETLINK answers: File exists
如您所见,这是您的错误消息。