ipv6_is_in_any_range()
Learn how to use the ipv6_is_in_any_range function to check if an IPv6 string address is in any of the IPv6 address ranges.
Checks whether an IPv6 string address is in any of the specified IPv6 address ranges.
Performance tips
Syntax
ipv6_is_in_any_range(
Ipv6Address ,
Ipv6Range [ ,
Ipv6Range …] )
ipv6_is_in_any_range(
Ipv6Address ,
Ipv6Ranges )
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. |
Ipv6Ranges | dynamic | ✔️ | An array containing IPv6 ranges using IP-prefix notation. |
Returns
true
: If the IPv6 address is in the range of any of the specified IPv6 networks.false
: Otherwise.null
: If conversion for one of the two IPv6 strings wasn’t successful.
Example
let LocalNetworks=dynamic([
"a5e:f127:8a9d:146d:e102:b5d3:c755:f6cd/112",
"0:0:0:0:0:ffff:c0a8:ac/60"
]);
let IPs=datatable(IP:string) [
"a5e:f127:8a9d:146d:e102:b5d3:c755:abcd",
"a5e:f127:8a9d:146d:e102:b5d3:c755:abce",
"a5e:f127:8a9d:146d:e102:b5d3:c755:abcf",
"a5e:f127:8a9d:146d:e102:b5d3:c756:abd1",
];
IPs
| extend IsLocal=ipv6_is_in_any_range(IP, LocalNetworks)
Output
IP | IsLocal |
---|---|
a5e:f127:8a9d:146d:e102:b5d3:c755:abcd | True |
a5e:f127:8a9d:146d:e102:b5d3:c755:abce | True |
a5e:f127:8a9d:146d:e102:b5d3:c755:abcf | True |
a5e:f127:8a9d:146d:e102:b5d3:c756:abd1 | 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.