diff options
author | Kjetil Orbekk <kj@orbekk.com> | 2021-08-05 07:50:52 -0400 |
---|---|---|
committer | Kjetil Orbekk <kj@orbekk.com> | 2021-08-05 07:50:52 -0400 |
commit | a949fe559e3b43d4696517c737f175255de1e1f0 (patch) | |
tree | 247b2425610bd8924e7e64d067b9b3ac6f8f7bdb | |
parent | 5090ff74457746ffe7817f924d2dbfe5e07ba61d (diff) |
fix
-rw-r--r-- | config/router.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/router.nix b/config/router.nix index 5513176..05b7c3d 100644 --- a/config/router.nix +++ b/config/router.nix @@ -71,7 +71,7 @@ in { # Forward dns queries to dnsmasq on LAN interfaces. domain (ip ip6) table nat chain PREROUTING { - interface ($DEV_LAN $DEV_UNTRUSTED_LAN) daddr $NET_LAN proto (tcp udp) dport 53 DNAT to localhost:2053 + interface ($DEV_LAN $DEV_UNTRUSTED_LAN) daddr $NET_LAN proto (tcp udp) dport 53 DNAT to localhost:2053; } domain (ip ip6) table filter chain FORWARD { interface ($DEV_LAN $DEV_UNTRUSTED_LAN) outerface lo proto (tcp udp) dport 2053 ACCEPT; |