summary refs log tree commit diff
path: root/nixos/modules/services/networking
diff options
context:
space:
mode:
authorMartin Weinelt <mweinelt@users.noreply.github.com>2022-02-14 23:39:23 +0100
committerGitHub <noreply@github.com>2022-02-14 23:39:23 +0100
commitb3d39e3c599ce0b958e565b11ea12baa880528e3 (patch)
tree0f462542483395c89c121e6f18329627f1064d41 /nixos/modules/services/networking
parent4387ecec59850280d16d0ccea61054264806d82c (diff)
parent625412d2bcd2221701fe810ba2745aec380fff74 (diff)
downloadnixpkgs-b3d39e3c599ce0b958e565b11ea12baa880528e3.tar
nixpkgs-b3d39e3c599ce0b958e565b11ea12baa880528e3.tar.gz
nixpkgs-b3d39e3c599ce0b958e565b11ea12baa880528e3.tar.bz2
nixpkgs-b3d39e3c599ce0b958e565b11ea12baa880528e3.tar.lz
nixpkgs-b3d39e3c599ce0b958e565b11ea12baa880528e3.tar.xz
nixpkgs-b3d39e3c599ce0b958e565b11ea12baa880528e3.tar.zst
nixpkgs-b3d39e3c599ce0b958e565b11ea12baa880528e3.zip
Merge pull request #160037 from lourkeur/cleanup/firewall
Diffstat (limited to 'nixos/modules/services/networking')
-rw-r--r--nixos/modules/services/networking/firewall.nix4
1 files changed, 0 insertions, 4 deletions
diff --git a/nixos/modules/services/networking/firewall.nix b/nixos/modules/services/networking/firewall.nix
index 2aa3be16f6e..7482e29a3fd 100644
--- a/nixos/modules/services/networking/firewall.nix
+++ b/nixos/modules/services/networking/firewall.nix
@@ -179,10 +179,6 @@ let
       ) cfg.allowedUDPPortRanges
     ) allInterfaces)}
 
-    # Accept IPv4 multicast.  Not a big security risk since
-    # probably nobody is listening anyway.
-    #iptables -A nixos-fw -d 224.0.0.0/4 -j nixos-fw-accept
-
     # Optionally respond to ICMPv4 pings.
     ${optionalString cfg.allowPing ''
       iptables -w -A nixos-fw -p icmp --icmp-type echo-request ${optionalString (cfg.pingLimit != null)