1
0
Fork 0

Restructure values file to separate hosts from services

This commit is contained in:
Oystein Kristoffer Tveit 2023-01-21 19:51:10 +01:00
parent cb403a7aeb
commit ad75cb0c88
Signed by untrusted user: oysteikt
GPG Key ID: 9F2F7D8250F35146
6 changed files with 37 additions and 33 deletions

View File

@ -10,7 +10,7 @@
networking.search = [ "pvv.ntnu.no" "pvv.org" ]; networking.search = [ "pvv.ntnu.no" "pvv.org" ];
networking.nameservers = lib.mkDefault [ "129.241.0.200" "129.241.0.201" ]; networking.nameservers = lib.mkDefault [ "129.241.0.200" "129.241.0.201" ];
networking.tempAddresses = lib.mkDefault "disabled"; networking.tempAddresses = lib.mkDefault "disabled";
networking.defaultGateway = values.gateway; networking.defaultGateway = values.hosts.gateway;
services.resolved = { services.resolved = {
enable = true; enable = true;

View File

@ -25,7 +25,7 @@
networking.interfaces.ens18.ipv4 = { networking.interfaces.ens18.ipv4 = {
addresses = [ addresses = [
{ {
address = values.ildkule.ipv4; address = values.hosts.ildkule.ipv4;
prefixLength = 25; prefixLength = 25;
} }
]; ];
@ -33,7 +33,7 @@
networking.interfaces.ens18.ipv6 = { networking.interfaces.ens18.ipv6 = {
addresses = [ addresses = [
{ {
address = values.ildkule.ipv6; address = values.hosts.ildkule.ipv6;
prefixLength = 64; prefixLength = 64;
} }
]; ];

View File

@ -29,11 +29,11 @@
networking.interfaces.ens18.ipv4 = { networking.interfaces.ens18.ipv4 = {
addresses = [ addresses = [
{ {
address = values.jokum.ipv4; address = values.hosts.jokum.ipv4;
prefixLength = 25; prefixLength = 25;
} }
{ {
address = values.turn.ipv4; address = values.services.turn.ipv4;
prefixLength = 25; prefixLength = 25;
} }
]; ];
@ -41,11 +41,11 @@
networking.interfaces.ens18.ipv6 = { networking.interfaces.ens18.ipv6 = {
addresses = [ addresses = [
{ {
address = values.jokum.ipv6; address = values.hosts.jokum.ipv6;
prefixLength = 64; prefixLength = 64;
} }
{ {
address = values.turn.ipv6; address = values.services.turn.ipv6;
prefixLength = 64; prefixLength = 64;
} }
]; ];

View File

@ -183,8 +183,8 @@ in {
(metricsPath v) ({ (metricsPath v) ({
proxyPass = proxyPath v; proxyPass = proxyPath v;
extraConfig = '' extraConfig = ''
allow ${values.ildkule.ipv4}; allow ${values.hosts.ildkule.ipv4};
allow ${values.ildkule.ipv6}; allow ${values.hosts.ildkule.ipv6};
deny all; deny all;
''; '';
})) }))
@ -194,8 +194,8 @@ in {
locations."/metrics/master/1" = { locations."/metrics/master/1" = {
proxyPass = "http://127.0.0.1:9000/_synapse/metrics"; proxyPass = "http://127.0.0.1:9000/_synapse/metrics";
extraConfig = '' extraConfig = ''
allow ${values.ildkule.ipv4}; allow ${values.hosts.ildkule.ipv4};
allow ${values.ildkule.ipv6}; allow ${values.hosts.ildkule.ipv6};
deny all; deny all;
''; '';
}; };

View File

@ -10,8 +10,8 @@
systemd.services.prometheus-node-exporter.serviceConfig = { systemd.services.prometheus-node-exporter.serviceConfig = {
IPAddressDeny = "any"; IPAddressDeny = "any";
IPAddressAllow = [ IPAddressAllow = [
values.ildkule.ipv4 values.hosts.ildkule.ipv4
values.ildkule.ipv6 values.hosts.ildkule.ipv6
]; ];
}; };

View File

@ -1,25 +1,29 @@
# Feel free to change the structure of this file # Feel free to change the structure of this file
let
rec { pvv-ipv4 = suffix: "129.241.210.${toString suffix}";
gateway = "129.241.210.129"; pvv-ipv6 = suffix: "2001:700:300:1900::${toString suffix}";
in rec {
services = {
jokum = { matrix = {
ipv4 = "129.241.210.169"; ipv4 = hosts.jokum.ipv4;
ipv6 = "2001:700:300:1900::169"; ipv6 = hosts.jokum.ipv6;
}; };
matrix = { # Also on jokum
ipv4 = jokum.ipv4; turn = {
ipv6 = jokum.ipv6; ipv4 = pvv-ipv4 213;
}; ipv6 = pvv-ipv6 213;
# Also on jokum };
turn = {
ipv4 = "129.241.210.213";
ipv6 = "2001:700:300:1900::213";
}; };
ildkule = { hosts = {
ipv4 = "129.241.210.187"; gateway = pvv-ipv4 129;
ipv6 = "2001:700:300:1900::1:187"; jokum = {
ipv4 = pvv-ipv4 169;
ipv6 = pvv-ipv6 169;
};
ildkule = {
ipv4 = pvv-ipv4 187;
ipv6 = pvv-ipv6 "1:187";
};
}; };
} }