ipv6_is_in_range()

Learn how to use the ipv6_is_in_range() function to check if an IPv6 string address is in the Ipv6-prefix notation range.

Checks if an IPv6 string address is in the IPv6-prefix notation range.

Syntax

ipv6_is_in_range(Ipv6Address,Ipv6Range)

Parameters

NameTypeRequiredDescription
Ipv6Addressstring✔️An expression representing an IPv6 address.
Ipv6Rangestring✔️An expression representing an IPv6 range using IP-prefix notation.

Returns

  • true: If the long representation of the first IPv6 string argument is in range of the second IPv6 string argument.
  • false: Otherwise.
  • null: If conversion for one of the two IPv6 strings wasn’t successful.

Example

datatable(ip_address:string, ip_range:string)
[
 'a5e:f127:8a9d:146d:e102:b5d3:c755:abcd',    'a5e:f127:8a9d:146d:e102:b5d3:c755:0000/112',
 'a5e:f127:8a9d:146d:e102:b5d3:c755:abcd',    'a5e:f127:8a9d:146d:e102:b5d3:c755:abcd',
 'a5e:f127:8a9d:146d:e102:b5d3:c755:abcd',    '0:0:0:0:0:ffff:c0a8:ac/60',
]
| extend result = ipv6_is_in_range(ip_address, ip_range)

Output

ip_addressip_rangeresult
a5e:f127:8a9d:146d:e102:b5d3:c755:abcda5e:f127:8a9d:146d:e102:b5d3:c755:0000/112True
a5e:f127:8a9d:146d:e102:b5d3:c755:abcda5e:f127:8a9d:146d:e102:b5d3:c755:abcdTrue
a5e:f127:8a9d:146d:e102:b5d3:c755:abcd0:0:0:0:0:ffff:c0a8:ac/60False