lab-infra/meta/network.nix

53 lines
984 B
Nix
Raw Normal View History

2024-10-12 00:20:58 +02:00
{
krz01 = {
interfaces = {
vmbr0 = {
2024-10-12 00:20:58 +02:00
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";
};
labcore01 = {
interfaces = {
ens18 = {
ipv6 = [
{
address = "2a0e:e701:1120:1000::f:1";
prefixLength = 64;
}
{
2024-11-07 13:35:57 +01:00
address = "2a0e:e701:1120:1000:ffff::45.13.104.25";
prefixLength = 64;
}
];
gateways = [ "2a0e:e701:1120:1000::1" ];
dns = [ "2a0e:e701:1120:1000::f:1" ];
};
};
hostId = "4a370ef4";
};
2024-10-18 11:05:12 +02:00
router02 = {
interfaces = { };
2024-10-18 13:34:52 +02:00
addresses.ipv4 = [ "129.199.146.230" ];
2024-10-18 11:05:12 +02:00
hostId = "144d0f7a";
};
2024-10-12 00:20:58 +02:00
}