My ubuntu's Ethernet connection is disconnecting every 15 minutes and it again starts connecting when i restart. It's so irritating to restart every 15 mins. Is there any fix for this. Btw I'm using Ubuntu 22.04lts
Asked
Active
Viewed 4,138 times
1 Answers
0
You could try sudo lshw -C network | grep logical
to display the wired connection's logical name. Then, something like:
sudo ip link set [logical name of wired connection: enxxxxxxxxx] up sudo dhclient enxxxxxxxxx
I am not sure why 22.04 no longer reads /etc/network/interfaces where you can add in something like:
auto enxxxxxxxxx iface enxxxxxxxxx inet dhcp
It seemed to detect the wired connection in the docked state, but after auto-switching a few times to undocked (e.g., wireless only) my laptop decided to drop the wired connection icon in the taskbar, and "Network Settings" only shows VPN??

AlMo320
- 75
sudo lspci
andsudo lshw -c network
(2) the brand and model of your computer (3) any relevant details from/var/log/syslog
around the time that your network connection stops. With this, it may be possible to identify a problem and offer a solution – matigo May 11 '22 at 04:53