depot/hosts/VEGAS/services/dns/default.nix

56 lines
1.3 KiB
Nix
Raw Normal View History

{ config, hosts, inputs, pkgs, ... }:
2021-10-16 21:20:16 +03:00
# TODO: is this secure?
let
inherit (hosts.${config.networking.hostName}) interfaces;
in {
imports = [ ./zones.nix ];
networking.firewall = {
allowedTCPPorts = [ 53 ];
allowedUDPPorts = [ 53 ];
};
2022-06-18 19:23:14 +03:00
systemd.services.coredns.after = [ "network-addresses-vstub.service" ];
2021-10-16 21:20:16 +03:00
services.coredns = {
enable = true;
config = ''
. {
bind ${interfaces.vstub.addr}
hosts ${inputs.self.packages.${pkgs.system}.stevenblack-hosts} {
2021-10-16 21:20:16 +03:00
fallthrough
}
chaos "Private Void DNS" info@privatevoid.net
forward . 127.0.0.1
}
'';
};
services.bind = {
enable = true;
# TODO: un-hardcode all ip addresses
listenOn = [ interfaces.primary.addr "127.0.0.1" ];
ipv4Only = true;
cacheNetworks = [ "10.0.0.0/8" ];
extraConfig = ''
acl "trusted" {
127.0.0.0/8;
::1/128;
${interfaces.primary.addr}/32;
${interfaces.vstub.addr}/32;
10.100.0.0/16;
10.10.0.0/16;
};
acl "publicservers" {
${interfaces.primary.addr}/32;
116.202.226.86/32;
};
'';
extraOptions = ''
recursion yes;
allow-recursion { trusted; };
dnssec-validation no;
'';
};
}