Get IP Prefix Sequences
DescriptionGet the sequences of network addresses which can be generated from an IP Prefix.
“startingPrefixIpAddress”, “prefixLength” and “prefixCount” filters are required.
For Example: An IP Prefix with startingPrefixIpAddress 192.168.0.0 and prefixLength 30
and prefixCount 3 will result in generation of 3 sequences each with 4 IP addresses as:
192.168.0.0/30, 192.168.0.4/30 and 192.168.0.8/30
Filter example:(filter=startingPrefixIpAddress==192.168.0.0;prefixLength==30;prefixCount==3)
Request
URLURL
Query Parameters
Query Parameters
Filter for a query. FIQL format.
Authentication
Response
Response BodyResponse Body
200 OK
{
"lastSequence": "string",
"sequences": [
"string"
]
}
Last sequence which can be generated based on input values for IP Prefix.
Ordered list of IP prefix sequences which can be generated. Number of sequences will be limited to the first 10 sequences if specified prefixCount is greater than 10.