#!/bin/bash #Copyright 2003 William Stearns #Released under the GPL. Me='blockfwdports' MyVersion='0.3.3' DefaultActions='DROP' [ -r /etc/firebricks/firebricks.conf ] && . /etc/firebricks/firebricks.conf [ -r /etc/firebricks/$Me.conf ] && . /etc/firebricks/$Me.conf [ -r ${FBLibDir:-'/usr/lib/firebricks/'}/firebrickslib ] && . ${FBLibDir:-'/usr/lib/firebricks/'}/firebrickslib if [ -z "$FBLibVer" ]; then echo 'It looks like firebrickslib was not loaded, why? Exiting' >&2 exit 1 fi for OneTask in $Tasks ; do case "$OneTask" in link) $IptablesBin -N $Me >/dev/null 2>&1 $IptablesBin $AppIn FORWARD -j $Me ;; unlink) $IptablesBin -D FORWARD -j $Me $IptablesBin -X $Me >/dev/null 2>&1 ;; create) echo "Starting $Me" >&2 FlushOrNewChain $Me if [ -z "$BlockFwdTcpPorts$BlockFwdUdpPorts" ]; then echo "Warning: No ports specified to block in $Me." >&2 echo "Please set in /etc/firebricks/firebricks.conf or" >&2 echo "/etc/firebricks/$Me.conf" >&2 else for OnePort in $BlockFwdTcpPorts ; do LogAs='BlockTcp' $Ipt -A -p tcp --dport $OnePort $Tail done for OnePort in $BlockFwdUdpPorts ; do LogAs='BlockUdp' $Ipt -A -p udp --dport $OnePort $Tail done fi ;; destroy) echo "Stopping $Me" >&2 DestroyChain $Me ;; renamechain) TempChain="$Me-$RANDOM" echo "Replacing existing rules in $Me with new rules" >&2 $IptablesBin -E $Me $TempChain ;; replacelinks) if [ -z "$TempChain" ]; then echo "No temporary chain to relink in $Me replacelinks, replace operation incomplete." >&2 elif ! $IptablesBin -L $Me -n >/dev/null 2>&1 ; then echo "No $Me chain in $Me, replace operation incomplete." >&2 elif ! $IptablesBin -L $TempChain -n >/dev/null 2>&1 ; then echo "No $TempChain chain in $Me, replace operation incomplete." >&2 elif [ "`$IptablesBin -L FORWARD -n --line-numbers | grep $TempChain | wc -l`" -ne 1 ]; then echo "Too few/many references to $TempChain in FORWARD in $Me replacelinks, replace operation incomplete." >&2 else $IptablesBin -R FORWARD `$IptablesBin -L FORWARD -n --line-numbers | grep $TempChain | awk '{print $1}'` -j $Me DestroyChain $TempChain unset TempChain fi ;; status) if $IptablesBin -L $Me -n >/dev/null 2>&1 ; then echo "$Me created" >&2 else echo "$Me destroyed" >&2 fi ;; version) echo "$Me $MyVersion, firebrickslib $FBLibVer" >&2 ;; help) DefaultHelp cat <&2 The $Me module puts in blocks for services that should never be forwarded through this firewall. The ports to block are set in /etc/firebricks/blockfwdports.conf . This module should be safe to use on any network, but you will have to decide what services are appropriate to block. EOTEXT ;; *) echo "Unknown action $Action in $Me, no action taken." >&2 ;; esac done