OpenVPN 이상한 동작

OpenVPN 이상한 동작

개인 VPN에 사용하는 KVM VPS가 있습니다. 서버는 OpenVPN 2.4.0 및 ipfw 커널 nat가 포함된 FreeBSD 11.0-RELEASE-p1에서 실행됩니다. 나와 VPS 간의 직접 연결 속도는 약 10-12Mbps입니다. 터널을 통과하는 속도는 약 1.6-5Mbps입니다(저에게는 충분합니다).

이 터널은 인터넷 액세스에 사용됩니다. 터널을 통해 서버에서 파일을 다운로드하면 모든 것이 잘 작동합니다. 그런데 일부 웹 페이지를 열려고 하면 속도가 2-7kbps입니다!와는 별개로유튜브! YouTube는 항상 빠르게 실행되며 끊김 없이 1080p로 동영상을 표시합니다.

tcp/udp, cipers, sndbuf/rcvbuf, tun-mtu/mssfix, comp-lzo/compress lz4-v2/no 압축, 다른 TAP 드라이버, Windows 7 64/Ubuntu의 다양한 조합을 시도했지만 성공하지 못했습니다.

OpenVPN 서버 구성:

port 3344
proto udp
dev tun
ca ca.crt
cert gate.crt
key gate.key
dh dh.pem
server 10.80.50.0 255.255.255.240
ifconfig-pool-persist ipp.txt
client-config-dir ccd
route 10.80.50.0 255.255.255.240
push "redirect-gateway def1 bypass-dhcp"
push "dhcp-option DNS 10.80.50.1"
keepalive 10 120
tls-authta.key 0
cipher AES-256-CBC
max-clients 3
user nobody
group nobody
persist-key
persist-tun
status /var/log/openvpn-status.log
log         /var/log/openvpn.log
verb 6
askpass keyp
auth-nocache
sndbuf 393216
rcvbuf 393216
push "sndbuf 393216"
push "rcvbuf 393216"

클라이언트 구성

dev tun
proto udp
remote remove_vps 3344
client
resolv-retry infinite
ca ca.crt
cert client1.crt
key client1.key
tls-auth ta.key 1
remote-cert-tls server
persist-key
persist-tun
verb 3
cipher AES-256-CBC
askpass keyp
auth-nocache

국제 PFW:

allow ip from any to any via lo0
nat 1 ip from 10.80.50.6 to any out via vtnet0
nat 1 ip from any to $wanip in via vtnet0
allow ip from any to any via tun0
allow ip from any to any
deny log logamount 5 ip from any to any
deny ip from any to any

누군가 문제가 어디에 있는지 알아내도록 도와줄 수 있나요?

관련 정보