Pages

How to fix Wired Network interface “Device not managed” error in Debian or Kali Linux?

How to fix Wired Network interface “Device not managed” error in Debian or Kali Linux?

How to fix “Device not managed” error
As of Debian 6.0 “Squeeze”, (or in Kali Linux which is based on Debian) Network Manager does not manage any interface defined in/etc/network/interfaces by default.
Unmanaged devices means Network Manager doesn’t handle those network devices.
So this is what you see in GUI
How to fix Wired Network interface is Unmanaged error in Debian or Kali Linux - 1  - blackMORE Ops
 An ifconfig -a show you this:
 How to fix Wired Network interface is Unmanaged error in Debian or Kali Linux - 2  - blackMORE Ops
This occurs when two conditions are met:
The file /etc/network/interfaces contains anything about the interface, even:
allow-hotplug eth0
iface eth0 inet dhcp
And /etc/NetworkManager/NetworkManager.conf contains:

How to fix Wired Network interface is Unmanaged error in Debian or Kali Linux - 3  - blackMORE Ops
[main]
plugins=ifupdown,keyfile

[ifupdown]
managed=false
Screenshot below:
How to fix Wired Network interface is Unmanaged error in Debian or Kali Linux - 4  - blackMORE Ops
Enabling Interface Management
If you want Network Manager to handle interfaces that are enabled in /etc/network/interfaces:
Set managed=true in /etc/NetworkManager/NetworkManager.conf. So this file looks like:
[main]
plugins=ifupdown,keyfile

[ifupdown]
managed=true
How to fix Wired Network interface is Unmanaged error in Debian or Kali Linux - 15 - blackMORE Ops
Restart Network Manager
Issue the following command to restart network-manager.
service network-manager restart
How to fix Wired Network interface is Unmanaged error in Debian or Kali Linux - 6 - blackMORE Ops
Now Network Manager should come up with a connected interface. For wired, eth0 with DHCP will show you something like the following image:
How to fix Wired Network interface is Unmanaged error in Debian or Kali Linux - 8 - blackMORE Ops
Just to wrap it up, lets do another ifconifg -a from command line
How to fix Wired Network interface is Unmanaged error in Debian or Kali Linux - 7 - blackMORE Ops
Some explanations
“Auto Ethernet” and “Auto eth0”
Auto Ethernet means “Select an Ethernet interface automatically”
Auto eth0 means “autoconfigure the eth0 interface”.

No comments:

Post a Comment