summaryrefslogtreecommitdiff
path: root/daeva/nftables-rules.nft
diff options
context:
space:
mode:
authorKenny Ballou <kballou@devnulllabs.io>2021-02-24 18:33:19 -0700
committerKenny Ballou <kballou@devnulllabs.io>2021-02-24 18:33:19 -0700
commita58ee47301a46fe7d319467b73491dcfcae885d1 (patch)
tree80c2f19dfd14e7879f3ee30e03a063150b9accd4 /daeva/nftables-rules.nft
parentb54a13223c10f583aa2f17c9db7ee26588dad7d0 (diff)
downloadcfg.nix-a58ee47301a46fe7d319467b73491dcfcae885d1.tar.gz
cfg.nix-a58ee47301a46fe7d319467b73491dcfcae885d1.tar.xz
update firewall rules
Signed-off-by: Kenny Ballou <kballou@devnulllabs.io>
Diffstat (limited to 'daeva/nftables-rules.nft')
-rw-r--r--daeva/nftables-rules.nft7
1 files changed, 6 insertions, 1 deletions
diff --git a/daeva/nftables-rules.nft b/daeva/nftables-rules.nft
index 8d78807..792b684 100644
--- a/daeva/nftables-rules.nft
+++ b/daeva/nftables-rules.nft
@@ -11,7 +11,7 @@ table inet filter {
udp dport domain ip saddr 172.16.0.0/12 counter accept
tcp dport 3000 ip saddr 127.0.0.1/8 counter accept
tcp dport 8000 ip saddr 127.0.0.1/8 counter accept
- tcp dport http-alt ip saddr { 127.0.0.1/8, 10.100.0.0/8 } counter accept
+ tcp dport http-alt ip saddr { 127.0.0.1/8, 10.0.0.0/8 } counter accept
counter
}
@@ -53,6 +53,11 @@ table inet filter {
ip daddr 127.0.0.0/8 counter accept
tcp dport 5222 counter accept
tcp dport 6697 counter accept
+ tcp dport 2049 ip daddr 10.0.0.0/8 counter accept
+ udp dport 2049 ip daddr 10.0.0.0/8 counter accept
+ tcp dport 20048 ip daddr 10.0.0.0/8 counter accept
+ udp dport 20048 ip daddr 10.0.0.0/8 counter accept
+ tcp dport 13052 counter accept
counter
}
}