我已经连接到公司的 VPN 连接,并且此连接没有互联网连接。
我需要连接到互联网。我可以定义路由以将外部流量连接到路由器主 IP 吗?可以吗?
我使用 GNU/Linux(Ubuntu)。
我尝试在 VPN 连接中标记“仅将此连接用于其网络上的资源”,但内部连接不起作用。
我的本地网络中的 IP 范围:192.168.1.2 (255.255.255.0) 我的 VPN 连接 (PPP) 中的 IP 范围:192.168.2.58 (255.255.255.255)
感谢您。
路线命令的输出
Destino Pasarela Genmask Indic Métric Ref Uso Interfaz
default * 0.0.0.0 U 0 0 0 ppp0
link-local * 255.255.0.0 U 1000 0 0 eth0
192.168.1.0 * 255.255.255.0 U 1 0 0 eth0
192.168.2.1 * 255.255.255.255 UH 0 0 0 ppp0
答案1
如果您连接到 VPN,则可以使用此命令设置到特殊主机的路由,例如:
route add -host 192.168.2.100 dev ppp0
使用此命令,您可以将默认网关设置为您的本地网关:
route add default gw 192.168.1.1 dev eth0
如果有任何其他默认网关,您可以先使用以下命令将其删除:
route del default gw