use systemd-networkd

This commit is contained in:
Christoph Cullmann 2023-06-10 17:42:28 +02:00
parent 8d191f63d7
commit 7ef9ee727b
3 changed files with 20 additions and 2 deletions

View file

@ -62,11 +62,23 @@ in
# allow all firmware
hardware.enableAllFirmware = true;
# networking just with the dhcp client
networking.useDHCP = true;
# use systemd-networkd
networking.useDHCP = false;
systemd.network.enable = true;
systemd.network.networks."10-wan" = {
networkConfig = {
# start a DHCP Client for IPv4 Addressing/Routing
DHCP = "ipv4";
# accept Router Advertisements for Stateless IPv6 Autoconfiguraton (SLAAC)
IPv6AcceptRA = true;
};
# make routing on this interface a dependency for network-online.target
linkConfig.RequiredForOnline = "routable";
};
# ensure firewall is up, allow ssh and http in
networking.firewall.enable = true;
networking.firewall.allowedTCPPorts = [ 22 ];
networking.firewall.logRefusedConnections = false;
# OpenSSH daemon config

View file

@ -16,4 +16,7 @@
# host name
networking.hostName = "mini";
# main network interface
systemd.network.networks."10-wan".matchConfig.Name = "eno1";
}

View file

@ -16,4 +16,7 @@
# host name
networking.hostName = "neko";
# main network interface
systemd.network.networks."10-wan".matchConfig.Name = "enp9s0";
}