Is it sufficient to have one of these three in Ubuntu 19.04? Is it possible to have all three and how to configure them so they were not conflicting?
Does systemd-networkd
started by networking.service?
Is it sufficient to have one of these three in Ubuntu 19.04? Is it possible to have all three and how to configure them so they were not conflicting?
Does systemd-networkd
started by networking.service?
As you might know
/etc/network/interfaces
has been replaced withnetplan
. Andnetplan
works fine with bothNetworkManager
andsystemd-networkd
.So you can have them all work together!
If you're running Ubuntu as your desktop, then you should use
NetworkManager
or confignetplan
so it usesNetworkManager
as its default renderer:Otherwise you can easily setup your interfaces in
netplan
itself, for example to haveinterfaces
like configuration andnetwork-manager
work together:Replacing netplan with
ifupdown
is still possible but something that I wouldn't suggests.ifupdown
netplan
interfaces
/etc/NetworkManager/NetworkManager.conf
so it would be able to manage your interfaces.You can even run
dhclient
directly to bring an interface up.