summaryrefslogtreecommitdiff
path: root/config/networking/services/igmpproxy.nix
diff options
context:
space:
mode:
Diffstat (limited to 'config/networking/services/igmpproxy.nix')
-rw-r--r--config/networking/services/igmpproxy.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/config/networking/services/igmpproxy.nix b/config/networking/services/igmpproxy.nix
index b7a25da..6999807 100644
--- a/config/networking/services/igmpproxy.nix
+++ b/config/networking/services/igmpproxy.nix
@@ -5,9 +5,8 @@ let
netdevServices = builtins.map (subnet: "${subnet.interface}-netdev.service")
(with nets; [ wan iot ]);
conf = pkgs.writeText "igmpproxy.conf" ''
- phyint ${nets.wan.interface} upstream
- ratelimit 0 threshold 1 phyint ${nets.iot.interface} downstream ratelimit 0
- threshold 1 phyint ${nets.lan.interface} downstream ratelimit 0 threshold 1
+ phyint ${nets.wan.interface} upstream ratelimit 0 threshold 1
+ phyint ${nets.iot.interface} downstream ratelimit 0 threshold 1
'';
in {
systemd.services.igmpproxy = {