手动添加路由至VPN

手动添加路由至VPN

各位服务器爱好者们,大家好,

我有一个 VPN(在 Ubuntu 10.04 上运行的 pptpd),我正在尝试与客户端(Win7)连接。

我可以成功连接到VPN。

一旦连接到 VPN,我就可以 ping 服务器上的两个接口(1.2.3.4 是面向互联网的公共 IP,也是用于连接 VPN 服务器的地址(eth0)和 192.168.0.1(ppp0))。

我无法从 Win7 客户端 ping 任何其他地址。服务器端已启用 IP 转发。

我无法通过 Windows 路由命令添加路由。

服务器:eth0 - 1.2.3.4(面向互联网),ppp0 - 192.168.0.1

客户端:VMware Win7 ppp - 192.168.1.1

ipconfigWin7客户端上的结果:

Default Gateway: 0.0.0.0
IP: 192.168.1.1
Subnet: 255.255.255.255

我努力了

route ADD 192.168.0.1 255.255.255.255 192.168.0.1
route ADD 1.2.3.4 255.255.255.255 192.168.0.1
route ADD 192.168.0.1 255.255.255.255 192.168.1.1 METRIC 266 

全部失败,告诉我

Incorrect argument 192.168.1.1

或者

Incorrect argument 192.168.0.1

表格中还有 2 个与这些 IP 相对应的指标,显示必须route print使用哪一个?

如果有人能解释如何添加这条特定路线,我将不胜感激。

添加路由时,是否必须始终指定度量和/或接口?添加基于 VPN 的路由有什么独特之处吗?

感谢您的阅读。

答案1

Default Gateway: 0.0.0.0

您的默认网关错误,请先尝试修复它。 0.0.0.0是任意地址,而不是主机的有效 IP。基本上,您的网络配置为将流量推送到任意地址,而不是应该将流量发送到的地址。

Subnet: 255.255.255.255

这也是错误的。这是单个主机的子网掩码,这可能不是您想要的。

最后,您的命令语法route add完全是错误的。

您应该使用:route add [destination IP] MASK [destination subnet mask] [IP of gateway used to reach destination IP],但这需要知道这些术语的含义,以及了解您需要通过路由连接哪些网络或主机,但说实话,您似乎并不知道。正如我在评论中所说,您似乎需要联系您的帮助台或网络管理员来帮助您解决此问题。

route /?

Manipulates network routing tables.

ROUTE [-f] [-p] [-4|-6] command [destination]
                  [MASK netmask]  [gateway] [METRIC metric]  [IF interface]

  -f           Clears the routing tables of all gateway entries.  If this is
               used in conjunction with one of the commands, the tables are
               cleared prior to running the command.

  -p           When used with the ADD command, makes a route persistent across
               boots of the system. By default, routes are not preserved
               when the system is restarted. Ignored for all other commands,
               which always affect the appropriate persistent routes. This
               option is not supported in Windows 95.

  -4           Force using IPv4.

  -6           Force using IPv6.

  command      One of these:
                 PRINT     Prints  a route
                 ADD       Adds    a route
                 DELETE    Deletes a route
                 CHANGE    Modifies an existing route
  destination  Specifies the host.
  MASK         Specifies that the next parameter is the 'netmask' value.
  netmask      Specifies a subnet mask value for this route entry.
               If not specified, it defaults to 255.255.255.255.
  gateway      Specifies gateway.
  interface    the interface number for the specified route.
  METRIC       specifies the metric, ie. cost for the destination.

All symbolic names used for destination are looked up in the network database
file NETWORKS. The symbolic names for gateway are looked up in the host name
database file HOSTS.

If the command is PRINT or DELETE. Destination or gateway can be a wildcard,
(wildcard is specified as a star '*'), or the gateway argument may be omitted.

If Dest contains a * or ?, it is treated as a shell pattern, and only
matching destination routes are printed. The '*' matches any string,
and '?' matches any one char. Examples: 157.*.1, 157.*, 127.*, *224*.

Pattern match is only allowed in PRINT command.
Diagnostic Notes:
    Invalid MASK generates an error, that is when (DEST & MASK) != DEST.
    Example> route ADD 157.0.0.0 MASK 155.0.0.0 157.55.80.1 IF 1
             The route addition failed: The specified mask parameter is invalid.
 (Destination & Mask) != Destination.

答案2

在第一个例子中,您告诉 Windows 通过转到 192.168.0.1 来到达 192.168.0.1...这是 Windows 看不到的 IP。

在第三个例子中,您告诉 Windows 通过访问其自身来到达 192.168.0.1。

我还注意到您没有默认网关...因此 Windows 只知道自己(192.168.1.1),特别是因为您的子网是 255.255.255.255。

相关内容