xenneo
Jun 4 2004, 02:07 PM
Is there a way in Web Host Manager to block entire ranges of IP Addresses? If so how?
Not that I know of but APF will do the trick.
xenneo
Jun 4 2004, 04:48 PM
this is a very noob question so forgive me please. What is APF?
xerophyte
Jun 4 2004, 06:30 PM
Or
You can use the iptable to block the IP
iptables -A INPUT -s IP_address -j DROP
if you want to block subnet
iptables -A INPUT -s x.x.x.0/24 -j DROP
which will block that ip address, if you reboot the server the iptables rules will be flushed, please make boot script to get rule for the nex reboot.
hope that helps