|
发表于 2010-1-29 22:13:40
|
显示全部楼层
http://wiki.debian.org/NetworkManager
Unmanaged devices means NetworkManager doesn't handle those devices. This occurs when two conditions are met:
1.
The file /etc/network/interfaces contains anything about the interface, even:
allow-hotplug eth0
iface eth0 inet dhcp
2.
And /etc/NetworkManager/nm-system-settings.conf contains:
[main]
plugins=ifupdown,keyfile
[ifupdown]
managed=false
To allow NetworkManager to manage wired interfaces, either:
*
Comment the relevant lines in /etc/network/interfaces to restore the behavior experienced in Lenny.
or
*
Set managed=true in nm-system-settings.conf if you want network-manager to handle interfaces that are declared in /etc/network/interfaces (you need to kill nm-system-settings)
Restart network-manager or X is not enough. It seems you must reboot your computer in order to apply your changes. |
|