This commit is contained in:
Sandro - 2022-12-18 23:47:42 +01:00
parent d53f010043
commit fdbea7fa35
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
3 changed files with 17 additions and 11 deletions

View File

@ -29,11 +29,14 @@ in
hostName = "bind";
firewall = {
allowedTCPPorts = [
53 # DNS
80 443 # HTTP(s)
# DNS
53
# HTTP(s)
80 443
];
allowedUDPPorts = [
53 # DNS
# DNS
53
];
};
};

View File

@ -30,8 +30,7 @@ in
hostName = "mailtngbert";
firewall.allowedTCPPorts = [
# postfix (smtp and submission)
25
587
25 587
# dovecot (imap)
143
# managesieve

View File

@ -49,14 +49,18 @@
networking = {
firewall = {
allowedTCPPorts = [
80 # nginx
443 # nginx
4713 # pulseaudio/pipewire network sync
5355 # llmnr
# nginx
80 443
# pulseaudio/pipewire network sync
4713
# llmnr
5355
];
allowedUDPPorts = [
5353 # mdns
5355 # llmnr
# mdns
5353
# llmnr
5355
];
};
hostName = "pulsebert";