如何调试缓慢的 VPN 传输速度

如何调试缓慢的 VPN 传输速度

我有以下网络设置,两台机器位于不同的城市,不同的 ISP 上。

+----------------------------+           +------------------------------+
| HOME                       |           | REMOTE                       |
| ISP: 50mbit up/down        | +-------> | ISP: 200mbit down/20mbit up  |
| SCP: 50mbit up/20mbit down |           | SCP: 50mbit down/20mbit up   |
| VPN: 33mbit up/6mbit down  | <-------+ | VPN: 33mbit down/6mbit up    |
|                            |           |                              |
+----------------------------+           +------------------------------+

在家中,我的上传和下载速度为 50mbit(由 speedtest.net 测量),而在远程,我的下载速度为 200 mbit,上传速度为 20 mbit。家中使用的是 Win10 VPN 客户端,而远程使用的是pptpdUbuntu Server 16.04。pptpd使用的是 MS-CHAPv2 128 位加密,但 CPU 没有显示任何显著负载。

  • 上传数据时互联网从家到远程我使用 SCP 获得完整的 50mbit。
  • 下载数据时互联网从远程到家我使用 SCP 获得了完整的 20mbit。

  • 上传数据时VPN从家到远程我使用 SCP 获得 33 mbit。

  • 下载时下载数据超过VPN从远程到家我使用 SCP 只能获得 6mbit。

最初我注意到了 Samba 的问题,但是当我通过 VPN 切换到 SCP 时,速度仍然只有 6mbit,所以看来协议没有发挥作用。

网络设置信息 REMOTE 位于千兆 LAN 上。HOME 位于 WiFi 2.4 GHz 802.11n 上。

远程 ifconfig

eno1      Link encap:Ethernet  HWaddr **redacted**
          inet addr:192.168.0.253  Bcast:192.168.0.255  Mask:255.255.255.0
          inet6 addr: fe80::feaa:14ff:fe27:4fe4/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:130858099 errors:0 dropped:6196 overruns:0 frame:0
          TX packets:87190652 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:152330084160 (152.3 GB)  TX bytes:69709394766 (69.7 GB)
          Interrupt:20 Memory:f7e00000-f7e20000

lo        Link encap:Local Loopback
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:149614 errors:0 dropped:0 overruns:0 frame:0
          TX packets:149614 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1
          RX bytes:151856141 (151.8 MB)  TX bytes:151856141 (151.8 MB)

ppp0      Link encap:Point-to-Point Protocol
          inet addr:192.168.0.100  P-t-P:192.168.0.101  Mask:255.255.255.255
          UP POINTOPOINT RUNNING NOARP MULTICAST  MTU:1396  Metric:1
          RX packets:458 errors:0 dropped:0 overruns:0 frame:0
          TX packets:297 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:3
          RX bytes:49460 (49.4 KB)  TX bytes:146281 (146.2 KB)

ipconfig /all 在主页上

PPP adapter VPN:

   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : VPN
   Physical Address. . . . . . . . . :
   DHCP Enabled. . . . . . . . . . . : No
   Autoconfiguration Enabled . . . . : Yes
   IPv4 Address. . . . . . . . . . . : 192.168.0.101(Preferred)
   Subnet Mask . . . . . . . . . . . : 255.255.255.255
   Default Gateway . . . . . . . . . :
   DNS Servers . . . . . . . . . . . : 192.168.0.253
                                       8.8.8.8
   NetBIOS over Tcpip. . . . . . . . : Enabled

Wireless LAN adapter Wi-Fi:

   Connection-specific DNS Suffix  . :
   Description . . . . . . . . . . . : Intel(R) Dual Band Wireless-N 7260
   Physical Address. . . . . . . . . : **redacted**
   DHCP Enabled. . . . . . . . . . . : Yes
   Autoconfiguration Enabled . . . . : Yes
   IPv4 Address. . . . . . . . . . . : 192.168.1.16(Preferred)
   Subnet Mask . . . . . . . . . . . : 255.255.255.0
   Lease Obtained. . . . . . . . . . : 14. ledna 2017 11:44:39
   Lease Expires . . . . . . . . . . : 16. ledna 2017 12:42:59
   Default Gateway . . . . . . . . . : 192.168.1.1
   DHCP Server . . . . . . . . . . . : 192.168.1.1
   DNS Servers . . . . . . . . . . . : 208.67.222.222
                                       192.168.1.1
   NetBIOS over Tcpip. . . . . . . . : Enabled

总结:在 PPTP VPN 上,远程机器仅使用可用上传带宽的三分之一。我想知道为什么。

相关内容