#!/bin/csh -f # ipblock # ----------------------------------------------------------------------------- # Shell script to unblock an IP address, reversing the effect of ipblock. # ----------------------------------------------------------------------------- # Usage: See Usage section below or run with -h or --help option to see usage. # Assumptions: # Effects: # Notes: # Implementation Notes: # Portability Issues: # Revision History: # $Log$ # ----------------------------------------------------------------------------- if ("$1" == "" || "$1" == "-h" || "$1" == "--help") then echo "Usage: $0:t [-p] IP_Address" echo "-p = Permanent (not just till next re-boot)" exit 1 endif ipblock -D $*:q