Improve ns stuff
This commit is contained in:
31
services/ns/secondary-authorative.nix
Normal file
31
services/ns/secondary-authorative.nix
Normal file
@@ -0,0 +1,31 @@
|
||||
{ ... }:
|
||||
{
|
||||
sops.secrets.ns_xfer_key = {
|
||||
path = "/etc/nsd/xfer.key";
|
||||
};
|
||||
networking.firewall.allowedTCPPorts = [ 8053 ];
|
||||
networking.firewall.allowedUDPPorts = [ 8053 ];
|
||||
services.nsd = {
|
||||
enable = true;
|
||||
port = 8053;
|
||||
ipv6 = false;
|
||||
verbosity = 2;
|
||||
identity = "test.2rjus.net server";
|
||||
interfaces = [ "0.0.0.0" ];
|
||||
|
||||
keys = {
|
||||
"xferkey" = {
|
||||
algorithm = "hmac-sha256";
|
||||
keyFile = "/etc/nsd/xfer.key";
|
||||
};
|
||||
};
|
||||
|
||||
zones = {
|
||||
"test.2rjus.net" = {
|
||||
allowNotify = [ "10.69.13.7 xferkey" ];
|
||||
requestXFR = [ "AXFR 10.69.13.7@8053 xferkey" ];
|
||||
data = builtins.readFile ./zones-test-2rjus-net.conf;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user