Skip to content
Please update to the latest release 0.77.2 to address Multiple CVEs.
cidr_contains

cidr_contains

Function
Arg Description Type
ip An IP address string (required)
ranges A list of CIDR notation network ranges list of string (required)

Description

Calculates if an IP address falls within a range of CIDR specified networks.

Example

SELECT cidr_contains(ip="192.168.0.132",
                     ranges=["192.168.0.0/24", "127.0.0.1/8"])
FROM scope()

See also

  • ip: Format an IP address.
  • geoip: Lookup an IP Address using the MaxMind GeoIP database.