Systemd network easy configuration
Examples of systemd network configurations. These are some collection of systemd network configuration. It does not require anything installed but systemd, not even ifupdown. note: Debian 9 aka Stretch Simple DHCP ethernet setup Interface: eth0, file name is not important, but it must have the .network suffix. /etc/systemd/network/wired.network [Match] Name=eth0 [Network] DHCP=ipv4 fixed address [Match] Name=eth0 [Network] Description="My fancy network configuration" Address=10.10.10.20/24 Gateway=10.10.10.1 DNS=10.10.10.2 DNS=10.10.10.3 Domains=fancynetwork.internal NTP=ntp.fancynetwork.internal wireless interface Authentication are managed by wpasupplicant and wpagui.
Read more...