7e4f9431caf4be39f39b64634f7708d7ca217d41 |
|
21-May-2014 |
Kay Sievers <kay@vrfy.org> |
Revert "update gitignore"
This reverts commit 351efdc7a4d900a1aebca517dd0b46b89cdd7306. |
351efdc7a4d900a1aebca517dd0b46b89cdd7306 |
|
21-May-2014 |
Kay Sievers <kay@vrfy.org> |
update gitignore |
091a364c802e34a58f3260c9cb5db9b75c62215c |
|
19-May-2014 |
Tom Gundersen <teg@jklm.no> |
resolved: add daemon to manage resolv.conf
Also remove the equivalent functionality from networkd. |
2dcf7ec6ec0c28297311108acba119cd6e055e64 |
|
16-May-2014 |
Tom Gundersen <teg@jklm.no> |
networkd: manager - read fallback DNS servers from config file
We will still use the compiled-in defaults if no DNS entry exists in the config file. |
cef8b0735831b2bfeaf21d8a245d8024c3de816a |
|
26-Apr-2014 |
Tom Gundersen <teg@jklm.no> |
networkd-wait-online: drop config file and add commandline options instead |
3a67e927e3be7efb8edf314a31aa4f8f5cba4f53 |
|
24-Apr-2014 |
Tom Gundersen <teg@jklm.no> |
networkd-wait-online: improve interoptability and enable by default
To make sure we don't delay boot on systems where (some) network links are managed by someone else
we don't block if something else has successfully brought up a link.
We will still block until all links we are aware of that are managed by networkd have been
configured, but if no such links exist, and someone else have configured a link sufficiently
that it has a carrier, it may be that the link is ready so we should no longer block.
Note that in all likelyhood the link is not ready (no addresses/routes configured),
so whatever network managment daemon configured it should provide a similar wait-online
service to block network-online.target until it is ready.
The aim is to block as long as we know networking is not fully configured, but no longer. This
will allow systemd-networkd-wait-online.service to be enabled on any system, even if we don't
know whether networkd is the main/only network manager.
Even in the case networking is fully configured by networkd, the default behavior may not be
sufficient: if two links need to be configured, but the first is fully configured before the
second one appears we will assume the network is up. To work around that, we allow specifying
specific devices to wait for before considering the network up.
This unit is enabled by default, just like systemd-networkd, but will only be pulled in if
anyone pulls in network-online.target. |
c0dda18697e0994272c0c9616d36f6777b60e2c7 |
|
20-Feb-2014 |
Tom Gundersen <teg@jklm.no> |
networkd: netdev - allow filtering on kernel cmdline, host and virt |
f579559b3a14c1f1ef96c372e7626c4733e6ef7d |
|
09-Nov-2013 |
Tom Gundersen <teg@jklm.no> |
networkd: add a basic network daemon
This daemon listens for and configures network devices tagged with
'systemd-networkd'. By default, no devices are tagged so this daemon
can safely run in parallel with existing network daemons/scripts.
Networks are configured in /etc/systemd/network/*.network. The first .network
file that matches a given link is applied. The matching logic is similar to
the one for .link files, but additionally supports matching on interface name.
The mid-term aim is to provide an alternative to ad-hoc scripts currently used
in initrd's and for wired setups that don't change much (e.g., as seen on
servers/and some embedded systems).
Currently, static addresses and a gateway can be configured.
Example .network file:
[Match]
Name=wlp2s0
[Network]
Description=My Network
Gateway=192.168.1.1
Address=192.168.1.23/24
Address=fe80::9aee:94ff:fe3f:c618/64 |