Ubuntu 21.04 已连接 wifi 但无互联网

Ubuntu 21.04 已连接 wifi 但无互联网

我是 Linux 新手,我在 hp elitebook 8470p 上安装了 kubuntu 21.04,Intel Centrino Advanced N 6205 Wifi Card 但当我连接到我的 wifi 时,我无法访问互联网,而我的 wifi 可以很好地与其他设备(例如我的 Android 手机)配合使用。因此,我测试了连接是否正确,然后转到https://192.168.1.1 但我无法连接到路由器设置。我试图重新启动 NetworkManager 服务,重新连接到 wifi...等等。但它完全是随机的,有时有效,有时无效...有什么解决办法吗?

答案1

我的 ntb 上的情况非常相似,但根本原因不同。protonVPN 出了点问题,导致我的 ntb 无法连接到互联网,即使连接到 wifi。解决方案在这里找到。 20.04.2 LTS 网络问题 - 没有互联网 - 但网络状态显示已连接

protonvpn configure    (I ran this to see if any parts of the old version of ProtonVPN were still installed)
sudo pip3 uninstall protonvpn-cli   (this was the command to remove the old version - ran it just to ensure I had removed all parts)
sudo apt-get autoremove protnvpn   (this removed the new/desktop version)
rm -rf ~/.cache/protonvpn    (cleaned up desktop version removal)
rm -rf ~/.config/protonvpn    (cleaned up desktop version removal)
nmcli connection show --active
nmcli connection delete pvpn-killswitch
nmcli connection delete pvpn-ipv6leak-protection
nmcli connection delete pvpn-routed-killswitch
exit

答案2

最后,我解决了。你可以在这里找到答案 无线已连接,但没有互联网 或者直接执行此命令。 sudo tee /etc/modprobe.d/iwlwifi-opt.conf <<< "options iwlwifi 11n_disable=1" 然后重新启动。我认为这适用于任何英特尔适配器。如果这对您有帮助,请告诉我。

相关内容