#!/bin/bash if [ "$1" = "" ]; then echo "drop out of a specific ip's sight until firewall restart" echo "usage: $0 " else iptables -I INPUT -i eth1 -s $1 -d 0/0 -j DROP fi