Arch Linux 上的 NordVPN 连接有限

Arch Linux 上的 NordVPN 连接有限

我在 Arch Linux 系统 (Manjaro KDE Plasma) 上使用 AUR 的 NordVPN-bin 软件包。连接等工作正常,但在连接到服务后,我总是收到通知:我的 WLAN/LAN 上的“连接受限”。这有时会导致我无法再访问互联网。然后我必须停用互联网连接并重新激活它。这有时有效,但有时我必须重新启动。

我已停用 NordVPN 的所有附加设置(Kill Switch、Cyber​​sec 等)。此外,我还停用了网络适配器的 IPv6,并删除了预安装的软件包“openvpn”。

一切都没有帮助,NordVPN 客户服务也无法帮助我,因为 Arch Linux 不受官方支持。

希望有人能在这里帮助我!

设置和状态:

NordVPN 的设置和状态

答案1

我和你有完全相同的设置,我在 Manjaro KDE 上使用 Nordvpn,有时会出现那个错误。

这是我用来修复它的脚本,如果连接显示“受限”或连接断开。我把这些函数放在我的.bashrc.zshrc

# Run 'nord-fix' if you have issues connecting
nord-fix(){
    clear
    timeout 10s nordvpn set killswitch disabled
    timeout 10s nordvpn set autoconnect disabled
    timeout 10s nordvpn disconnect
    timeout 10s nordvpn set autoconnect enabled 
    timeout 10s nordvpn set killswitch enabled
    sudo iptables -P INPUT ACCEPT
    sudo iptables -F INPUT
    sudo iptables -P OUTPUT ACCEPT
    sudo iptables -F OUTPUT
    sudo systemctl restart NetworkManager
    timeout 10s nordvpn connect us
}

# Run 'nord-update' if it's completely unusable.
# It re-installs the app and asks you to log back in.
nord-update(){
    clear
    sudo yay -R nordvpn -y
    sudo yay -S nordvpn -y
    
    # this command allows the system to access others on the network
    nordvpn whitelist add subnet 192.168.0.0/24

    nordvpn login
}

这是与 Arch Nordvpn 故障排除相关的 arch wiki
https://wiki.archlinux.org/title/NordVPN#Troubleshooting

相关内容