失败后恢复网络并回滚 VPN 设置

失败后恢复网络并回滚 VPN 设置

有一次,我尝试在家庭服务器上设置 VPN,但无法使其工作。因此,我最终决定回滚设置(卸载 openvpn),因为我并不真正需要它,但现在服务器无法访问互联网(尽管可以从本地网络访问并可以看到它)。无法访问互联网的意思是,我无法 ping ip 或地址,也无法使用 nslookup 等。

我问了一位同事,他猜测问题出在路由表上。故障系统上的路由输出如下:

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

同一网络上另一台正常运行的机器的输出是:

Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
default         192.168.0.1     0.0.0.0         UG    0      0        0 eth0
link-local      *               255.255.0.0     U     1000   0        0 eth0
192.168.0.0     *               255.255.255.0   U     1      0        0 eth0

如果路由表不是问题所在,那么此 pastebin 中会输出几个可能有助于故障排除的网络命令:http://paste.ubuntu.com/6071536//etc/network/interfaces 是http://paste.ubuntu.com/6071566/(其中有一些静态 IP 内容,我在排除故障时已将其禁用)

你们有人能帮我修复系统吗?我很乐意提供任何进一步需要的信息。

答案1

似乎在设置网络表后,有其他东西正在重新配置您的系统。您route在设置 OpenVPN 时(/etc/network/interfaces或其他/etc/network/脚本中)是否有额外的调用?

相关内容