无法从外部 ping 通 Linux VPN PPTP 服务器本地局域网上的其他机器

无法从外部 ping 通 Linux VPN PPTP 服务器本地局域网上的其他机器

首先,大家好,这是我第一次在这里提出要求,所以我希望有人能帮助我,请看以下网络图:

---------------------------------------------------------------                      
VPN Server              Webserver
(SuSE SLES11)              |
     |                      |               
     ------- VPN LAN -------- 
     |
   Router with Unique IP (With Port Forwarding rules set and VPN through enabled)    
     |
PPTP connection over Internet
     |
Workstation
(PC or Laptop with Windows)
---------------------------------------------------------------

因此,我们的想法是让工作站连接到 PPTP 服务器,然后能够访问 Web 服务器上的 Web 应用程序,现在我已经配置了 PPTP 服务器并且 VPN 可以正常工作,我可以从工作站毫无问题地连接到 SLES11 服务器,我可以 ping 它,一切正常,但是如果我尝试从工作站 ping Web 服务器,我就无法访问它,我在某个地方犯了一个错误,但我不知道在哪里,请注意,我不是网络专家,因此我非常感谢一些具体的指导。

以下是一些与 IP 相关的信息

---------------------------------------------------------------
*** SLES11 VPN Server has 2 Network cards:
-- eth0 (Internal Network)
IP:  192.168.210.5 
MASK: 255.55.255.0

-- eth1 (External Network)
IP: 192.168.1.105
MASK: 255.55.255.0

*** Webserver has 1 network card
-- eth0 (Internal Network)
IP:  192.168.210.221 
MASK: 255.55.255.0

*** Workstation
-- IP info once connection has been established to the VPN
PPP adapter Test VPN Connection:
   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : Test VPN Connection
   Physical Address. . . . . . . . . :
   DHCP Enabled. . . . . . . . . . . : No
   Autoconfiguration Enabled . . . . : Yes
   IPv4 Address. . . . . . . . . . . : 192.168.210.110(Preferred)
   Subnet Mask . . . . . . . . . . . : 255.255.255.255
   Default Gateway . . . . . . . . . : 0.0.0.0
   DNS Servers . . . . . . . . . . . : 189.209.208.181   (Defined as part of the PPTP Server options config script)
                                       189.209.127.244
   Primary WINS Server . . . . . . . : 192.168.210.220   (Defined as part of the PPTP Server options config script)
   NetBIOS over Tcpip. . . . . . . . : Enabled
---------------------------------------------------------------

我还在 IP 表中定义了以下内容:

-------------------------------------------------------------
iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE
iptables -A INPUT -i eth0 -p tcp --dport 1723 -j ACCEPT
iptables -A INPUT -i eth0 -p gre -j ACCEPT
-------------------------------------------------------------

如果您需要 PPTP 服务器脚本的任何信息,请告诉我,问题是我实际上可以连接到 VPN 服务器并访问其服务和所有内容,但之后我无法访问该 LAN 上的任何其他计算机。任何帮助都将不胜感激,在此先谢谢了

相关内容