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
Name | Type | Required | Description |
---|---|---|---|
Ipv6Address | string | ✔️ | An expression representing an IPv6 address. |
Ipv6Range | string | ✔️ | 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_address | ip_range | result |
---|---|---|
a5e:f127:8a9d:146d:e102:b5d3:c755:abcd | a5e:f127:8a9d:146d:e102:b5d3:c755:0000/112 | True |
a5e:f127:8a9d:146d:e102:b5d3:c755:abcd | a5e:f127:8a9d:146d:e102:b5d3:c755:abcd | True |
a5e:f127:8a9d:146d:e102:b5d3:c755:abcd | 0:0:0:0:0:ffff:c0a8:ac/60 | False |
Related content
- Overview of IPv4/IPv6 functions
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.