IP adrss and networks in Postgresql

Started by NTPTabout 22 years ago2 messagesgeneral
Jump to latest
#1NTPT
ntpt@centrum.cz

I need to do some "IP address based guessing" what should happen inside my application.Ie if given ip adress is from network 'foo' do something, if given IP adrss is from network 'bar', do something else.

So I need to set up table with network definitions like this :

create table network_rules (network inet, rules text )

let's assume that I fill it with the definition of network or hosts.For example like this

10.0.0.1/24
192.168.0.1/24
192.168.0.128/25
192.168.0.200/32 (single host)

Now i have given *some* ip adress and I need to create a SELECT that return all networks with given ip adress belongs to , ordered by netmask, most accurate (ie more bits in netmask set ) first.

Is it possible with postgres and inet datatype ? I have no idea how to do that. Please help.

#2Tom Lane
tgl@sss.pgh.pa.us
In reply to: NTPT (#1)
Re: IP adrss and networks in Postgresql

"NTPT" <ntpt@centrum.cz> writes:

I need to do some "IP address based guessing" what should happen inside my application.Ie if given ip adress is from network 'foo' do something, if given IP adrss is from network 'bar', do something else.
So I need to set up table with network definitions like this :

create table network_rules (network inet, rules text )

Most likely you want to declare the network column as 'cidr' not 'inet',
so that the datatype will enforce that it's a valid network spec. I
can't imagine any case where you'd want bits set to the right of the
netmask in this table.

Now i have given *some* ip adress and I need to create a SELECT that return all networks with given ip adress belongs to , ordered by netmask, most accurate (ie more bits in netmask set ) first.

Is it possible with postgres and inet datatype ?

Sure. The contains-or-equals operator selects the rows you want
(network >>= 'target-ip') and you can order by masklen(network).

regards, tom lane