feat(dns01): use infra-wide network config #6

Merged
cst1 merged 1 commit from dns01_network into main 2024-12-04 18:07:35 +01:00
2 changed files with 15 additions and 26 deletions

View file

@ -10,30 +10,7 @@ lib.extra.mkConfig {
"nsd" "nsd"
]; ];
extraConfig = { extraConfig = { };
users.users.root.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDMBW7rTtfZL9wtrpCVgariKdpN60/VeAzXkh9w3MwbO julien@enigma"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKrijwPlb7KQkYPLznMPVzPPT69cLzhEsJzZi9tmxzTh cst1@x270"
];
systemd.network = {
config.routeTables = {
he = 100;
mwan = 110;
};
networks = {
"10-ens18" = {
name = "ens18";
networkConfig = {
Description = "ENS uplink";
Address = [ "129.199.146.102/24" ];
Gateway = "129.199.146.254";
LLDP = true;
};
};
};
};
};
root = ./.; root = ./.;
} }

View file

@ -1,8 +1,20 @@
{ {
dns01 = { dns01 = {
interfaces = { }; interfaces = {
ens18 = {
ipv4 = [
{
address = "129.199.146.102";
prefixLength = 24;
}
];
addresses.ipv4 = [ "129.199.146.102" ]; gateways = [ "129.199.146.254" ];
enableDefaultDNS = true;
};
};
#addresses.ipv4 = [ "129.199.146.102" ];
hostId = "1758233d"; hostId = "1758233d";
}; };