open up samba
This commit is contained in:
@@ -36,8 +36,8 @@
|
||||
else "iptables -A INPUT -p ${proto} --match multiport --dports ${intsS} --source ${subnetsS} -j ACCEPT"
|
||||
);
|
||||
|
||||
startTCP = map(attr: mkAdd "tcp" attr.subnets attr.tcp) ports;
|
||||
startUDP = map(attr: mkAdd "udp" attr.subnets attr.udp) ports;
|
||||
startTCP = map (attr: mkAdd "tcp" attr.subnets attr.tcp) ports;
|
||||
startUDP = map (attr: mkAdd "udp" attr.subnets attr.udp) ports;
|
||||
|
||||
# TODO: when stopping the firewall, systemd uses the old ports. So this is a two-phase process.
|
||||
# How to stop the old one and start the new one?
|
||||
@@ -51,8 +51,8 @@
|
||||
else "iptables -D INPUT -p ${proto} --match multiport --dports ${intsS} --source ${subnetsS} -j ACCEPT || :"
|
||||
);
|
||||
|
||||
stopTCP = map(attr: mkDel "tcp" attr.subnets attr.tcp) ports;
|
||||
stopUDP = map(attr: mkDel "udp" attr.subnets attr.udp) ports;
|
||||
stopTCP = map (attr: mkDel "tcp" attr.subnets attr.tcp) ports;
|
||||
stopUDP = map (attr: mkDel "udp" attr.subnets attr.udp) ports;
|
||||
in {
|
||||
networking.firewall.extraCommands = lib.concatLines (startTCP ++ startUDP);
|
||||
networking.firewall.extraStopCommands = lib.concatLines (stopTCP ++ stopUDP);
|
||||
|
||||
Reference in New Issue
Block a user