Wi-Fi connections don’t work after latest updates (the laptop connect to the Wi-Fi but there is not internet access). Same issue with wired connections.
Ensure network services are running: Open a terminal and run sudo systemctl status NetworkManager
(for Wi-Fi) or sudo systemctl status dhcpd (for wired). If not running, start them with sudo systemctl start NetworkManager or sudo systemctl start dhcpd.
Renew IP Lease (DHCP):
Release and renew the DHCP lease for your network interface:
Wi-Fi: sudo dhclient -r wlp3s0 followed by sudo dhclient wlp3s0 (replace wlp3s0 with your interface name).
Wired: sudo ip link set enpXsY down (replace enpXsY with your interface name), then sudo ip link set enpXsY up followed by sudo dhcpcd enpXsY.
I can not believe it! The VPN application update blocked the internet connection by default without an active VPN. I have now disabled this settingMistery solved.
Thank you for everything! @vgaetera@hamrheadcorvette@barryascott
Yes, but in this case I couldn’t really expect that an update could change all the settings of the VPN application. However, I’m glad it was a triviality.