Difference between /etc/network and /etc/NetworkManager in Ubuntu

3

1

I use Ubuntu 12.04.1.

I understand networking, and the meaning of files in both folders, but the question is:

"How are they coexisting?"

For example, if I have this configuration of eth0 in /etc/network/interfaces:

auto eth0
iface eth0 inet static
address 192.168.0.2
gateway 192.168.0.1
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255

and this one in /etc/NetworkManager/system-connections:

[802-3-ethernet]
duplex=full
mac-address=00:1E:33:71:CD:A4

[connection]
id=eth0
uuid=4c12ff66-028a-4338-bad5-fa6e9c5e6939
type=802-3-ethernet

[ipv6]
method=auto

[ipv4]
method=manual
dns=192.168.0.1;
addresses1=192.168.0.1;24;192.168.0.1;

What will be the resulting address of the interface, 192.168.0.1 or 192.168.0.2, and why so ?

Rodnower

Posted 2012-10-01T19:26:39.793

Reputation: 1 739

2The /etc folder contains every configuration in your distro, the first file says how you'll use the interface, the second file says how the NetworkManager, which is the Visual Manager, should interpret the first file, is this what are you asking for? – poz2k4444 – 2012-10-01T22:51:56.987

NetworkManager is a daemon with an optional applet and commandline tools. The daemon also has a DBus API if you want to build your own tools. – Emyr – 2013-10-09T08:38:33.963

Answers

4

/etc/network is what your Operating System uses to assign network addresses. NetworkManager is what Ubuntu (and other distros like RedHat) use to force /etc/network to do its bidding. It will automatically configure the network services. Many implementations now do not allow NetworkManager to override /etc/network settings. NetworkManager used to really bugger things up in a server environment.

So in short, /etc/network is for manual configuration of the network. /etc/NetworkManager is for automatic configuration of the network addresses. It's useful for laptops or other PCs that change networks a lot. Tends to be a headache in a server environment, so many disable NetworkManager and just run with /etc/network

UtahJarhead

Posted 2012-10-01T19:26:39.793

Reputation: 1 755