simple-iptables-firwall

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
simple-iptables-firwall [2017/09/23 12:56] baumisimple-iptables-firwall [2017/10/21 18:33] (current) baumi
Line 1: Line 1:
 ====== Simple iptables Firewall ====== ====== Simple iptables Firewall ======
-<code language=bash>+<code bash>
 #!/bin/bash #!/bin/bash
  
Line 19: Line 19:
  
 # Allow related traffic # Allow related traffic
-iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT+iptables -A INPUT -m conntrack --state ESTABLISHED -j ACCEPT 
 +iptables -A OUTPUT -m conntrack --state ESTABLISHED -j ACCEPT 
 + 
 +# Allow icmp traffic 
 +iptables -A INPUT -p icmp -j ACCEPT 
 +iptables -A OUTPUT -p icmp -j ACCEPT
  
 # Allow outgoing traffic # Allow outgoing traffic
simple-iptables-firwall.1506164184.txt.gz · Last modified: 2017/09/23 12:56 by baumi

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki