lab-infra/meta/network.nix
sinavir 40fadb15e0
Some checks failed
Check meta / check_meta (push) Failing after 20s
lint / check (push) Successful in 23s
build configuration / build_krz01 (push) Successful in 1m27s
fix(router02): Use old router ip
2024-10-18 13:34:52 +02:00

31 lines
538 B
Nix

{
krz01 = {
interfaces = {
vmbr0 = {
ipv4 = [
{
address = "129.199.146.21";
prefixLength = 24;
}
{
address = "192.168.1.145";
prefixLength = 24;
}
];
gateways = [ "129.199.146.254" ];
enableDefaultDNS = true;
};
};
hostId = "bd11e8fc";
netbirdIp = "100.80.103.206";
};
router02 = {
interfaces = { };
addresses.ipv4 = [ "129.199.146.230" ];
hostId = "144d0f7a";
};
}