feat(dns01): use infra-wide network config
Some checks failed
Check meta / check_meta (push) Failing after 19s
lint / check (push) Successful in 22s
Check meta / check_meta (pull_request) Failing after 19s
lint / check (pull_request) Successful in 23s
build configuration / build_krz01 (pull_request) Failing after 1m27s

This commit is contained in:
Constantin Gierczak--Galle 2024-12-04 18:06:01 +01:00
parent 225ced72c2
commit f52c7ac502
No known key found for this signature in database
2 changed files with 15 additions and 26 deletions

View file

@ -10,30 +10,7 @@ lib.extra.mkConfig {
"nsd"
];
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;
};
};
};
};
};
extraConfig = { };
root = ./.;
}

View file

@ -1,8 +1,20 @@
{
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";
};