Compare commits

...

2 commits

Author SHA1 Message Date
7c362f5a42 knot-dns: update DNSSEC procedure 2024-10-13 03:02:31 +02:00
70a3d521c2 alpha: allow 25/tcp 2024-10-13 03:02:31 +02:00
2 changed files with 9 additions and 2 deletions

View file

@ -55,9 +55,10 @@
# Enable automatic DNSSEC signing on all zones. The KSK must be # Enable automatic DNSSEC signing on all zones. The KSK must be
# configured in the parent zone. Use the following command to get the # configured in the parent zone. Use the following command to get the
# required record(s): # required record(s):
# > nix shell nixpkgs#knot-dns -c sudo keymgr caspervk.net ds # > sudo keymgr caspervk.net ds
# [<zone> <record-type> <key-tag> <algorithm-type> <digest-type> <digest>] # [<zone> <record-type> <key-tag> <algorithm-type> <digest-type> <digest>]
# https://knot.readthedocs.io/en/master/configuration.html#automatic-dnssec-signing # https://knot.readthedocs.io/en/master/configuration.html#automatic-dnssec-signing
# DNSSEC can be validated using https://dnsviz.net.
dnssec-signing = "on"; dnssec-signing = "on";
dnssec-policy = "default"; dnssec-policy = "default";
# Knot overwrites the zonefiles with auto-generated DNSSEC records by # Knot overwrites the zonefiles with auto-generated DNSSEC records by

View file

@ -91,7 +91,13 @@
}; };
networking = { networking = {
firewall.allowedUDPPorts = [51820 51821]; firewall.allowedTCPPorts = [
25 # @sortseer.dk
];
firewall.allowedUDPPorts = [
51820 # wg-sigma-public
51821 # wg-sigma-p2p
];
}; };
age.secrets.wireguard-preshared-key-file = { age.secrets.wireguard-preshared-key-file = {