Get Site Local Prefix Set (v2.0)
GET/v2.0/api/tenants/:tenant_id/sites/:site_id/localprefixset
List the site local prefix set.
Request
Path Parameters
tenant_id stringrequired
ID of the tenant.
site_id stringrequired
The ID of the site.
Responses
- 200
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- ]
- Array [
- ]
- Array [
- ]
- ]
local_networks LocalNetwork[]
The details of the local networks prefix sets.
prefix_set Network[]
The valid local prefix set for the site.
gateway string
The network gateway.
ipv4_prefix string
The IPv4 address prefix.
prefix_set_v6 NetworkV6[]
The v6 prefix set for the site.
gateway string
The network gateway.
ipv6_prefix string
The IPv6 address prefix.
security_policies SecurityPolicy[]
The details of the security policy.
action Action
The action to allow, deny, or reject traffic based on the security intent of the enterprise.
object
app_ids string[]
The App IDs.
direction Direction
The direction of the traffic.
object
vlan_id int32
The vlan ID.
vrf_context_id string
The VRF (Virtual Routing and Forwarding) ID.
{
"local_networks": [
{
"prefix_set": [
{
"gateway": "string",
"ipv4_prefix": "string"
}
],
"prefix_set_v6": [
{
"gateway": "string",
"ipv6_prefix": "string"
}
],
"security_policies": [
{
"action": {},
"app_ids": [
"string"
],
"direction": {}
}
],
"vlan_id": 0,
"vrf_context_id": "string"
}
]
}
Loading...