Removing old directory, not really needed, since if you really must have the code, you can get it out of svn

master
bbruns@gmail.com 2010-09-25 00:02:57 +00:00
parent 8ea19124e6
commit e5d681caf1
1 changed files with 0 additions and 38 deletions

View File

@ -1,38 +0,0 @@
#!/bin/sh
BASEDIR=/etc/firewall-sosdg
#BASEDIR=`pwd`
. $BASEDIR/options
$IPTABLES --policy INPUT ACCEPT
$IPTABLES --policy OUTPUT ACCEPT
$IPTABLES --policy FORWARD ACCEPT
$IPTABLES --flush &>/dev/null
$IPTABLES -F OUTPUT &>/dev/null
$IPTABLES -F PREROUTING &>/dev/null
$IPTABLES -F POSTROUTING &>/dev/null
$IPTABLES -F -t mangle &>/dev/null
if [ $NAT ]; then
$IPTABLES -F -t nat &>/dev/null
fi
$IPTABLES -F -t raw &>/dev/null
if [ -s "$BASEDIR/include/ipv4_custom_flush" ]; then
. "$BASEDIR/include/ipv4_custom_flush"
fi
if [ $IPV6 ]; then
$IP6TABLES --policy INPUT ACCEPT
$IP6TABLES --policy OUTPUT ACCEPT
$IP6TABLES --policy FORWARD ACCEPT
$IP6TABLES --flush &>/dev/null
$IP6TABLES -F OUTPUT &>/dev/null
$IP6TABLES -F PREROUTING &>/dev/null
$IP6TABLES -F POSTROUTING &>/dev/null
if [ -s "$BASEDIR/include/ipv6_custom_flush" ]; then
. "$BASEDIR/include/ipv6_custom_flush"
fi
fi
exit 0