Disabling networkmanager for a specific interface

11

0

I'd like to do some experimentation with hostap without disabling my primary wireless interface. How do I tell networkmanager to keep its hands off a specific interface or interfaces while allowing it to continue managing all other interfaces normally? I'm using Ubuntu 9.04.

(Wasn't sure if this should go on superuser or serverfault, as networkmanager isn't much of a 'server' tool - if it belongs on serverfault please feel free to move it)

Edit: I've tried adding this to /etc/network/interfaces:

allow-hotplug wlan2
iface wlan2 inet static
        address 192.168.49.1
        netmask 255.255.255.0

But this has no apparent effect, even after restarting NetworkManager.

Here's my /etc/NetworkManager/nm-system-settings.conf:

[main]
plugins=ifupdown,keyfile

[ifupdown]
managed=false

Edit[2]: Looks like I needed to restart nm-system-settings, then NetworkManager.

bdonlan

Posted 2009-07-21T02:03:38.913

Reputation: 1 463

You don't have to put [Ubuntu] in the title. You could've made it 'Disabling network manager for a specific interface in Ubuntu', not to mention it's already tagged as 'ubuntu'. Just letting you know for future questions. – Jorge Israel Peña – 2009-07-21T03:20:34.543

Answers

11

To quote /usr/share/doc/network-manager/README.Debian:

Configuration of wireless and ethernet interfaces ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Only devices that are not listed in /etc/network/interfaces or which have been configured "auto" and "dhcp" (with no other options) are managed by NM.

This way you can setup a custom (static) configuration for a device and NM will not try to override this setting.

After modifying /etc/network/interfaces you have to restart NM with the command "/etc/init.d/network-manager restart".

and then it has some examples.

TRS-80

Posted 2009-07-21T02:03:38.913

Reputation: 2 923

You can make the configuration either to the text files or via the network config gui. Either way results in NM not trying to manage the interface. – pcapademic – 2009-07-21T19:39:06.770

Unfortunately it doesn't seem to work... see above – bdonlan – 2009-07-22T00:47:23.913

... and solved it, see my second edit. Thanks. – bdonlan – 2009-07-22T00:57:11.097

2

You can also add this line to /etc/network/interfaces

iface wlan0 inet manual

sybind

Posted 2009-07-21T02:03:38.913

Reputation: 181