#!/bin/bash
#

## Firewall Script
#  01-07-26  by Erik Wegner
#  fw-final
#

# Pfad zu IPTables
if test -z $IPTABLES ; then
	IPTABLES=/usr/sbin/iptables
fi

echo -e "\n# Ausputzer"
echo "$IPTABLES -A INPUT -j my_drop"
echo "$IPTABLES -A FORWARD -j my_drop"
echo "$IPTABLES -A OUTPUT -j my_drop"

