Network Address Data Types

PostgreSQL offers data types to store IP and MAC addresses. It is preferable to use these types over plain text types, because these types offer input error checking and several specialized operators and functions.

Table 2-21. Network Address Data Types

NameStorageDescriptionRange
inet12 bytesIP hosts and networksvalid IPv4 hosts or networks
cidr12 bytesIP networksvalid IPv4 networks
macaddr6 bytesMAC addressescustomary formats

Note

IP v6 is not supported, yet.

inet

The inet type holds an IP host address, and optionally the identity of the subnet it is in, all in one field. The subnet identity is represented by the number of bits in the network part of the address (the "netmask"). If the netmask is 32, then the value does not indicate a subnet, only a single host. Note that if you want to accept networks only, you should use the cidr type rather than inet.

The input format for this type is x.x.x.x/y where x.x.x.x is an IP address and y is the number of bits in the netmask. If the /y part is left off, then the netmask is 32, and the value represents just a single host. On display, the /y portion is suppressed if the netmask is 32.

cidr

The cidr type holds an IP network specification. Input and output formats follow Classless Internet Domain Routing conventions. The format for specifying classless networks is x.x.x.x/y where x.x.x.x is the network and y is the number of bits in the netmask. If y is omitted, it is calculated using assumptions from the older classful numbering system, except that it will be at least large enough to include all of the octets written in the input.

Here are some examples:

inet versus cidr

The essential difference between inet and cidr data types is that inet accepts values with nonzero bits to the right of the netmask, whereas cidr does not.

Tip

If you do not like the output format for inet or cidr values, try the host(), text(), and abbrev() functions.

macaddr

The macaddr type stores MAC addresses, (that is, Ethernet card hardware addresses (although MAC addresses are used for other purposes as well)). Input is accepted in various customary formats, including:

'08002b:010203'
'08002b-010203'
'0800.2b01.0203'
'08-00-2b-01-02-03'
'08:00:2b:01:02:03'

which would all specify the same address. (Upper and lower case is accepted for the hex digits a through f. Output is always in the latter form.)

The directory contrib/mac in the source distribution contains tools that can be used to map MAC addresses to hardware manufacturer names.