Forum Moderators: phranque
Im trying to prevent an IP block from gaining access to a server. The block is from something like: 123.0.0.0 - 123.255.255.255
Ive done it individually via .htaccess as such:
<Limit GET POST>
order allow,deny
deny from 123.111.111.11
deny from 123.111.111.12
deny from 123.111.111.13
allow from all
</Limit>
is there an easy way to deny access to the whole group?
thanks!