summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjetil Orbekk <kjetil.orbekk@gmail.com>2020-01-19 07:36:41 -0500
committerKjetil Orbekk <kjetil.orbekk@gmail.com>2020-01-19 07:36:46 -0500
commite9057b32aacc3603027bcb27f20aaac5992d7a4b (patch)
tree63648441740f77b30135842ab0d7cbd474581589
parent0ccb8d1c660c47af854164d35595c84b84ec5b16 (diff)
firewall
-rw-r--r--config/ap.nix11
1 files changed, 11 insertions, 0 deletions
diff --git a/config/ap.nix b/config/ap.nix
index 9bc2ef6..66a2014 100644
--- a/config/ap.nix
+++ b/config/ap.nix
@@ -40,6 +40,17 @@ in
interface $DEV_LAN @subchain "services" {
proto (tcp udp) dport (ssh domain bootps) ACCEPT;
+
+ # Chromecast
+ # proto udp dport 32768:61000 ACCEPT;
+ # proto udp dport (5353 1900) ACCEPT;
+ # proto tcp dport (8008 8009) ACCEPT;
+
+ # chain logdrop {
+ # LOG log-level warning log-prefix "dropped-lan ";
+ # DROP;
+ # }
+ # jump logdrop;
}
}