This topic describes the network address functions and operators supported by.
The IP network address types,cidr and inet, support the usual comparison operators as well as the specialized operators and functions.
Any cidr value can be cast to inet implicitly; therefore, the operators and functions shown below as operating on inet also work on cidr values. (Where there are separate functions for inet and cidr, it is because the behavior should be different for the two cases.) Also, it is permitted to cast an inet value to cidr. When this is done, any bits to the right of the netmask are silently zeroed to create a valid cidr value.
IP address operators
Is subnet strictly contained by subnet? This operator, and the next four, test for subnet inclusion. They consider only the network parts of the two addresses (ignoring any bits to the right of the netmasks) and determine whether one network is identical to or a subnet of the other.
|
Is subnet contained by or equal to subnet?
|
Does subnet strictly contain subnet?
|
Does subnet contain or equal subnet?
|
Does either subnet contain or equal the other?
|
Computes bitwise NOT.
|
Computes bitwise AND.
|
Computes bitwise OR.
|
Adds an offset to an address.
|
Adds an offset to an address.
|
Subtracts an offset from an address.
|
Computes the difference of two addresses.
|
IP address functions
Creates an abbreviated display format as text. (The result is the same as the
|
Creates an abbreviated display format as text. (The abbreviation consists of dropping all-zero octets to the right of the netmask.)
|
Computes the broadcast address for the address's network.
|
Returns the address's family:
|
Returns the IP address as text, ignoring the netmask.
|
Computes the host mask for the address's network.
|
Computes the smallest network that includes both of the given networks.
|
Tests whether the addresses belong to the same IP family.
|
Returns the netmask length in bits.
|
Computes the network mask for the address's network.
|
Returns the network part of the address, zeroing out whatever is to the right of the netmask. (This is equivalent to casting the value to
|
Sets the netmask length for an
|
Sets the netmask length for a
|
Returns the unabbreviated IP address and netmask length as text. (This has the same result as an explicit cast to
|
The abbrev,host, and text functions are primarily intended to offer alternative display formats for IP addresses.
The MAC address types,macaddr and macaddr8, support the usual comparison operators as well as the specialized functions. In addition, they support the bitwise logical operators ~,& and |(NOT, AND and OR), just as shown above for IP addresses.
MAC address functions
Sets the last 3 bytes of the address to zero. The remaining prefix can be associated with a particular manufacturer (using data not included inPostgreSQL).
|
Sets the last 5 bytes of the address to zero. The remaining prefix can be associated with a particular manufacturer (using data not included inPostgreSQL).
|
Sets the 7th bit of the address to one, creating what is known as modified EUI-64, for inclusion in an IPv6 address.
|