S'cool ... okay ...
1) If you have root access to the server you can simply add this to the end of whatever is in /etc/hosts.deny:
where "IP.ADD.RE.SS" is the offender's IP address.
2) You're probably running PHP, so you can probably include a header file in your pages that will effect the ban:
Code:
<?php
if ($_SERVER['REMOTE_ADDR']=='IP.ADD.RE.SS') {
header("Location: http://www.fbi.gov");
exit;
}
?>
You don't need both of these ... either one will do.