1
0
Fork 0

host/aluminium: assign static management ip

This commit is contained in:
clerie 2022-12-28 01:25:12 +01:00
parent 2cfc9f1387
commit 33195da4d7
2 changed files with 31 additions and 0 deletions

View File

@ -20,6 +20,32 @@
networking.hostName = "aluminium";
petabyte.policyrouting = {
enable = true;
rules6 = [
{ rule = "from 2a01:4f8:c0c:15f1::8106/128 lookup 200"; prio = 20000; }
{ rule = "from 2a01:4f8:c0c:15f1::8106/128 unreachable"; prio = 20001; }
];
};
networking.wireguard.enable = true;
networking.wireguard.interfaces = {
wg-clerie = {
ips = [ "2a01:4f8:c0c:15f1::8106/128" "10.20.30.106/32" ];
table = "200";
peers = [
{
endpoint = "vpn.clerie.de:51820";
persistentKeepalive = 25;
allowedIPs = [ "0.0.0.0/0" "::/0" "10.20.30.0/24" "2a01:4f8:c0c:15f1::/113" ];
publicKey = "2p1Jqs3bkXbXHFWE6vp1yxHIFoUaZQEARS2nJzbkuBA=";
}
];
privateKeyFile = "/var/src/secrets/wireguard/wg-clerie";
};
};
clerie.monitoring = {
enable = true;
id = "212";

View File

@ -83,6 +83,11 @@
allowedIPs = [ "2a01:4f8:c0c:15f1::8105/128" "10.20.30.105/32" ];
publicKey = "6gi04ExLQnpwxmTzQwQz3AsPS+ujKmANh6+o0nAzJwM=";
}
{
# aluminium
allowedIPs = [ "2a01:4f8:c0c:15f1::8106/128" "10.20.30.106/32" ];
publicKey = "kuUeStBuU6d8PGFHFhP5pEvy0nuZ0TmScI8w7MOt0is=";
}
];
listenPort = 51820;
allowedIPsAsRoutes = false;