Manjaro Linux(Arch)의 StrongSwan IPsec VPN 느린 연결

Manjaro Linux(Arch)의 StrongSwan IPsec VPN 느린 연결

Manjaro Linux(arch)에서는 VPN(ipsec) 하에서 기업 리소스에 연결하는 속도가 거의 0으로 떨어졌지만 다른 구성을 시도하기 전까지는 모든 것이 괜찮았지만 아무런 도움이 되지 않았습니다. 동시에 VPN은 Android에서 잘 실행되며 이러한 문제가 없습니다.

ipsec.conf:

config setup
    # strictcrlpolicy=yes
    # uniqueids = no
 
conn NAME
    dpdaction=restart
    dpddelay=30
    dpdtimeout=90
    fragmentation=yes
    leftsourceip=%config
    keyexchange=ikev2
    eap_identity=***
    leftauth=eap-mschapv2
    rightauth=pubkey
    right=***
    rightsubnet=***
    auto=add

/etc/strongswan.conf:

charon {
    threads = 10240
    #load_modular = yes
    plugins {
        include strongswan.d/charon/*.conf
    }
}

include strongswan.d/*.conf

답변1

좋습니다. 이 솔루션은 MTU를 낮추는 데 도움이 되었으며 모든 것이 정상으로 돌아왔습니다.

https://bbs.archlinux.org/viewtopic.php?id=244606

문제를 발견했습니다! MTU와 관련이 있습니다.

sudo ip link set dev wlp3s0 mtu 1328

관련 정보