Get BGP Reachable Prefix Information (v2.1)
GET/v2.1/api/tenants/:tenant_id/sites/:site_id/elements/:element_id/bgppeers/:bgp_peer_config_id/reachableprefixes
Get BGP reachable prefix information.
Request
Path Parameters
ID of the tenant.
The ID of the site.
The ID of the element.
The BGP peer config ID.
Responses
- 200
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
- Array [
- ]
- Array [
- ]
- Array [
- ]
filtered_ipv4_prefixes PrefixInfo[]
The filtered IPv4 prefixes for the BGP peer.
The AS path of the IPv4/IPv6 prefix.
The network of the IPv4/IPv6 prefix.
The next-hop of the IPv4/IPv6 prefix.
The filtered IPv4 prefixes count for the BGP peer.
filtered_ipv6_prefixes PrefixInfo[]
The filtered IPv6 prefixes for the BGP peer.
The AS path of the IPv4/IPv6 prefix.
The network of the IPv4/IPv6 prefix.
The next-hop of the IPv4/IPv6 prefix.
The filtered IPv6 prefixes count for the BGP peer.
The ID of the BGP peer.
reachable_ipv4_prefixes PrefixInfo[]
The reachable IPv4 prefixes for the BGP peer.
The AS path of the IPv4/IPv6 prefix.
The network of the IPv4/IPv6 prefix.
The next-hop of the IPv4/IPv6 prefix.
The reachable IPv4 prefixes count for the BGP peer.
reachable_ipv6_prefixes PrefixInfo[]
The reachable IPv6 prefixes for the BGP peer.
The AS path of the IPv4/IPv6 prefix.
The network of the IPv4/IPv6 prefix.
The next-hop of the IPv4/IPv6 prefix.
The reachable IPv6 prefixes count for the BGP peer.
{
"filtered_ipv4_prefixes": [
{
"as_path": [
0
],
"network": "string",
"nexthop": "string"
}
],
"filtered_ipv4_prefixes_count": 0,
"filtered_ipv6_prefixes": [
{
"as_path": [
0
],
"network": "string",
"nexthop": "string"
}
],
"filtered_ipv6_prefixes_count": 0,
"id": "string",
"reachable_ipv4_prefixes": [
{
"as_path": [
0
],
"network": "string",
"nexthop": "string"
}
],
"reachable_ipv4_prefixes_count": 0,
"reachable_ipv6_prefixes": [
{
"as_path": [
0
],
"network": "string",
"nexthop": "string"
}
],
"reachable_ipv6_prefixes_count": 0
}