Indexof

Lite v2.0Ubuntu › Fix Ethernet Not Working in Ubuntu 25.10 (2026 Guide) › Last update: About

Fix Ethernet Not Working in Ubuntu 25.10 (2026 Guide)

How to Fix Ethernet Not Working in Ubuntu 25.10

In the Ubuntu of advanced networking, the release of Ubuntu 25.10 has introduced significant updates to the kernel and the Netplan backend. While these updates improve speed, they can occasionally cause "Wired Connection Disconnected" or "Activation Failed" errors. If your Ethernet has stopped working after an upgrade or fresh install in 2026, this guide covers the most effective fixes for modern Linux hardware.

1. The Most Common Fix: Netplan & NetworkManager Conflict

In Ubuntu 25.10, the integration between Netplan and NetworkManager has become more strict. A common issue arises when legacy configuration files in /etc/netplan/ conflict with the new YAML-based backend. This often results in the network being disabled after every reboot.

  • The Symptom: Ethernet works if you toggle it manually in Settings, but vanishes after a restart.
  • The Fix:
    1. Open your netplan directory: ls /etc/netplan/
    2. Edit the 90-NM or 01-installer file: sudo nano /etc/netplan/01-netcfg.yaml
    3. Ensure the renderer is set correctly:
      network:
        version: 2
        renderer: NetworkManager
        ethernets:
          enp3s0:
            dhcp4: true
    4. Apply changes: sudo netplan apply

2. Kernel Regression: Switching to the OEM Kernel

Ubuntu 25.10 typically ships with Kernel 6.14 or 6.15. For some 2.5GbE adapters (especially Realtek RTL8125 or Intel I225/I226-V), the generic kernel may have a regression that causes the interface to "flap" or fail entirely under load. In 2026, the OEM Kernel is often the most stable path for newer motherboards.

  1. Install the OEM Kernel: sudo apt install linux-oem-24.04 (Note: The meta-package name remains consistent for stability).
  2. Reboot: Select the OEM kernel from the "Advanced options for Ubuntu" menu in GRUB.
  3. Check Status: Run ip link show to see if your Ethernet interface (e.g., enp4s0) is now "UP".

3. Fixing Realtek Driver Conflicts (r8169 vs r8125)

Many Ubuntu Categories support threads highlight a long-standing battle between the built-in r8169 driver and the proprietary r8125 driver. If Ubuntu is using the wrong one, your Ethernet will show as "Connecting..." indefinitely.

Driver Status Action Required Command
Module Missing Install Extra Modules sudo apt install linux-modules-extra-$(uname -r)
Wrong Driver Active Blacklist r8169 echo "blacklist r8169" | sudo tee /etc/modprobe.d/blacklist-realtek.conf
Interface Renamed Update Predictable Names sudo update-initramfs -u

4. Disabling Energy Efficient Ethernet (EEE)

Some modern routers in 2026 do not negotiate "Green Ethernet" standards correctly with Ubuntu 25.10. This causes the Ethernet port to power down or "sleep" even while a cable is plugged in.

  • The Fix: Use ethtool to force the port to stay awake.
  • Command: sudo apt install ethtool
  • Disable EEE: sudo ethtool --set-eee enp3s0 eee off (Replace enp3s0 with your actual interface name found via nmcli device).

Conclusion

Ethernet issues in Ubuntu 25.10 are rarely due to hardware failure. Most 2026 connectivity bugs are resolved by either cleaning up Netplan YAML files or installing the linux-modules-extra package to ensure your specific NIC driver is loaded. By following these steps, you can restore a stable, high-speed wired connection to your Ubuntu machine. If the problem persists, check sudo dmesg | grep -i eth to see if the kernel is reporting a "Link is Down" or "Transmit Queue Timed Out" error.

Keywords

Ubuntu 25.10 ethernet not working fix, wired connection disabled ubuntu 2026, netplan renderer networkmanager error, Realtek RTL8125 ubuntu driver 25.10, kernel 6.15 ethernet regression fix, ubuntu wired connection activation failed, linux-modules-extra ubuntu ethernet, Ubuntu Categories networking help.

Profile: Troubleshoot Ethernet connection issues in Ubuntu 25.10. Fix Netplan configuration errors, resolve Kernel 6.14/6.15 driver regressions, and repair Realtek r8169/r8125 conflicts. - Indexof

About

Troubleshoot Ethernet connection issues in Ubuntu 25.10. Fix Netplan configuration errors, resolve Kernel 6.14/6.15 driver regressions, and repair Realtek r8169/r8125 conflicts. #ubuntu #fixethernetnotworkinginubuntu2510


Edited by: Maliha Saha, Charlotte Harris & Gudmundur Gudmundsson

Close [x]
Loading special offers...

Suggestion