[OpenSER-Users] match src_ip

Jan ONDREJ (SAL) ondrejj at salstar.sk
Thu Jan 31 07:58:43 CET 2008


Hello,

On Thu, Jan 31, 2008 at 07:46:25AM +0100, Andreas Heise wrote:
> I search for a simple way to match src_ip from 192.168.1.6 - 192.168.1.11.
> 
> Any ideas, the following aren't working :-( ...
> 
>  if(src_ip==192.168.1.[6-11])
>  if(src_ip==192.168.1.[6|7|8|9|10|11])

You can use src_ip matching with subnet/mask syntax:

  src_ip==192.168.1.8/30    # matched ips 8,9,10,11

You just need to split your IPs into subnet ranges and then enumerate them
with "||" (or).

		SAL




More information about the Users mailing list