# networkd-dispatcher **Repository Path**: openkylin/networkd-dispatcher ## Basic Information - **Project Name**: networkd-dispatcher - **Description**: No description available - **Primary Language**: Unknown - **License**: GPL-3.0 - **Default Branch**: openkylin/yangtze - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2022-04-28 - **Last Updated**: 2025-10-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # networkd-dispatcher Networkd-dispatcher is a dispatcher daemon for systemd-networkd connection status changes. This daemon is similar to [NetworkManager-dispatcher](https://developer.gnome.org/NetworkManager/unstable/NetworkManager.html), but is much more limited in the types of events it supports due to the limited nature of systemd-networkd. Desired actions (scripts) are placed into directories that reflect [systemd-networkd operational states](https://www.freedesktop.org/software/systemd/man/networkctl.html), and are executed when the daemon receives the relevant event from systemd-networkd. The daemon listens for signals from systemd-networkd over dbus, so it should be very light on resources (e.g. no polling). It is meant to be run as a system-wide daemon (as root). This allows it to be used for tasks such as starting a VPN after a connection is established. ## Usage The daemon expects that scripts are 1) executable and 2) owned by root (gid = uid = 0), and will not execute scripts that are otherwise. Scripts can be installed into these directories under ```/usr/lib/networkd-dispatcher``` for system packages, and ```/etc/networkd-dispatcher``` for local overrides: ``` routable.d/ dormant.d/ no-carrier.d/ off.d/ carrier.d/ degraded.d/ ``` networkd-dispatcher will execute any valid scripts in the directory that reflects the new state. Scripts are executed in the alpha-numeric order in which they are named, starting with 0 and ending with z. For example, a script named ```50runme``` would run before ```99runmenext```. Scripts are executed with some environment variables set. Some of these variables may not be set or may be set to an empty value, dependent upon the type of event. These can be used by scripts to conditionally take action based on a specific interface, state, etc. - ```IFACE``` - interface that triggered the event - ```STATE``` - The destination state change for which a script is currently being invoked. May be any of the values listed as valid for `AdministrativeState` or `OperationalState`. - ```ESSID``` - for wlan connections, the ESSID the device is connected to - ```ADDR``` - the ipv4 address of the device - ```IP_ADDRS``` - space-delimited string of ipv4 address(es) assigned to the device (see note below) - ```IP6_ADDRS``` - space-delimited string of ipv6 address(es) assigned to the device (see note below) - ```AdministrativeState``` - One of `pending`, `configuring`, `configured`, `unmanaged`, `failed` or `linger`. - ```OperationalState``` - One of `off`, `no-carrier`, `dormant`, `carrier`, `degraded` or `routable`. For more information about the network operational states exposed by systemd, see the `networkctl` manpage (`man networkctl`). - ```json``` - A JSON encoding of this program's interpretation of `networkctl status "$IFACE"`, when the event is one for which such information is available; for debug logs or inspection with JSON-aware tools such as `jq`. Exact structure details are implementation-defined and liable to change. *Note: For `IP_ADDRS` and `IP6_ADDRS`, the space-delimited string can be read into a BASH array like this: ```read -r -a ip_addrs <<<"$IP_ADDRS"``` ### Command-Line Options ``` usage: networkd-dispatcher [-h] [-S SCRIPT_DIR] [-T] [-v] [-q] networkd dispatcher daemon optional arguments: -h, --help show this help message and exit -S SCRIPT_DIR, --script-dir SCRIPT_DIR Location under which to look for scripts [default: /etc/networkd-dispatcher:/usr/lib/networkd-dispatcher] -T, --run-startup-triggers Generate events reflecting preexisting state and behavior on startup [default: False] -v, --verbose Increment verbosity level once per call -q, --quiet Decrement verbosity level once per call ``` Some further notes: - The intended use case of `--run-startup-triggers` is race-condition avoidance: Ensuring that triggers are belatedly run even if networkd-dispatcher is invoked after systemd-networkd has already started an interface. - The default log level is `WARNING`. Each use of `-v` will increment the log level (towards `INFO` or `DEBUG`), and each use of `-q` will decrement it (towards `ERROR` or `CRITICAL`). ### Systemd Service There is an included systemd service file, `networkd-dispatcher.service`, which can be used to run networkd-dispatcher as a service. To specify command line options for the service, add them to a variable `networkd_dispatcher_args` in `/etc/default/networkd-dispatcher`. A template conf file is included. ## Installation ### Arch Linux This package can be [installed from AUR](https://aur.archlinux.org/packages/networkd-dispatcher/). ### Other Linux Folks Requirements: - \>= python 3.4 - python-gobject - python-dbus - Handling of wireless interfaces requires one of the following tools to be installed: - wireless_tools (providing iwconfig) - iw Copy networkd-dispatcher to /usr/bin. Create the appropriate directory structure: ```$ sudo mkdir -p /etc/networkd-dispatcher/{routable,dormant,no-carrier,off,carrier,degraded}.d``` Install networkd-dispatcher.conf to /etc/default as 'networkd-dispatcher'. Install networkd-dispatcher.service and start it. If networkd-dispatcher was not copied to /usr/bin, then edit service file to reflect the appropriate path. ## Contributors - [craftyguy](https://github.com/craftyguy) (Clayton Craft) - [charles-dyfis-net](https://github.com/charles-dyfis-net) (Charles Duffy) - [ryu0](https://github.com/ryu0) (James Buren) - [raharper](https://github.com/raharper) (Ryan Harper) A large portion of the code was leveraged from [networkd-notify](https://github.com/wavexx/networkd-notify), which was written by wavexx (Yuri D'Elia)