diff options
author | uvok cheetah | 2025-02-02 15:21:26 +0100 |
---|---|---|
committer | uvok cheetah | 2025-02-02 15:21:26 +0100 |
commit | 526797b41c8dfffc7e74a951c17ef96734980e7a (patch) | |
tree | 84e562022de12f2cedc089ae8d0cbfdc02c595e9 /roles/linux-ns/files/iptables/iptables.save | |
parent | 0ee94b306e667225b64804f169f15a961e966511 (diff) |
Add role for Dn42 and network namespace
Diffstat (limited to 'roles/linux-ns/files/iptables/iptables.save')
-rw-r--r-- | roles/linux-ns/files/iptables/iptables.save | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/roles/linux-ns/files/iptables/iptables.save b/roles/linux-ns/files/iptables/iptables.save new file mode 100644 index 0000000..7a4504f --- /dev/null +++ b/roles/linux-ns/files/iptables/iptables.save @@ -0,0 +1,22 @@ +*filter +:INPUT DROP [0:0] +:FORWARD ACCEPT [0:0] +:OUTPUT ACCEPT [0:0] + +-A INPUT -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT + +-A INPUT -i lo -j ACCEPT +-A INPUT -i tinc_dn42 -j ACCEPT + +-A INPUT -p icmp --icmp-type destination-unreachable -j ACCEPT +-A INPUT -p icmp --icmp-type time-exceeded -j ACCEPT +-A INPUT -p icmp --icmp-type parameter-problem -j ACCEPT +-A INPUT -p icmp --icmp-type echo-request -j ACCEPT + +# traceroute +-A INPUT -p udp -m multiport --dports 33434:33534 -j REJECT --reject-with icmp-port-unreachable +# DNS +-A INPUT -p udp --dport 53 -j ACCEPT +-A INPUT -p tcp --dport 53 -j ACCEPT + +COMMIT |