#!/bin/tcsh
# ---------------------------------------------
# Programm

set IPTABLES = /usr/sbin/iptables

# ---------------------------------------------
# Default Policy rücksetzen

$IPTABLES -P INPUT   ACCEPT
$IPTABLES -P FORWARD ACCEPT
$IPTABLES -P OUTPUT  ACCEPT

# ---------------------------------------------
# Flush aller Chains, Löschen aller User-Chains

$IPTABLES -F
$IPTABLES -X

exit 0

