No description
Find a file
2021-06-03 11:18:27 -06:00
.github/workflows CI: install scdoc 2020-10-24 08:43:51 -06:00
cmd multicall: fix handling of -X options, closes #155 2021-06-01 10:31:06 -06:00
dist example config: document auto_executor_selection setting 2020-11-04 11:21:42 -07:00
doc doc: Add man page for tunnel interfaces 2021-06-03 18:53:36 +02:00
executor-scripts tunnel executore: Add support for setting pmtudisc / ignore-df for tunnels. 2021-06-03 18:53:25 +02:00
libifupdown interface-file: adjust the special handling for hostname properties to use dhcp-hostname 2021-04-07 09:30:56 -06:00
tests static: use ip addr|route flush instead of manually deleting matching routes 2021-04-22 01:43:12 -06:00
.gitignore gitignore: Add ifprase 2021-03-21 02:37:12 +01:00
CODE_OF_CONDUCT.md add code of conduct 2020-07-18 04:51:25 -06:00
COPYING initial commit 2020-07-18 01:17:51 -06:00
Kyuafile tests: start working on testing capabilities 2020-07-18 19:46:32 -06:00
Makefile doc: Add man page for tunnel interfaces 2021-06-03 18:53:36 +02:00
README.md update IRC server 2021-06-03 11:18:27 -06:00

ifupdown-ng

ifupdown-ng is a network device manager that is largely compatible with Debian ifupdown, BusyBox ifupdown and Cumulus Networks' ifupdown2.

For more information read the admin guide.

Dependency Resolution

Dependency resolution example

ifupdown-ng uses a dependency resolver to determine interface bring-up order in a deterministic way.

This is accomplished through a combination of manual hinting using the requires keyword and dependency learning using native executors.

For compatibility with some legacy ifupdown executors, we also provide the requires keyword under other environment variables in some cases.

Caveats

  • ifupdown2 python plugins are not supported at this time. An executor could be written to handle them.

  • ifupdown-ng retains compatibility with /etc/network/if-X.d scripts, but will prefer using executors in /usr/libexec/ifupdown-ng where appropriate.

Building

On musl systems, simply do make and make install to build and install.

On glibc systems, you must install libbsd-dev or equivalent and additionally define LIBBSD_CFLAGS and LIBBSD_LIBS:

# instal packages
apt install build-essential libbsd0 libbsd-dev

# build ifupdown-ng
make LIBBSD_CFLAGS="$(pkg-config --cflags libbsd-overlay)" LIBBSD_LIBS="$(pkg-config --cflags --libs libbsd-overlay)"
make install

To run the tests, do make check. Running the checks requires kyua (apk add kyua, not packaged for Debian).

To build the documentation, do make docs and make install_docs. Building the documentation requires scdoc (apk add scdoc / apt install scdoc).

Discussion

Discuss ifupdown-ng on IRC: irc.oftc.net #ifupdown-ng