连接到 VPN 服务器会关闭 SSH 隧道

连接到 VPN 服务器会关闭 SSH 隧道

一旦我开始连接 VPN,我就会立即失去与 dedi 服务器的连接。我的目标是即使使用 dedi 服务器连接到外部 VPN 服务器,仍然能够通过 ssh 连接到 dedi 服务器。

家庭电脑 <---(SSH)---> 专用服务器 (openvpn 客户端) <---(VPN)--->互联网ETC。

我可以这样做,并且它可以在我的电脑上运行:

route add -host 4.5.6.7 gw 7.8.9.1
    #public IP Home-PC: 4.5.6.7
    #default gateway dedi-server: 7.8.9.1

但是我需要一些可以适用于到我的 dedi 服务器的每个 SSH/SFTP 连接的东西,比如端口 5577。

有没有简单的可能性?

信息:

root@1404-box ~ # netstat -rn
Kernel IP routing table
Destination     Gateway         Genmask         Flags   MSS Window  irtt Iface
0.0.0.0         7.8.9.1         0.0.0.0         UG        0 0          0 eth0
7.8.9.0         7.8.9.1         255.255.255.192 UG        0 0          0 eth0
7.8.9.0         0.0.0.0         255.255.255.192 U         0 0          0 eth0

    root@1404-box ~ # ifconfig
eth0      Link encap:Ethernet  HWaddr xxxxxxxxxxxxxxxxxxxxx
          inet addr:7.8.9.7  Bcast:7.8.9.63  Mask:255.255.255.192
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:1154 errors:0 dropped:0 overruns:0 frame:0
          TX packets:1221 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:115376 (115.3 KB)  TX bytes:170034 (170.0 KB)
          Interrupt:16 Memory:f9fe0000-fa000000

lo        Link encap:Local Loopback
          inet addr:127.0.0.1  Mask:255.0.0.0
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:4 errors:0 dropped:0 overruns:0 frame:0
          TX packets:4 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0
          RX bytes:368 (368.0 B)  TX bytes:368 (368.0 B)

相关内容