Get Multicast Routes (v2.0)
GET/v2.0/api/tenants/:tenant_id/sites/:site_id/elements/:element_id/multicastroutes
List all the multicast routes.
Request
Path Parameters
tenant_id stringrequired
ID of the tenant.
site_id stringrequired
ID of the site.
element_id stringrequired
ID of the element.
Responses
- 200
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- Array [
- ]
- ]
count int32
The actual count.
id string
The ID.
tenant_id string
The tenant ID.
items MulticastRouteTableRequest[]
id string
The ID of the multicast config.
mroutes MulticastRoute[]required
Indicates how multicast traffic is routed to hosts in the network. Multicast routes are required and the number of routes should be less than 5K.
element_rp boolean
Interface or router configured as an (Rendezvous Point) RP in the network.
flags string
Flags for the multicast route table.
group string
The multicast group address.
incoming_interface string
The interface on which multicast traffic is received.
outgoing_interfaces string[]
The interfaces on which multicast traffic needs to be replicated.
rp_address string
he address of the Rendezvous Point (RP) in the network.
source string
The source address of multicast traffic in the network.
{
"count": 0,
"id": "string",
"tenant_id": "string",
"items": [
{
"id": "string",
"mroutes": [
{
"element_rp": true,
"flags": "string",
"group": "string",
"incoming_interface": "string",
"outgoing_interfaces": [
"string"
],
"rp_address": "string",
"source": "string"
}
]
}
]
}
Loading...