#!/bin/sh # # fw-off.sh # # Developed by Ondrej Jombik # Copyright (c) 2003 Platon SDG, http://platon.sk/ # Licensed under terms of GNU General Public License. # All rights reserved. # # Changelog: # 10/01/2002 - created # 02/08/2003 - import into CVS # 09/08/2006 - enhanced by Lubomir Host 'rajo' - simplification of rules removal # # $Platon: scripts/shell/firewall/fw-off.sh,v 1.1 2003/08/03 14:11:32 nepto Exp $ IPTABLES="/sbin/iptables" for chain in INPUT OUTPUT FORWARD; do $IPTABLES -t filter -P $chain ACCEPT done for chain in PREROUTING POSTROUTING OUTPUT; do $IPTABLES -t nat -P $chain ACCEPT done for chain in PREROUTING INPUT FORWARD OUTPUT POSTROUTING; do $IPTABLES -t mangle -P $chain ACCEPT done for table in filter nat mangle; do iptables -F -t $table iptables -X -t $table done