My current issues with systemd's networkd in Fedora 21
On the whole I'm happy with my switch to systemd-networkd
, which
I made for reasons covered here; my networking
works and my workstation boots faster. But right now there are some
downsides and limitations to networkd, and in the interests of equal
time for the not so great bits I feel like running down them today.
I covered some initial issues in my detailed setup entry; the largest one is that there is no syntax
checker for the networkd configuration files and networkd itself
doesn't report anything to the console if there are problems.
Beyond that we get into a collection of operational issues.
What I consider the largest issue with networkd right now is that
it's a daemon (as opposed to something that runs once and stops)
but there is no documented way of interacting with it while it's
running. There are two or three sides to this: information, temporary
manipulation, and large changes. On the information front, networkd
exposes no good way to introspect its full running state, including
what network devices it's doing what to, or to wait for it to
complete certain operations. On the temporary manipulation front,
there's no way I know of to tell networkd to temporarily take down
something and then later bring it back (the equivalent of ifdown
and ifup
). Perhaps you're supposed to do those with manual commands
outside of networkd. Finally, on more permanent changes, if you add
or remove or modify a configuration file in /etc/systemd/network
and want networkd to notice, well, I don't know how you do that.
Perhaps you restart networkd; perhaps you shut networkd down, modify
things, and restart it; perhaps you reboot your machine. Perhaps
networkd notices some changes on its own.
(Okay, it turns out that there's a networkctl
command
that queries some information from networkd, although it's not
actually documented in the Fedora 21 version of systemd. This still
doesn't allow you to poke networkd to do various operations.)
This points to a broader issue: there's a lot about networkd that's
awfully underdocumented. I should not have to wonder about how to
get networkd to notice configuration file updates; the documentation
should tell me one way or another. As I write this the current
systemd 219 systemd-networkd
manpage is
a marvel of saying very litte, and there's also omissions and lack
of clarity in the manpages for the actual configuration files. All
told networkd's documentation is not up to the generally good systemd
standards.
The next issue is that networkd has forgotten everything that systemd
learned about the difference between present configuration files
and active configuration files. To networkd those are one and the
same; if you have a file in /etc/systemd/network
, it is live.
Want it not to be live? Better move it out of the directory (or
edit it, although there is no explicit 'this is disabled' option
you can set). Want to override something in /usr/lib/systemd/network
?
I'm honestly not sure how you'd do that short of removing it or
editing it. This is an unfortunate step backwards.
(It's also a problem in some situations where you have multiple
configurations for a particular port that you want to swap between.
In Fedora's static configuration world you can have multiple ifcfg-*
files, all with ONBOOT=no
, and then ifup
and ifdown
them as
you need them; there is no networkd equivalent.)
I'm not going to count networkd's lack of general support for 'wait
for specific thing <X> to happen' as an issue. But it certainly
would be nice if systemd-networkd-wait-online
was more generic
and so could be more easily reused for various things.
I do think (as mentioned) that some of
networkd's device and link configuration is unnecessarily tedious
and repetitive. I see why it happened, but it's the easy way instead
of the best way. I hope that it can be improved and I think that
it can be. In theory I think you could go as far as optionally
merging .link
files with
.network
files to
cover many cases much simpler, as the sections in each file today
basically don't clash with each other.
In general I certainly hope that all of these issues will get better over time, although some of them will inevitably make networkd more complicated. Systemd's network configuration support is relatively young and I'm willing to accept some rough edges under the circumstances. I even sort of accept that networkd's priority right now probably needs to be supporting more types of networking instead of improving the administration experience, even if it doesn't make me entirely happy (but I'm biased, as my needs are already met there).
(To emphasize, my networkd issues are as of the state of networkd in Fedora 21, which has systemd 216, with a little bit of peeking at the latest systemd 219 documentation. In a year the situation may look a lot different, and I sure hope it does.)
|
|