This is a discussion on Banning block of IP addresses in .htaccess within the Apache Web Server forums, part of the Web Server and Related Forums category; Alfred Molon wrote: > I'm familiar with the 'deny from' Apache directive: > > <Files .htaccess> > ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Alfred Molon wrote:
> I'm familiar with the 'deny from' Apache directive: > > <Files .htaccess> > order allow,deny > deny from all > </Files> > > order allow,deny > deny from a.b.c.d > > Now, how does the directive looks like if you want to ban the following > range of addresses: > > a.b.c.0 - a.b.c.127 ? deny from a.b.c.0/24 Above based on the fact that I use "allow from a.b.c.192/28" to allow access from our office. Jim |
|
|||
|
"Jim Hayter" <see.reply.to@nowhere.invalid> schreef in bericht
news:13ik3kusqjef58@news.supernews.com... >> Now, how does the directive looks like if you want to ban the following >> range of addresses: >> >> a.b.c.0 - a.b.c.127 ? > > deny from a.b.c.0/24 > I'ld rather say 'deny from a.b.c.0/25' -or 'deny from a.b.c.0/255.255.255.128' - http://httpd.apache.org/docs/2.2/mod...ost.html#allow HansH |
|
|||
|
HansH wrote:
> "Jim Hayter" <see.reply.to@nowhere.invalid> schreef in bericht > news:13ik3kusqjef58@news.supernews.com... >>> Now, how does the directive looks like if you want to ban the following >>> range of addresses: >>> >>> a.b.c.0 - a.b.c.127 ? >> deny from a.b.c.0/24 >> > I'ld rather say 'deny from a.b.c.0/25' > -or 'deny from a.b.c.0/255.255.255.128' - > http://httpd.apache.org/docs/2.2/mod...ost.html#allow > > HansH Good point (/25, not /24). I didn't read closely enough. Jim |
|
|||
|
I'm familiar with the 'deny from' Apache directive:
<Files .htaccess> order allow,deny deny from all </Files> order allow,deny deny from a.b.c.d Now, how does the directive looks like if you want to ban the following range of addresses: a.b.c.0 - a.b.c.127 ? -- Alfred Molon http://www.molon.de - Photos of Asia, Africa and Europe |
| Thread Tools | |
| Display Modes | |
|
|