]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blobdiff - config/guardian/guardian_unblock.sh
Delayed the mISDN stuff to core 14.
[people/pmueller/ipfire-2.x.git] / config / guardian / guardian_unblock.sh
index ed14d96b9f6c61cd735864ac6ec1f9af2fd5107a..5e0b379037d82ff7b060d9ee1ff4d95c648d3496 100644 (file)
@@ -2,9 +2,8 @@
 
 # this is a sample unblock script for guardian. This should work with ipchains. 
 # This command gets called by guardian as such:
-#  unblock.sh <source_ip> <interface>
+#  unblock.sh <source_ip>
 # and the script will issue a command to remove the block that was created with # block.sh address. 
 source=$1
-interface=$2
 
-/sbin/iptables -D INPUT -s $source -i $interface -j DROP
+/sbin/iptables -D INPUT -s $source -j DROP