summaryrefslogtreecommitdiff
path: root/man/systemd-networkd.service.xml
Commit message (Collapse)AuthorAge
* Reindent man pages to 2chZbigniew Jędrzejewski-Szmek2015-02-03
|
* man: fix link to systemd-networkd-wait-online.service in ↵Chris Mayo2014-11-30
| | | | systemd-networkd.service(8)
* resolved: add daemon to manage resolv.confTom Gundersen2014-05-19
| | | | Also remove the equivalent functionality from networkd.
* doc: typographical fine tuningJan Engelhardt2014-05-06
|
* man: networkd typo fixespoma2014-04-26
|
* networkd-wait-online: improve interoptability and enable by defaultTom Gundersen2014-04-24
| | | | | | | | | | | | | | | | | | | | | | | | | 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.
* man: networkd - additional examples related to bridgingpoma2014-03-17
|
* man: networkd - fix typoUmut Tezduyar Lindskog2014-03-04
|
* man: networkd - mention resolv.conf symlinkTom Gundersen2014-03-03
|
* man: refer to systemd.net{work,dev}(5) from systemd-networkd(8)Tom Gundersen2014-02-25
|
* man: split out systemd.link(5) from udev(7)Tom Gundersen2014-02-25
|
* man: networkd - clarify that multiple addresses/routes are supportedTom Gundersen2014-02-25
|
* net-util: match on the driver as exposed by ethtool if DRIVER not setTom Gundersen2014-02-21
| | | | Also fix a copy-paste error that broke matching on interface name.
* man: networkd typo fixesThomas Hindoe Paaboel Andersen2014-02-21
|
* man: suffix networkd config file options with "="Lennart Poettering2014-02-21
| | | | | That's what we do for all options in the other man pages. It helps clarifying that these are options that values need to be assigned to.
* .network/.netdev/.link: allow to match on architectureTom Gundersen2014-02-21
|
* man: networkd/udev - add to [Match] documentationTom Gundersen2014-02-20
|
* net-match: fix Driver= matchTom Gundersen2014-02-18
| | | | It should match on the driver of the parent device.
* man: minor fixes to networkd pageTom Gundersen2014-02-18
| | | | Also enforce that we don't allow setting the Broadcast for IPv6 addresses.
* doc: utilize the DocBook markup for some literalsJan Engelhardt2014-02-17
|
* doc: update punctuationJan Engelhardt2014-02-17
| | | | Resolve spotted issues related to missing or extraneous commas, dashes.
* networkd: VLAN - allow multiple vlans to be created on a linkTom Gundersen2014-02-10
| | | | | | | | Also limit the range of vlan ids. Other implementations and documentation use the ranges {0,1}-{4094,4095}, but we use the one accepted by the kernel: 0-4094. Reported-by: Oleksii Shevchuk <alxchk@gmail.com>
* networkd: netdev - rename Netdev to NetDevTom Gundersen2014-02-07
| | | | Both in the configuration file format and everywhere else in the code.
* networkd: dhcpv4 - add notion of 'CriticalConnection'Tom Gundersen2014-01-30
| | | | | | | | | | These connections are never torn down, even when the DHCP specifications say that they should be. This is useful/necessary when the rootfs (or another critical fs) is mounted over this network connection, and dataloss would result if the connection is lost. This option defaults to off, but our initrd generator (TBD) will enable it when applicable.
* networkd: add basic VLAN supportTom Gundersen2014-01-25
|
* networkd: add basic bonding supportTom Gundersen2014-01-22
| | | | | Refactor bridging support to be generic netdev support and extend it to cover bonding as well.
* networkd: dhcp - by default ignore the MTUTom Gundersen2014-01-18
|
* sd-dhcp-client/networkd: add transient hostname supportTom Gundersen2014-01-16
|
* sd-dhcp-client/networkd: add interface MTU supportTom Gundersen2014-01-16
|
* networkd: DHCPv4 - allow opting out of using DNS serversTom Gundersen2014-01-13
| | | | Setting UseDNS=no will ignore any received DNS servers.
* networkd: refuse to use .network files with missing Address/Gateway keyTom Gundersen2014-01-05
| | | | | | | | | | | | These keys are mandatory in [Address]/[Route] sections. Otherwise, we hit an assert: ens3: setting addresses Assertion 'address->family == 2 || address->family == 10' failed at /build/amd64-generic/tmp/portage/sys-apps/systemd-9999-r1/work/systemd-9999/src/network/networkd-address.c:137, function address_configure(). Aborting. Reported-by: Alex Polvi <alex.polvi@coreos.com> At the same time make sure Route's Destination and Gateway uses the same address family.
* Revert "net-util: add support for Type=ethernet"Tom Gundersen2014-01-04
| | | | | | | This reverts commit 4cd1214db6cf4b262e8ce6381bc710091b375c96. This may still be fixed in the kernel, revert this for now until we see how it all shakes out.
* man: networkd - document DHCP optionTom Gundersen2014-01-03
|
* net-util: add support for Type=ethernetTom Gundersen2014-01-03
| | | | | When DEVTYPE is not set for a nic, it means it is a wired/ethernet device.
* man: grammar and wording improvementsJan Engelhardt2013-12-25
| | | | | | | This is a recurring submission and includes corrections to: - missing words, preposition choice. - change of /lib to /usr/lib, because that is what most distros are using as the system-wide location for systemd/udev files.
* man: networkd - clarify Address/Gateway keys in [Network] sectionTom Gundersen2013-12-17
|
* networkd: add support for Route sectionsTom Gundersen2013-12-17
|
* man: networkd - document bridgingTom Gundersen2013-11-26
|
* networkd: add support for [Address] sectionsTom Gundersen2013-11-25
| | | | | | | | This will allow specifying more options per address than the simple Address= entry in the [Network] section. Preliminary support for the same functionality for [Route] sections are added, but not yet hooked up, as more testing is needed.
* networkd: don't filter on udev tagsTom Gundersen2013-11-21
| | | | | | | | | This removed the requirement for devices to be tagged with 'systemd-networkd' before they will be visible to networkd. Still, as by default we don't ship any .network files, network devices will simply be tracked, but not touched, unless the admin configures things explicitly.
* build-sys: make networkd man pages conditionalTom Gundersen2013-11-12
|
* man: networkd - add documentationTom Gundersen2013-11-10