Firewall with iptables
[Zurück zur aktuellen Version][Diese Version wiederherstellen]

Commands#

> ls -la /usr/sbin/ip*  # list all commands, there are many
> iptables*             # for ipv4 (in debian busters = nft)
> ip6tables*            # for ipv6 (in debian busters = nft)
> iptables-legacy       # former ones, not nft
> iptables-nft          # directly use nft
Notes:
> who -u                      # get all sessions with ip and pid
> sudo netstat -pantW         # list network connections, p=programs,a=all,n=IPs,t=tcp,W=wide(not truncate IP address) 
> ip a                        # list all ips

Logging#

> iptables -A INPUT -j LOG --log-level 4 --log-prefix 'IP INPUT '

Syntax#

see docu
> sudo ip6tables -L -v 
> sudo ip6tables -nvL                     # thjis is most compact
> sudo ip6tables -n -v --line-numbers -L  # list all ipv6 rules with numeric IPs and rule number
> sudo service ip6tables start		  # activate firewalling
> sudo chkconfig ip6tables on		  # enable after reboot
ip6tables [-t <table-name>] <command> <chain-name> <parameter-1>  <option-1> <parameter-n> <option-n>

Examples#

ip6tables -A INPUT -i eth0 -p tcp -s 2001:0db8:100::1/128 --sport 512:65535 --dport 22 -j ACCEPT #Allow incoming SSH from 2001:0db8:100::1/128 
ip6tables -A OUTPUT -o eth0 -p tcp -d 2001:0db8:100::1/128 --dport 512:65535 --sport 22 ! --syn -j ACCEPT  #Allow response packets (no longer needed if connection tracking is used!) 
ip6tables -I INPUT -i eth0 -p tcp --syn -j DROP     #Block incoming TCP connection requests to this host 
ip6tables -I FORWARD -i eth0 -p tcp --syn -j DROP   #Block incoming TCP connection requests to hosts behind this router 
ip6tables -I INPUT -i eth0 -p udp ! --dport 32768:60999 -j DROP     #Block incoming UDP packets which cannot be responses of outgoing requests of this host 
ip6tables -I FORWARD -i eth0 -p udp ! --dport 32768:60999 -j DROP   #Block incoming UDP packets which cannot be responses of forwarded requests of hosts behind this router
ip6tables -A INPUT --protocol icmpv6 --icmpv6-type echo-request -j ACCEPT --match limit --limit 30/minute   #Rate-limiting
-A RH-Firewall-1-INPUT -p icmpv6 -j ACCEPT
-A RH-Firewall-1-INPUT -p 50 -j ACCEPT
-A RH-Firewall-1-INPUT -p udp --dport 5353 -d ff02::fb -j ACCEPT
-A RH-Firewall-1-INPUT -p udp -m udp --dport 631 -j ACCEPT 
-A RH-Firewall-1-INPUT -p tcp -m tcp --dport 631 -j ACCEPT
-A RH-Firewall-1-INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
-A RH-Firewall-1-INPUT -m state --state NEW -p tcp --dport 22 -j ACCEPT
-A RH-Firewall-1-INPUT -j REJECT --reject-with icmp6-adm-prohibited

more {examples|https://www.linux.com/topic/networking/iptables-rules-ipv6/]

ipt6="/sbin/ip6tables"                    # Define your command variables
$ipt6 -A INPUT -i lo -j ACCEPT            # Must allow loopback interface
$ipt6 -A INPUT -p tcp --syn -j DROP       # Reject connection attempts not initiated from the host
$ipt6 -A INPUT -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT    # Allow return connections initiated from the host
$ipt6 -A INPUT -p icmpv6 -j ACCEPT        # Accept all ICMP v6 packets
# to services. Delete $ipt6 -A INPUT -p tcp --syn -j DROP    # Optional rules to allow other LAN hosts access 
$ipt6 -A INPUT -m state --state NEW -m udp -p udp            # Allow DHCPv6 from LAN only
-s fe80::/10 --dport 546 -j ACCEPT
$ipt6 -A INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT    # Allow connections from SSH clients
$ipt6 -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT    # Allow HTTP and HTTPS traffic 
$ipt6 -A INPUT -m state --state NEW -m tcp -p tcp --dport 443 -j ACCEPT    # Allow HTTP and HTTPS traffic 

My RuleSet#

This one is

#!/bin/bash

SOURCE=::

# ipv4 ------------------------------------
# Flush all rules and delete all chains for a clean startup
iptables -F
iptables -X
iptables -Z             # Zero out all counters

# enable dns nameserver
iptables -A INPUT  -s 1.1.1.1 -j ACCEPT    # cloudflare
iptables -A OUTPUT -d 1.1.1.1 -j ACCEPT
iptables -A INPUT  -s 8.8.8.8 -j ACCEPT    # google
iptables -A OUTPUT -d 8.8.8.8 -j ACCEPT

# connection
iptables -A INPUT  -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT
iptables -A OUTPUT -m conntrack --ctstate ESTABLISHED -j ACCEPT

# enable router for dhcp
iptables -A INPUT  -s 192.168.188.1/24 -j ACCEPT
iptables -A OUTPUT -d 192.168.188.1/24 -j ACCEPT

# enable dns
iptables -A INPUT  -p udp -m multiport --sport 53,67,68,90,135,853,5353,8245 -j ACCEPT
iptables -A OUTPUT -p udp -m multiport --dport 53,67,68,90,135,853,5353,8245 -j ACCEPT

#iptables -A INPUT  -i eth0 -p udp --dport 67:68 --sport 67:68 -j ACCEPT
#iptables -A INPUT  -i eth0 -p udp -m udp -m multiport --dports 67:68 -j ACCEPT
#iptables -A OUTPUT -o eth0 -p udp -m udp -m multiport --dports 67:68 -j ACCEPT

# enable dhcp
iptables -A INPUT  -i eth0 -p icmp -j ACCEPT
iptables -A OUTPUT -o eth0 -p icmp -j ACCEPT
iptables -A INPUT -i eth0 -p icmp -m icmp --icmp-type 134 -m comment --comment router-advertisement -j ACCEPT
iptables -A INPUT -p icmp -m icmp --icmp-type 135 -m comment --comment neighbor-solicitation -j ACCEPT
iptables -A INPUT -p icmp -m icmp --icmp-type 136 -m comment --comment neighbor-advertisement -j ACCEPT

# allow local loopback
iptables -A INPUT -i lo -j ACCEPT
iptables -A OUTPUT -o lo -j ACCEPT

# drop everything else
iptables -A INPUT   DROP
iptables -P FORWARD -j DROP
iptables -A OUTPUT  -j DROP

# ipv6 ------------------------------------
# Flush all rules and delete all chains for a clean startup
ip6tables -F
ip6tables -X
ip6tables -Z

# drop all ipv6 traffic, except special ipv6, see below
# do not limit to --dport 22, because the source has random ports (?)
# add first to enabel replacing 1. rule later

# placeholder for first device
ip6tables -A INPUT  -s $SOURCE -j ACCEPT
ip6tables -A OUTPUT -d $SOURCE -j ACCEPT

# placeholder for second device
ip6tables -A INPUT  -s $SOURCE -j ACCEPT
ip6tables -A OUTPUT -d $SOURCE -j ACCEPT

# placeholder for third device
ip6tables -A INPUT  -s $SOURCE -j ACCEPT
ip6tables -A OUTPUT -d $SOURCE -j ACCEPT


# dns nameserver
ip6tables -A INPUT  -s 2606:4700:4700::1111 -j ACCEPT    # cloudflare
ip6tables -A OUTPUT -d 2606:4700:4700::1111 -j ACCEPT
ip6tables -A INPUT  -s 2001:4860:4860::8888 -j ACCEPT    # google
ip6tables -A OUTPUT -d 2001:4860:4860::8888 -j ACCEPT

# connection
ip6tables -A INPUT  -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT
ip6tables -A OUTPUT -m conntrack --ctstate ESTABLISHED -j ACCEPT

# enable dhcp
ip6tables -A INPUT  -s fd94::/16 -j ACCEPT
ip6tables -A OUTPUT -d fd94::/16 -j ACCEPT
ip6tables -A INPUT  -s fe80::/16 -j ACCEPT
ip6tables -A OUTPUT -d fe80::/16 -j ACCEPT

# enable dns
ip6tables -A INPUT  -p udp -m multiport --sport 53,67,68,90,135,853,5353,8245 -j ACCEPT
ip6tables -A OUTPUT -p udp -m multiport --dport 53,67,68,90,135,853,5353,8245 -j ACCEPT

# enable dhcp
ip6tables -A INPUT -p  ipv6-icmp -j ACCEPT
ip6tables -A OUTPUT -p ipv6-icmp -j ACCEPT

#ip6tables -A INPUT -i eth0 -p ipv6-icmp -m icmp6 --icmpv6-type 134 -m comment --comment router-advertisement -j ACCEPT
#ip6tables -A INPUT -p ipv6-icmp -m icmp6 --icmpv6-type 135 -m comment --comment neighbor-solicitation -j ACCEPT
#ip6tables -A INPUT -p ipv6-icmp -m icmp6 --icmpv6-type 136 -m comment --comment neighbor-advertisement -j ACCEPT


# allow ipv6 local loopback
ip6tables -A INPUT -i lo -j ACCEPT
ip6tables -A OUTPUT -o lo -j ACCEPT

# drop everthing else
ip6tables -P FORWARD DROP               # as policy generally
ip6tables -A INPUT   -j DROP
ip6tables -A OUTPUT  -j DROP

# update first ip6tables rules and enable my computers
/home/markus/update_ip6tables.py

echo "---- iptables ----"
iptables -vnL
echo 
echo "---- ip6tables ----"
ip6tables -vnL