Quantcast
Channel: Hello, I'm Paul Booker - iptables
Browsing latest articles
Browse All 5 View Live

View Your Current iptables Rules

sudo iptables -L sudo ip6tables -L Tags: iptablesfirewall

View Article



An example iptables rulesets to secure your linux server if running a web...

# Allow all loopback (lo0) traffic and reject traffic # to localhost that does not originate from lo0. -A INPUT -i lo -j ACCEPT -A INPUT ! -i lo -s 127.0.0.0/8 -j REJECT # Allow ping and traceroute....

View Article

Importing firewall rulesets for immediate use.

sudo iptables-restore Tags: iptablesfirewall

View Article

Automate loading of iptables rules on boot for Ubuntu

sudo apt-get install iptables-persistent Tags: iptablesfirewall

View Article

Inserting, Deleting or Replacing iptables Rules

sudo iptables -L --line-numbers sudo iptables -I INPUT 9 -p tcp --dport 8080 -j ACCEPT sudo iptables -D INPUT 9 sudo iptables -R INPUT 11 -m limit --limit 3/min -j LOG --log-prefix...

View Article

Browsing latest articles
Browse All 5 View Live




Latest Images