|
wired network not managed in network-manager
Hello, I had the same problem: at my office I have both a wired and a wireless connection, but in fact only the wireless connection was in use. Running ifconfig indicated that I indeed received an IP for my wired connection via dhcp (and hence seem to have a connection), but the network manager applet stated that the wired device is unmanaged, and so did nm-tool (state wired: unmanaged) and investigatig networkd traffic it seems that only the wireless connection was functioning. Searching the web there was a phrase that network manager is only handling entries not in /etc/network/interfaces. Inspecting this file I found:
auto lo
iface lo inet loopback
iface eth0 inet dhcp
auto eth0
And indeed when I left out the last two lines, the network manager
is now handling the wired eth0 connection. Hopefully this works for you too.
|