ipv4_netmask_suffix()
Learn how to use the ipv4_netmask_suffix() function to return the value of the IPv4 netmask suffix from an IPv4 string address.
Returns the value of the IPv4 netmask suffix from an IPv4 string address.
Syntax
ipv4_netmask_suffix(
ip)
Parameters
Name | Type | Required | Description |
---|---|---|---|
ip | string | ✔️ | An expression representing an IPv4 address. IPv4 strings can be masked using IP-prefix notation. |
Returns
- The value of the netmask suffix the IPv4 address. If the suffix isn’t present in the input, a value of
32
(full netmask suffix) is returned. null
: If parsing the input as an IPv4 address string wasn’t successful.
Example: Resolve IPv4 mask suffix
datatable(ip_string:string)
[
'10.1.2.3',
'192.168.1.1/24',
'127.0.0.1/16',
]
| extend cidr_suffix = ipv4_netmask_suffix(ip_string)
Output
ip_string | cidr_suffix |
---|---|
10.1.2.3 | 32 |
192.168.1.1/24 | 24 |
127.0.0.1/16 | 16 |
Related content
- Overview of IPv4/IPv6 functions
- Overview of IPv4 text match 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.