Welcome! Log In Create A New Profile

Advanced

Re: Limit IPv4/24 connections

Valentin V. Bartenev
January 14, 2012 09:08AM
On Saturday 14 January 2012 17:27:53 double wrote:
> Hello,
>
> I would like to limit the connections to 100 per 255.255.255.0
> Is there a chance e.g. to zero the last byte of "$binary_remote_addr"?
>
> Something like:
> set $remote_addr_24 "/$remote_addr/\.[0-9]*$/.0/"
> limit_zone connectiontrack $remote_addr_24 16m;
> limit_conn connectiontrack 100;
>

# this captures only first 3 bytes of $binary_remote_addr:

if ($binary_remote_addr ~ "^(\C{3})") {
set $remote_addr_24 $1;
}


wbr, Valentin V. Bartenev

_______________________________________________
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
Subject Author Posted

Limit IPv4/24 connections

double January 14, 2012 08:20AM

Re: Limit IPv4/24 connections

Valentin V. Bartenev January 14, 2012 09:08AM

Re: Limit IPv4/24 connections

Valentin V. Bartenev January 14, 2012 09:12AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 226
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready