iptables:basic_firewall
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
iptables:basic_firewall [2016/10/20 19:20] – peter | iptables:basic_firewall [2019/11/29 16:38] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== IPTables - Basic Firewall ====== | ||
- | |||
- | ===== Verify the IPTables package is installed ===== | ||
- | |||
- | <code bash> | ||
- | dpkg --list | grep iptables | ||
- | </ | ||
- | |||
- | Returns | ||
- | |||
- | < | ||
- | ii iptables | ||
- | </ | ||
- | |||
- | |||
- | ===== Verify the Kernel Module is loaded ===== | ||
- | |||
- | <code bash> | ||
- | lsmod | grep ip_tables | ||
- | </ | ||
- | |||
- | Returns | ||
- | |||
- | < | ||
- | ip_tables | ||
- | </ | ||
- | |||
- | |||
- | |||
- | ===== Creating iptables rules ===== | ||
- | |||
- | <code bash> | ||
- | iptables -P INPUT DROP | ||
- | iptables -P OUTPUT DROP | ||
- | |||
- | # Allowing Loopback Traffic. | ||
- | iptables -I INPUT -i lo -j ACCEPT | ||
- | |||
- | # Allow established connections. | ||
- | iptables -A INPUT -m conntrack --ctstate ESTABLISHED, | ||
- | |||
- | # Allow SSH access. | ||
- | # iptables -I INPUT -p tcp --dport 22 -j ACCEPT | ||
- | iptables -A INPUT -p tcp --dport 22 -s 192.168.1.2 -j ACCEPT | ||
- | |||
- | |||
- | # Enable Web. | ||
- | # iptables -A INPUT -p tcp --dport 80 -j ACCEPT | ||
- | # iptables -A INPUT -p tcp --dport 443 -j ACCEPT | ||
- | |||
- | |||
- | # Enable FTP. | ||
- | # iptables -A INPUT -p tcp --dport 21 -j ACCEPT | ||
- | # iptables -A INPUT -p tcp --dport 20 -j ACCEPT | ||
- | |||
- | |||
- | # To block an IP range. | ||
- | iptables -I INPUT 3 -s 192.168.123.0/ | ||
- | |||
- | </ | ||
- | |||
- | |||
- | ===== Enable kernel modules ===== | ||
- | |||
- | To have FTP work correctly with iptables, ensure that the **ip_conntrack_ftp** module is loaded. | ||
- | |||
- | <code bash> | ||
- | modprobe ip_conntrack_ftp | ||
- | </ | ||
- | |||
- | Check that the module is loaded | ||
- | |||
- | <code bash> | ||
- | lsmod | grep conntrack | ||
- | </ | ||
- | |||
- | Returns | ||
- | |||
- | < | ||
- | nf_conntrack_ftp | ||
- | nf_conntrack_ipv4 | ||
- | nf_defrag_ipv4 | ||
- | xt_conntrack | ||
- | nf_conntrack | ||
- | x_tables | ||
- | </ | ||
- | |||
- | |||
- | ===== Setup an init script ===== | ||
- | |||
- | <file bash / | ||
- | #!/bin/bash | ||
- | # | ||
- | # Start and stop the Firewall. | ||
- | # Modify the following settings as required: | ||
- | |||
- | ### BEGIN INIT INFO | ||
- | # Provides: | ||
- | # Required-Start: | ||
- | # Required-Stop: | ||
- | # Default-Start: | ||
- | # Default-Stop: | ||
- | ### END INIT INFO | ||
- | |||
- | |||
- | IPTABLES=/ | ||
- | NAME=firewall-sharewiz | ||
- | |||
- | |||
- | opts=" | ||
- | |||
- | #if [[ $1 == start ]] ; then | ||
- | |||
- | case " | ||
- | start) | ||
- | / | ||
- | ;; | ||
- | |||
- | stop) | ||
- | $IPTABLES --flush | ||
- | $IPTABLES -t nat --flush | ||
- | $IPTABLES -F -t mangle | ||
- | $IPTABLES -P INPUT ACCEPT | ||
- | $IPTABLES -P OUTPUT ACCEPT | ||
- | $IPTABLES -P FORWARD ACCEPT | ||
- | $IPTABLES -t nat -P POSTROUTING ACCEPT | ||
- | $IPTABLES -t nat -P PREROUTING ACCEPT | ||
- | $IPTABLES -t nat -P OUTPUT ACCEPT | ||
- | ;; | ||
- | |||
- | restart|reload) | ||
- | # $0 stop | ||
- | # $0 start | ||
- | |||
- | $IPTABLES --flush | ||
- | $IPTABLES -t nat --flush | ||
- | $IPTABLES -F -t mangle | ||
- | $IPTABLES -P INPUT ACCEPT | ||
- | $IPTABLES -P OUTPUT ACCEPT | ||
- | $IPTABLES -P FORWARD ACCEPT | ||
- | $IPTABLES -t nat -P POSTROUTING ACCEPT | ||
- | $IPTABLES -t nat -P PREROUTING ACCEPT | ||
- | $IPTABLES -t nat -P OUTPUT ACCEPT | ||
- | |||
- | / | ||
- | ;; | ||
- | |||
- | |||
- | status) | ||
- | $IPTABLES --list | ||
- | $IPTABLES -t nat --list | ||
- | $IPTABLES -t mangle --list | ||
- | ;; | ||
- | |||
- | |||
- | *) | ||
- | echo " | ||
- | exit 1 | ||
- | ;; | ||
- | |||
- | |||
- | |||
- | esac | ||
- | |||
- | exit 0· | ||
- | </ | ||
- | |||
iptables/basic_firewall.1476991206.txt.gz · Last modified: 2020/07/15 09:30 (external edit)