Allow out port 445

This commit is contained in:
Nio 2026-05-12 10:39:57 +02:00
parent 0874f35fcc
commit a5c80ecf5f

View file

@ -65,4 +65,9 @@
cifs-utils
sshfs
];
# For SMB connection allowing outgoing 445
networking.firewall.extraCommands = ''
iptables -A OUTPUT -p tcp --dport 445 -j ACCEPT
'';
}