Linux替代路由添加在Windows上


2

当我连接到我的Windows专用服务器并连接到vpn服务器时,我将从专用服务器断开连接,因为它的IP地址会改变。我找到了一种通过使用来克服这一点的方法

route add 80.237.246.185 192.168.0.1

其中80.237.246.185是我家用PC的IP,192.168.0.1是专用服务器上主网关的IP。

我想切换到Linux服务器,但我想确保我也可以在Linux上克服这个问题。什么相当于在Linux上添加80.237.246.185 192.168.0.1的路由?

Answers:


2

以下命令路由 80.237.246.185 通过网关 192.168.0.1

ip route add 80.237.246.185 via 192.168.0.1

一个等价的使用 route 命令:

route add 80.237.246.185 gw 192.168.0.1

您没有提到您正在使用的VPN软件。例如OpenVPN有一个 route 连接VPN时自动添加路由的选项( 255.255.255.255 完全匹配 80.237.246.185,另一种表示法是 80.237.246.185/32 ):

route 80.237.246.185 255.255.255.255 192.168.0.1

您可以在其手册页上找到有关这些命令的更多信息:

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.