show bgp paths
show bgp paths
import json
"""
Modify these please
"""
url='http://<IP_Address>/ins'
switchuser='<User_ID>'
switchpassword='<Password>'
myheaders={'content-type':'application/json'}
payload={
"ins_api":{
"version": "1.0",
"type": "cli_show",
"chunk": "0",
"sid": "1",
"input": "show bgp paths",
"output_format": "json"
}
response = requests.post(url,data=json.dumps(payload), headers=myheaders,auth=(switchuser,switchpassword)).json()
output = json.dumps(response, indent=4, sort_keys=True)
{
"ins_api": {
"type": "cli_show",
"version": "1.0",
"sid": "eoc",
"outputs": {
"output": {
"input": "show bgp paths",
"msg": "Success",
"code": "200",
"body": {
"TABLE_id": {
"ROW_id": [
{
"id": "0x7539c21c",
"hashvalue": "51",
"refcount": "3",
"metric": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i"
},
{
"id": "0x7539c9d8",
"hashvalue": "523",
"refcount": "3",
"metric": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i"
},
{
"id": "0x7539c954",
"hashvalue": "559",
"refcount": "1",
"metric": "0",
"aspath": null,
"origin": "i"
},
{
"id": "0x7539c63c",
"hashvalue": "653",
"refcount": "1",
"metric": "0",
"aspath": "2 3 4",
"origin": "i"
},
{
"id": "0x7539c84c",
"hashvalue": "661",
"refcount": "1",
"metric": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
},
{
"id": "0x7539c7c8",
"hashvalue": "665",
"refcount": "3",
"metric": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
},
{
"id": "0x7539c534",
"hashvalue": "665",
"refcount": "1",
"metric": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
},
{
"id": "0x7539c2a0",
"hashvalue": "701",
"refcount": "2",
"metric": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i"
},
{
"id": "0x7539c5b8",
"hashvalue": "871",
"refcount": "2",
"metric": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i"
},
{
"id": "0x7539c42c",
"hashvalue": "1157",
"refcount": "1",
"metric": "0",
"aspath": "2 3 4",
"origin": "i"
},
{
"id": "0x7539c4b0",
"hashvalue": "1228",
"refcount": "1",
"metric": "2222",
"aspath": "1 2 3 65000 23",
"origin": "i"
},
{
"id": "0x7539c8d0",
"hashvalue": "1285",
"refcount": "3",
"metric": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i"
},
{
"id": "0x7539c6c0",
"hashvalue": "1730",
"refcount": "2",
"metric": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i"
},
{
"id": "0x7539cae0",
"hashvalue": "2009",
"refcount": "1",
"metric": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
},
{
"id": "0x7539cc6c",
"hashvalue": "2111",
"refcount": "2",
"metric": "0",
"aspath": null,
"origin": "?"
},
{
"id": "0x7539cb64",
"hashvalue": "2223",
"refcount": "3",
"metric": "0",
"aspath": null,
"origin": "?"
},
{
"id": "0x7539c198",
"hashvalue": "2249",
"refcount": "2",
"metric": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
},
{
"id": "0x7539cbe8",
"hashvalue": "2303",
"refcount": "3",
"metric": "0",
"aspath": null,
"origin": "?"
},
{
"id": "0x7539c324",
"hashvalue": "2431",
"refcount": "1",
"metric": "4444",
"aspath": "3 4 5 6",
"origin": "i"
},
{
"id": "0x7539ca5c",
"hashvalue": "2543",
"refcount": "2",
"metric": "4444",
"aspath": "3 10 20 30",
"origin": "i"
},
{
"id": "0x7539c3a8",
"hashvalue": "2757",
"refcount": "2",
"metric": "4444",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i"
},
{
"id": "0x7539c744",
"hashvalue": "3363",
"refcount": "1",
"metric": "4444",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
]
}
}
}
}
}
}
The CLI output example below corresponds to the payload example in the code pane on the right. For more information about the show bgp paths command, see the CLI command reference:
Note: This example was added in Cisco NX-OS Release 9.2(1).
CLI Output |
---|
|
show bgp peer-template PEER_TEMPLATE-ONE
show bgp peer-template PEER_TEMPLATE-ONE
import json
"""
Modify these please
"""
url='http://<IP_Address>/ins'
switchuser='<User_ID>'
switchpassword='<Password>'
myheaders={'content-type':'application/json'}
payload={
"ins_api":{
"version": "1.0",
"type": "cli_show",
"chunk": "0",
"sid": "1",
"input": "show bgp peer-template PEER_TEMPLATE-ONE",
"output_format": "json"
}
response = requests.post(url,data=json.dumps(payload), headers=myheaders,auth=(switchuser,switchpassword)).json()
output = json.dumps(response, indent=4, sort_keys=True)
{
"ins_api": {
"type": "cli_show",
"version": "1.0",
"sid": "eoc",
"outputs": {
"output": {
"input": "show bgp peer-template PEER_TEMPLATE-ONE",
"msg": "Success",
"code": "200",
"body": {
"TABLE_neighbor": {
"ROW_neighbor": {
"templatepeer": "PEER_TEMPLATE-ONE",
"ttlsecurity": "false",
"passiveonly": "false",
"localas-inactive": "false",
"remove-privateas": "false",
"TABLE_peraf": {
"ROW_peraf": [
{
"per-afi": "1",
"TABLE_persaf": {
"ROW_persaf": {
"per-safi": "5",
"per-af-name": "IPv4 MVPN",
"insoftreconfigallowed": "false",
"thirdpartynexthop": "false",
"asoverride": "false",
"peerascheckdisabled": "false",
"rrconfigured": "false",
"defaultoriginate": "false",
"lasteorsenttime": "P1DT22H11M13S",
"firstconvgtime": "P1DT22H11M13S",
"pfxsentfirsteor": "0"
}
}
},
{
"per-afi": "2",
"TABLE_persaf": {
"ROW_persaf": {
"per-safi": "5",
"per-af-name": "IPv6 MVPN",
"insoftreconfigallowed": "false",
"thirdpartynexthop": "false",
"asoverride": "false",
"peerascheckdisabled": "false",
"rrconfigured": "false",
"defaultoriginate": "false",
"lasteorsenttime": "P1DT22H11M13S",
"firstconvgtime": "P1DT22H11M13S",
"pfxsentfirsteor": "0"
}
}
}
]
},
"TABLE_vrf": {
"ROW_vrf": [
{
"vrf-name": "default"
},
{
"vrf-name": "vpn1"
},
{
"vrf-name": "vpn2"
}
]
}
}
}
}
}
}
}
}
The CLI output example below corresponds to the payload example in the code pane on the right. For more information about the show bgp peer-template PEER_TEMPLATE-ONE command, see the CLI command reference:
Note: This example was added in Cisco NX-OS Release 9.2(1).
CLI Output |
---|
|
show bgp peer-session PEER_SESSION_TEMPLATE-ONE
show bgp peer-session PEER_SESSION_TEMPLATE-ONE
import json
"""
Modify these please
"""
url='http://<IP_Address>/ins'
switchuser='<User_ID>'
switchpassword='<Password>'
myheaders={'content-type':'application/json'}
payload={
"ins_api":{
"version": "1.0",
"type": "cli_show",
"chunk": "0",
"sid": "1",
"input": "show bgp peer-session PEER_SESSION_TEMPLATE-ONE",
"output_format": "json"
}
response = requests.post(url,data=json.dumps(payload), headers=myheaders,auth=(switchuser,switchpassword)).json()
output = json.dumps(response, indent=4, sort_keys=True)
{
"ins_api": {
"type": "cli_show",
"version": "1.0",
"sid": "eoc",
"outputs": {
"output": {
"input": "show bgp peer-session PEER_SESSION_TEMPLATE-ONE",
"msg": "Success",
"code": "200",
"body": {
"TABLE_template": {
"ROW_template": {
"template": "PEER_SESSION_TEMPLATE-ONE",
"present": "true",
"TABLE_command": {
"ROW_command": [
{
"command": "Timers",
"polarity": "true"
},
{
"command": "Remote AS",
"polarity": "true"
}
]
}
}
}
}
}
}
}
}
The CLI output example below corresponds to the payload example in the code pane on the right. For more information about the show bgp peer-session PEER_SESSION_TEMPLATE-ONE command, see the CLI command reference:
Note: This example was added in Cisco NX-OS Release 9.2(1).
CLI Output |
---|
|
show bgp peer-policy POLICY-TEMPLATE-TWO
show bgp peer-policy POLICY-TEMPLATE-TWO
import json
"""
Modify these please
"""
url='http://<IP_Address>/ins'
switchuser='<User_ID>'
switchpassword='<Password>'
myheaders={'content-type':'application/json'}
payload={
"ins_api":{
"version": "1.0",
"type": "cli_show",
"chunk": "0",
"sid": "1",
"input": "show bgp peer-policy POLICY-TEMPLATE-TWO",
"output_format": "json"
}
response = requests.post(url,data=json.dumps(payload), headers=myheaders,auth=(switchuser,switchpassword)).json()
output = json.dumps(response, indent=4, sort_keys=True)
{
"ins_api": {
"type": "cli_show",
"version": "1.0",
"sid": "eoc",
"outputs": {
"output": {
"input": "show bgp peer-policy POLICY-TEMPLATE-TWO",
"msg": "Success",
"code": "200",
"body": {
"TABLE_template": {
"ROW_template": {
"template": "POLICY-TEMPLATE-TWO",
"present": "true",
"TABLE_command": {
"ROW_command": {
"command": "Weight",
"polarity": "true"
}
},
"TABLE_vrf": {
"ROW_vrf": {
"vrf-name": "default",
"TABLE_peer": {
"ROW_peer": {
"inheritingpeer": "19.0.103.20"
}
}
}
}
}
}
}
}
}
}
}
The CLI output example below corresponds to the payload example in the code pane on the right. For more information about the show bgp peer-policy POLICY-TEMPLATE-TWO command, see the CLI command reference:
Note: This example was added in Cisco NX-OS Release 9.2(1).
CLI Output |
---|
|
show bgp vrf all all neighbors 19.0.101.1
show bgp vrf all all neighbors 19.0.101.1
import json
"""
Modify these please
"""
url='http://<IP_Address>/ins'
switchuser='<User_ID>'
switchpassword='<Password>'
myheaders={'content-type':'application/json'}
payload={
"ins_api":{
"version": "1.0",
"type": "cli_show",
"chunk": "0",
"sid": "1",
"input": "show bgp vrf all all neighbors 19.0.101.1",
"output_format": "json"
}
response = requests.post(url,data=json.dumps(payload), headers=myheaders,auth=(switchuser,switchpassword)).json()
output = json.dumps(response, indent=4, sort_keys=True)
{
"ins_api": {
"type": "cli_show",
"version": "1.0",
"sid": "eoc",
"outputs": {
"output": {
"input": "show bgp vrf all all neighbors 19.0.101.1",
"msg": "Success",
"code": "200",
"body": {
"TABLE_neighbor": {
"ROW_neighbor": [
{
"neighbor": "19.0.101.1",
"remoteas": "333",
"link": "ibgp",
"index": "5",
"version": "4",
"remote-id": "88.88.88.101",
"state": "Established",
"up": "true",
"elapsedtime": "P1DT5H37M13S",
"connectedif": "Ethernet1/12",
"ttlsecurity": "false",
"passiveonly": "false",
"localas-inactive": "false",
"remove-privateas": "false",
"lastread": "PT55S",
"holdtime": "180",
"keepalivetime": "60",
"lastwrite": "PT1S",
"keepalive": "00:00:58",
"msgrecvd": "2766",
"notificationsrcvd": "0",
"recvbufbytesinq": "0",
"msgsent": "2756",
"notificationssent": "0",
"sentbytesoutstanding": "0",
"sentbytespacked": "0",
"connsestablished": "2",
"connsdropped": "1",
"peerresettime": "P1DT6H9M54S",
"peerresetreason": "session closed",
"resetreason": "No error",
"capsnegotiated": "false",
"capmpadvertised": "true",
"caprefreshadvertised": "true",
"capgrdynamicadvertised": "true",
"capolddynamicadvertised": "true",
"capolddynamicrecvd": "false",
"caprradvertised": "true",
"caprrrecvd": "true",
"capoldrradvertised": "true",
"capoldrrrecvd": "true",
"capas4advertised": "true",
"capas4recvd": "false",
"TABLE_af": {
"ROW_af": [
{
"af-afi": "1",
"TABLE_saf": {
"ROW_saf": {
"af-safi": "1",
"af-advertised": "true",
"af-recvd": "true",
"af-name": "IPv4 Unicast"
}
}
},
{
"af-afi": "1",
"TABLE_saf": {
"ROW_saf": {
"af-safi": "2",
"af-advertised": "true",
"af-recvd": "true",
"af-name": "IPv4 Multicast"
}
}
},
{
"af-afi": "1",
"TABLE_saf": {
"ROW_saf": {
"af-safi": "128",
"af-advertised": "true",
"af-recvd": "true",
"af-name": "VPNv4 Unicast"
}
}
},
{
"af-afi": "2",
"TABLE_saf": {
"ROW_saf": {
"af-safi": "128",
"af-advertised": "true",
"af-recvd": "true",
"af-name": "VPNv6 Unicast"
}
}
},
{
"af-afi": "25",
"TABLE_saf": {
"ROW_saf": {
"af-safi": "70",
"af-advertised": "false",
"af-recvd": "true",
"af-name": "L2VPN EVPN"
}
}
},
{
"af-afi": "16388",
"TABLE_saf": {
"ROW_saf": {
"af-safi": "71",
"af-advertised": "true",
"af-recvd": "true",
"af-name": "Link-State"
}
}
}
]
},
"capgradvertised": "true",
"capgrrecvd": "false",
"TABLE_graf": {
"ROW_graf": [
{
"gr-afi": "1",
"TABLE_grsaf": {
"ROW_grsaf": {
"gr-safi": "1",
"gr-af-name": "IPv4 Unicast",
"gr-adv": "true",
"gr-recv": "false",
"gr-fwd": "false"
}
}
},
{
"gr-afi": "1",
"TABLE_grsaf": {
"ROW_grsaf": {
"gr-safi": "2",
"gr-af-name": "IPv4 Multicast",
"gr-adv": "true",
"gr-recv": "false",
"gr-fwd": "false"
}
}
},
{
"gr-afi": "1",
"TABLE_grsaf": {
"ROW_grsaf": {
"gr-safi": "128",
"gr-af-name": "VPNv4 Unicast",
"gr-adv": "true",
"gr-recv": "false",
"gr-fwd": "false"
}
}
},
{
"gr-afi": "2",
"TABLE_grsaf": {
"ROW_grsaf": {
"gr-safi": "128",
"gr-af-name": "VPNv6 Unicast",
"gr-adv": "true",
"gr-recv": "false",
"gr-fwd": "false"
}
}
},
{
"gr-afi": "16388",
"TABLE_grsaf": {
"ROW_grsaf": {
"gr-safi": "71",
"gr-af-name": "Link-State",
"gr-adv": "true",
"gr-recv": "false",
"gr-fwd": "false"
}
}
}
]
},
"grrestarttime": "120",
"grstaletime": "300",
"capextendednhadvertised": "true",
"capextendednhrecvd": "false",
"epe": "false",
"firstkeepalive": "false",
"openssent": "2",
"opensrecvd": "2",
"updatessent": "36",
"updatesrecvd": "24",
"keepalivesent": "2736",
"keepaliverecvd": "2740",
"rtrefreshsent": "0",
"rtrefreshrecvd": "0",
"capabilitiessent": "0",
"capabilitiesrecvd": "0",
"bytessent": "58306",
"bytesrecvd": "61926",
"TABLE_peraf": {
"ROW_peraf": [
{
"per-afi": "1",
"TABLE_persaf": {
"ROW_persaf": {
"per-safi": "1",
"per-af-name": "IPv4 Unicast",
"tableversion": "109394",
"neighbortableversion": "109394",
"pfxrecvd": "21",
"pathsrecvd": "21",
"pfxbytes": "4536",
"pfxsent": "1",
"pathssent": "1",
"insoftreconfigallowed": "true",
"insoftreconfigallowedalways": "true",
"thirdpartynexthop": "false",
"asoverride": "false",
"peerascheckdisabled": "false",
"rrconfigured": "false",
"defaultoriginate": "false",
"lasteorsenttime": "P1DT22H11M12S",
"firstconvgtime": "P1DT22H11M12S",
"pfxsentfirsteor": "11"
}
}
},
{
"per-afi": "1",
"TABLE_persaf": {
"ROW_persaf": {
"per-safi": "2",
"per-af-name": "IPv4 Multicast",
"tableversion": "109348",
"neighbortableversion": "109348",
"pfxrecvd": "10",
"pathsrecvd": "10",
"pfxbytes": "2160",
"pfxsent": "10",
"pathssent": "10",
"insoftreconfigallowed": "true",
"insoftreconfigallowedalways": "true",
"thirdpartynexthop": "false",
"asoverride": "false",
"peerascheckdisabled": "false",
"rrconfigured": "false",
"defaultoriginate": "false",
"lasteorsenttime": "P1DT22H11M12S",
"firstconvgtime": "P1DT22H11M12S",
"pfxsentfirsteor": "20"
}
}
},
{
"per-afi": "1",
"TABLE_persaf": {
"ROW_persaf": {
"per-safi": "128",
"per-af-name": "VPNv4 Unicast",
"tableversion": "110080",
"neighbortableversion": "110080",
"pfxrecvd": "10",
"pathsrecvd": "10",
"pfxbytes": "2160",
"pfxsent": "1",
"pathssent": "1",
"insoftreconfigallowed": "false",
"thirdpartynexthop": "false",
"asoverride": "false",
"peerascheckdisabled": "false",
"rrconfigured": "false",
"defaultoriginate": "false",
"lasteorsenttime": "P1DT22H11M12S",
"firstconvgtime": "P1DT22H11M12S",
"pfxsentfirsteor": "11"
}
}
},
{
"per-afi": "2",
"TABLE_persaf": {
"ROW_persaf": {
"per-safi": "128",
"per-af-name": "VPNv6 Unicast",
"tableversion": "352",
"neighbortableversion": "352",
"pfxrecvd": "10",
"pathsrecvd": "10",
"pfxbytes": "2160",
"pfxsent": "11",
"pathssent": "11",
"insoftreconfigallowed": "false",
"thirdpartynexthop": "false",
"asoverride": "false",
"peerascheckdisabled": "false",
"rrconfigured": "false",
"defaultoriginate": "false",
"lasteorsenttime": "P1DT22H11M12S",
"firstconvgtime": "P1DT22H11M12S",
"pfxsentfirsteor": "11"
}
}
},
{
"per-afi": "16388",
"TABLE_persaf": {
"ROW_persaf": {
"per-safi": "71",
"per-af-name": "Link-State",
"tableversion": "109316",
"neighbortableversion": "109316",
"pfxrecvd": "10",
"pathsrecvd": "10",
"pfxbytes": "2160",
"pfxsent": "0",
"pathssent": "0",
"insoftreconfigallowed": "false",
"thirdpartynexthop": "false",
"asoverride": "false",
"peerascheckdisabled": "false",
"rrconfigured": "false",
"defaultoriginate": "false",
"lasteorsenttime": "P1DT22H11M12S",
"firstconvgtime": "P1DT22H11M12S",
"pfxsentfirsteor": "10"
}
}
}
]
},
"localaddr": "19.0.0.6",
"localport": "179",
"remoteaddr": "19.0.101.1",
"remoteport": "35197",
"fd": "74"
},
{
"neighbor": "19.0.101.1",
"remoteas": "0",
"link": "unknown",
"index": "3",
"version": "4",
"remote-id": "0.0.0.0",
"state": "Idle",
"up": "false",
"elapsedtime": "P1DT22H6M34S",
"restarttime": "0.000000",
"ttlsecurity": "false",
"passiveonly": "false",
"localas-inactive": "false",
"remove-privateas": "false",
"holdtime": "180",
"keepalivetime": "60",
"msgrecvd": "0",
"notificationsrcvd": "0",
"recvbufbytesinq": "0",
"msgsent": "0",
"notificationssent": "0",
"sentbytesoutstanding": "0",
"sentbytespacked": "0",
"connsestablished": "0",
"connsdropped": "0",
"connattempts": "0",
"resetreason": "No error",
"peerresetreason": "No error",
"epe": "false",
"firstkeepalive": "false",
"openssent": "0",
"opensrecvd": "0",
"updatessent": "0",
"updatesrecvd": "0",
"keepalivesent": "0",
"keepaliverecvd": "0",
"rtrefreshsent": "0",
"rtrefreshrecvd": "0",
"capabilitiessent": "0",
"capabilitiesrecvd": "0",
"bytessent": "0",
"bytesrecvd": "0"
}
]
}
}
}
}
}
}
The CLI output example below corresponds to the payload example in the code pane on the right. For more information about the show bgp vrf all all neighbors 19.0.101.1 command, see the CLI command reference:
Note: This example was added in Cisco NX-OS Release 9.2(1).
CLI Output |
---|
|
show bgp vrf all all neighbors 19.0.102.3 flap-statistics
show bgp vrf all all neighbors 19.0.102.3 flap-statistics
import json
"""
Modify these please
"""
url='http://<IP_Address>/ins'
switchuser='<User_ID>'
switchpassword='<Password>'
myheaders={'content-type':'application/json'}
payload={
"ins_api":{
"version": "1.0",
"type": "cli_show",
"chunk": "0",
"sid": "1",
"input": "show bgp vrf all all neighbors 19.0.102.3 flap-statistics",
"output_format": "json"
}
response = requests.post(url,data=json.dumps(payload), headers=myheaders,auth=(switchuser,switchpassword)).json()
output = json.dumps(response, indent=4, sort_keys=True)
{
"ins_api": {
"type": "cli_show",
"version": "1.0",
"sid": "eoc",
"outputs": {
"output": {
"input": "show bgp vrf all all neighbors 19.0.102.3 flap-statistics",
"msg": "Success",
"code": "200",
"body": {
"TABLE_vrf": {
"ROW_vrf": {
"vrf-name-out": "default",
"TABLE_afi": {
"ROW_afi": [
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv4 Unicast",
"TABLE_rd": {
"ROW_rd": {
"dampening": "true",
"historypaths": "0",
"dampenedpaths": "10",
"TABLE_prefix": {
"ROW_prefix": [
{
"ipprefix": "2.0.0.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:50",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.0.1.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:50",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.0.2.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:50",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.0.3.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:50",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.0.4.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:50",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.0.5.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:50",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.0.6.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:50",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.0.7.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:50",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.0.8.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:50",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.0.9.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:50",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
}
]
}
}
}
}
}
},
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "2",
"af-name": "IPv4 Multicast",
"TABLE_rd": {
"ROW_rd": {
"dampening": "true",
"historypaths": "0",
"dampenedpaths": "10",
"TABLE_prefix": {
"ROW_prefix": [
{
"ipprefix": "2.1.0.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:50",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.1.1.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:50",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.1.2.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:50",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.1.3.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:50",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.1.4.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:50",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.1.5.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:50",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.1.6.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:50",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.1.7.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:50",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.1.8.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:50",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.1.9.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:50",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
}
]
}
}
}
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv6 Unicast",
"TABLE_rd": {
"ROW_rd": {
"dampening": "true",
"historypaths": "0",
"dampenedpaths": "10"
}
}
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "2",
"af-name": "IPv6 Multicast",
"TABLE_rd": {
"ROW_rd": {
"dampening": "true",
"historypaths": "0",
"dampenedpaths": "10"
}
}
}
}
},
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "128",
"af-name": "VPNv4 Unicast"
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "128",
"af-name": "VPNv6 Unicast"
}
}
},
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "5",
"af-name": "IPv4 MVPN"
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "5",
"af-name": "IPv6 MVPN"
}
}
},
{
"afi": "16388",
"TABLE_safi": {
"ROW_safi": {
"safi": "71",
"af-name": "Link-State",
"TABLE_rd": {
"ROW_rd": {
"dampening": "true",
"historypaths": "0",
"dampenedpaths": "10",
"TABLE_prefix": {
"ROW_prefix": [
{
"nonipprefix": "[E][u7][I0x0][N[c1][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.30]]/616",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:50",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"nonipprefix": "[E][u7][I0x0][N[c2][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.31]]/616",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:50",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"nonipprefix": "[E][u7][I0x0][N[c3][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.32]]/616",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:50",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"nonipprefix": "[E][u7][I0x0][N[c4][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.33]]/616",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:50",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"nonipprefix": "[E][u7][I0x0][N[c5][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.34]]/616",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:50",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"nonipprefix": "[E][u7][I0x0][N[c6][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.35]]/616",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:50",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"nonipprefix": "[E][u7][I0x0][N[c7][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.36]]/616",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:50",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"nonipprefix": "[E][u7][I0x0][N[c8][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.37]]/616",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:50",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"nonipprefix": "[E][u7][I0x0][N[c9][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.38]]/616",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:50",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"nonipprefix": "[E][u7][I0x0][N[c10][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.39]]/616",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:50",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
}
]
}
}
}
}
}
}
]
}
}
}
}
}
}
}
}
The CLI output example below corresponds to the payload example in the code pane on the right. For more information about the show bgp vrf all all neighbors 19.0.102.3 flap-statistics command, see the CLI command reference:
Note: This example was added in Cisco NX-OS Release 9.2(1).
CLI Output |
---|
|
show bgp vrf all all self-originated
show bgp vrf all all self-originated
import json
"""
Modify these please
"""
url='http://<IP_Address>/ins'
switchuser='<User_ID>'
switchpassword='<Password>'
myheaders={'content-type':'application/json'}
payload={
"ins_api":{
"version": "1.0",
"type": "cli_show",
"chunk": "0",
"sid": "1",
"input": "show bgp vrf all all self-originated",
"output_format": "json"
}
response = requests.post(url,data=json.dumps(payload), headers=myheaders,auth=(switchuser,switchpassword)).json()
output = json.dumps(response, indent=4, sort_keys=True)
{
"ins_api": {
"type": "cli_show",
"version": "1.0",
"sid": "eoc",
"outputs": {
"output": {
"input": "show bgp vrf all all self-originated",
"msg": "Success",
"code": "200",
"body": {
"TABLE_vrf": {
"ROW_vrf": [
{
"vrf-name-out": "default",
"TABLE_afi": {
"ROW_afi": [
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv4 Unicast",
"table-version": "109394",
"router-id": "19.0.0.6",
"TABLE_rd": {
"ROW_rd": {
"TABLE_prefix": {
"ROW_prefix": {
"ipprefix": "1.6.1.128/25",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
}
}
}
}
}
}
},
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "2",
"af-name": "IPv4 Multicast",
"table-version": "109348",
"router-id": "19.0.0.6"
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv6 Unicast",
"table-version": "109289",
"router-id": "19.0.0.6"
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "2",
"af-name": "IPv6 Multicast",
"table-version": "109256",
"router-id": "19.0.0.6"
}
}
}
]
}
},
{
"vrf-name-out": "vpn1",
"TABLE_afi": {
"ROW_afi": [
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv4 Unicast",
"table-version": "278",
"router-id": "0.0.0.0",
"TABLE_rd": {
"ROW_rd": {
"TABLE_prefix": {
"ROW_prefix": {
"ipprefix": "104.0.0.0/8",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "redist",
"statuscode": "*",
"bestcode": ">",
"typecode": "r",
"ipnexthop": "0.0.0.0",
"weight": "32768",
"aspath": null,
"origin": "?",
"metric": "0",
"localpref": "100"
}
}
}
}
}
}
}
}
},
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "2",
"af-name": "IPv4 Multicast",
"table-version": "3",
"router-id": "0.0.0.0",
"TABLE_rd": {
"ROW_rd": {
"TABLE_prefix": {
"ROW_prefix": {
"ipprefix": "104.0.0.0/8",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "redist",
"statuscode": "*",
"bestcode": ">",
"typecode": "r",
"ipnexthop": "0.0.0.0",
"weight": "32768",
"aspath": null,
"origin": "?",
"metric": "0",
"localpref": "100"
}
}
}
}
}
}
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv6 Unicast",
"table-version": "65",
"router-id": "0.0.0.0",
"TABLE_rd": {
"ROW_rd": {
"TABLE_prefix": {
"ROW_prefix": {
"ipv6prefix": "106::/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "redist",
"statuscode": "*",
"bestcode": ">",
"typecode": "r",
"ipv6nexthop": "0::",
"weight": "32768",
"aspath": null,
"origin": "?",
"metric": "0",
"localpref": "100"
}
}
}
}
}
}
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "2",
"af-name": "IPv6 Multicast",
"table-version": "3",
"router-id": "0.0.0.0",
"TABLE_rd": {
"ROW_rd": {
"TABLE_prefix": {
"ROW_prefix": {
"ipv6prefix": "106::/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "redist",
"statuscode": "*",
"bestcode": ">",
"typecode": "r",
"ipv6nexthop": "0::",
"weight": "32768",
"aspath": null,
"origin": "?",
"metric": "0",
"localpref": "100"
}
}
}
}
}
}
}
}
}
]
}
},
{
"vrf-name-out": "vpn2",
"TABLE_afi": {
"ROW_afi": [
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv4 Unicast",
"table-version": "126",
"router-id": "0.0.0.0"
}
}
},
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "2",
"af-name": "IPv4 Multicast"
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv6 Unicast",
"table-version": "103",
"router-id": "0.0.0.0"
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "2",
"af-name": "IPv6 Multicast"
}
}
}
]
}
}
]
}
}
}
}
}
}
The CLI output example below corresponds to the payload example in the code pane on the right. For more information about the show bgp vrf all all self-originated command, see the CLI command reference:
Note: This example was added in Cisco NX-OS Release 9.2(1).
CLI Output |
---|
|
show bgp vrf all all regexp '.2 3 .'
show bgp vrf all all regexp '.*2 3 .*'
import json
"""
Modify these please
"""
url='http://<IP_Address>/ins'
switchuser='<User_ID>'
switchpassword='<Password>'
myheaders={'content-type':'application/json'}
payload={
"ins_api":{
"version": "1.0",
"type": "cli_show",
"chunk": "0",
"sid": "1",
"input": "show bgp vrf all all regexp '.*2 3 .*'",
"output_format": "json"
}
response = requests.post(url,data=json.dumps(payload), headers=myheaders,auth=(switchuser,switchpassword)).json()
output = json.dumps(response, indent=4, sort_keys=True)
{
"ins_api": {
"type": "cli_show",
"version": "1.0",
"sid": "eoc",
"outputs": {
"output": {
"input": "show bgp vrf all all regexp '.*2 3 .*'",
"msg": "Success",
"code": "200",
"body": {
"TABLE_vrf": {
"ROW_vrf": [
{
"vrf-name-out": "default",
"TABLE_afi": {
"ROW_afi": [
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv4 Unicast",
"table-version": "109394",
"router-id": "19.0.0.6",
"TABLE_rd": {
"ROW_rd": {
"TABLE_prefix": {
"ROW_prefix": [
{
"ipprefix": "1.1.1.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "invalid",
"best": "none",
"type": "internal",
"statuscode": null,
"bestcode": null,
"typecode": "i",
"ipnexthop": "21.0.101.99",
"weight": "0",
"aspath": "1 2 3 65000 23",
"origin": "i",
"metric": "2222",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.2.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "invalid",
"best": "none",
"type": "internal",
"statuscode": null,
"bestcode": null,
"typecode": "i",
"ipnexthop": "21.0.101.99",
"weight": "0",
"aspath": "1 2 3 65000 23",
"origin": "i",
"metric": "2222",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.3.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "invalid",
"best": "none",
"type": "internal",
"statuscode": null,
"bestcode": null,
"typecode": "i",
"ipnexthop": "21.0.101.99",
"weight": "0",
"aspath": "1 2 3 65000 23",
"origin": "i",
"metric": "2222",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.4.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "invalid",
"best": "none",
"type": "internal",
"statuscode": null,
"bestcode": null,
"typecode": "i",
"ipnexthop": "21.0.101.99",
"weight": "0",
"aspath": "1 2 3 65000 23",
"origin": "i",
"metric": "2222",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.5.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "invalid",
"best": "none",
"type": "internal",
"statuscode": null,
"bestcode": null,
"typecode": "i",
"ipnexthop": "21.0.101.99",
"weight": "0",
"aspath": "1 2 3 65000 23",
"origin": "i",
"metric": "2222",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.6.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "invalid",
"best": "none",
"type": "internal",
"statuscode": null,
"bestcode": null,
"typecode": "i",
"ipnexthop": "21.0.101.99",
"weight": "0",
"aspath": "1 2 3 65000 23",
"origin": "i",
"metric": "2222",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.7.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "invalid",
"best": "none",
"type": "internal",
"statuscode": null,
"bestcode": null,
"typecode": "i",
"ipnexthop": "21.0.101.99",
"weight": "0",
"aspath": "1 2 3 65000 23",
"origin": "i",
"metric": "2222",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.8.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "invalid",
"best": "none",
"type": "internal",
"statuscode": null,
"bestcode": null,
"typecode": "i",
"ipnexthop": "21.0.101.99",
"weight": "0",
"aspath": "1 2 3 65000 23",
"origin": "i",
"metric": "2222",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.9.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "invalid",
"best": "none",
"type": "internal",
"statuscode": null,
"bestcode": null,
"typecode": "i",
"ipnexthop": "21.0.101.99",
"weight": "0",
"aspath": "1 2 3 65000 23",
"origin": "i",
"metric": "2222",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.10.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "invalid",
"best": "none",
"type": "internal",
"statuscode": null,
"bestcode": null,
"typecode": "i",
"ipnexthop": "21.0.101.99",
"weight": "0",
"aspath": "1 2 3 65000 23",
"origin": "i",
"metric": "2222",
"localpref": "100"
}
}
}
]
}
}
}
}
}
},
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "2",
"af-name": "IPv4 Multicast",
"table-version": "109348",
"router-id": "19.0.0.6",
"TABLE_rd": {
"ROW_rd": {
"TABLE_prefix": {
"ROW_prefix": [
{
"ipprefix": "1.2.1.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.2.2.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.2.3.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.2.4.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.2.5.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.2.6.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.2.7.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.2.8.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.2.9.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.2.10.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.4.1.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.4.2.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.4.3.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.4.4.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.4.5.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.4.6.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.4.7.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.4.8.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.4.9.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.4.10.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
}
]
}
}
}
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv6 Unicast",
"table-version": "109289",
"router-id": "19.0.0.6"
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "2",
"af-name": "IPv6 Multicast",
"table-version": "109256",
"router-id": "19.0.0.6"
}
}
}
]
}
},
{
"vrf-name-out": "vpn1",
"TABLE_afi": {
"ROW_afi": [
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv4 Unicast",
"table-version": "278",
"router-id": "0.0.0.0"
}
}
},
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "2",
"af-name": "IPv4 Multicast",
"table-version": "3",
"router-id": "0.0.0.0"
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv6 Unicast",
"table-version": "65",
"router-id": "0.0.0.0"
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "2",
"af-name": "IPv6 Multicast",
"table-version": "3",
"router-id": "0.0.0.0"
}
}
}
]
}
},
{
"vrf-name-out": "vpn2",
"TABLE_afi": {
"ROW_afi": [
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv4 Unicast",
"table-version": "126",
"router-id": "0.0.0.0"
}
}
},
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "2",
"af-name": "IPv4 Multicast"
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv6 Unicast",
"table-version": "103",
"router-id": "0.0.0.0"
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "2",
"af-name": "IPv6 Multicast"
}
}
}
]
}
}
]
}
}
}
}
}
}
The CLI output example below corresponds to the payload example in the code pane on the right. For more information about the show bgp vrf all all regexp '.2 3 .' command, see the CLI command reference:
Note: This example was added in Cisco NX-OS Release 9.2(1).
CLI Output |
---|
|
show bgp bmp server
show bgp bmp server
import json
"""
Modify these please
"""
url='http://<IP_Address>/ins'
switchuser='<User_ID>'
switchpassword='<Password>'
myheaders={'content-type':'application/json'}
payload={
"ins_api":{
"version": "1.0",
"type": "cli_show",
"chunk": "0",
"sid": "1",
"input": "show bgp bmp server",
"output_format": "json"
}
response = requests.post(url,data=json.dumps(payload), headers=myheaders,auth=(switchuser,switchpassword)).json()
output = json.dumps(response, indent=4, sort_keys=True)
{
"ins_api": {
"type": "cli_show",
"version": "1.0",
"sid": "eoc",
"outputs": {
"output": {
"input": "show bgp bmp server",
"msg": "Success",
"code": "200",
"body": {
"system_name": {
"sys_name": "nxg-dme-leaf1"
},
"system_description": {
"sys_description": "Nexus9000 C9396PX Chassis, Software Version 9.2(1)I9(1)"
}
}
}
}
}
}
The CLI output example below corresponds to the payload example in the code pane on the right. For more information about the show bgp bmp server command, see the CLI command reference:
Note: This example was added in Cisco NX-OS Release 9.2(1).
CLI Output |
---|
|
show bgp l3vpn detail
show bgp l3vpn detail
import json
"""
Modify these please
"""
url='http://<IP_Address>/ins'
switchuser='<User_ID>'
switchpassword='<Password>'
myheaders={'content-type':'application/json'}
payload={
"ins_api":{
"version": "1.0",
"type": "cli_show",
"chunk": "0",
"sid": "1",
"input": "show bgp l3vpn detail",
"output_format": "json"
}
response = requests.post(url,data=json.dumps(payload), headers=myheaders,auth=(switchuser,switchpassword)).json()
output = json.dumps(response, indent=4, sort_keys=True)
{
"ins_api": {
"type": "cli_show",
"version": "1.0",
"sid": "eoc",
"outputs": {
"output": {
"input": "show bgp l3vpn detail",
"msg": "Success",
"code": "200",
"body": {
"TABLE_vrf": {
"ROW_vrf": [
{
"vrf-name-out": "vpn1",
"vrf-id": "3",
"vrf-rd": "19.0.0.6:3",
"vrf-state": "UP",
"TABLE_af": {
"ROW_af": [
{
"af-id": "0",
"af-name": "IPv4 Unicast",
"af-table-id": "3",
"af-state": "UP",
"TABLE_export_rt": {
"ROW_export_rt": [
{
"export-rt": "100:1"
},
{
"export-rt": "400:400"
}
]
},
"TABLE_import_rt": {
"ROW_import_rt": {
"import-rt": "100:1"
}
},
"TABLE_evpn_export_rt": {
"ROW_evpn_export_rt": {
"evpn-export-rt": "333:1"
}
},
"TABLE_evpn_import_rt": {
"ROW_evpn_import_rt": {
"evpn-import-rt": "333:1"
}
},
"TABLE_mvpn_export_rt": {
"ROW_mvpn_export_rt": {
"mvpn-export-rt": "333:1"
}
},
"TABLE_mvpn_import_rt": {
"ROW_mvpn_import_rt": {
"mvpn-import-rt": "333:1"
}
},
"af-label-mode": "per-vrf",
"af-aggregate-label": "492287"
},
{
"af-id": "1",
"af-name": "IPv4 Multicast",
"af-table-id": "3",
"af-state": "UP"
},
{
"af-id": "2",
"af-name": "IPv6 Unicast",
"af-table-id": "80000003",
"af-state": "UP",
"TABLE_export_rt": {
"ROW_export_rt": [
{
"export-rt": "1:100"
},
{
"export-rt": "600:600"
}
]
},
"TABLE_import_rt": {
"ROW_import_rt": {
"import-rt": "1:100"
}
},
"TABLE_evpn_export_rt": {
"ROW_evpn_export_rt": {
"evpn-export-rt": "333:1"
}
},
"TABLE_evpn_import_rt": {
"ROW_evpn_import_rt": {
"evpn-import-rt": "333:1"
}
},
"TABLE_mvpn_export_rt": {
"ROW_mvpn_export_rt": {
"mvpn-export-rt": "333:1"
}
},
"TABLE_mvpn_import_rt": {
"ROW_mvpn_import_rt": {
"mvpn-import-rt": "333:1"
}
},
"af-label-mode": "per-vrf",
"af-aggregate-label": "492288"
},
{
"af-id": "3",
"af-name": "IPv6 Multicast",
"af-table-id": "80000003",
"af-state": "UP"
}
]
}
},
{
"vrf-name-out": "vpn2",
"vrf-id": "4",
"vrf-rd": "19.0.0.6:4",
"vrf-state": "UP",
"TABLE_af": {
"ROW_af": [
{
"af-id": "0",
"af-name": "IPv4 Unicast",
"af-table-id": "4",
"af-state": "UP",
"TABLE_export_rt": {
"ROW_export_rt": {
"export-rt": "333:2"
}
},
"TABLE_import_rt": {
"ROW_import_rt": {
"import-rt": "400:400"
}
},
"TABLE_evpn_export_rt": {
"ROW_evpn_export_rt": {
"evpn-export-rt": "333:2"
}
},
"TABLE_evpn_import_rt": {
"ROW_evpn_import_rt": {
"evpn-import-rt": "333:2"
}
},
"TABLE_mvpn_export_rt": {
"ROW_mvpn_export_rt": {
"mvpn-export-rt": "333:2"
}
},
"TABLE_mvpn_import_rt": {
"ROW_mvpn_import_rt": {
"mvpn-import-rt": "333:2"
}
},
"af-label-mode": "per-vrf"
},
{
"af-id": "2",
"af-name": "IPv6 Unicast",
"af-table-id": "80000004",
"af-state": "UP",
"TABLE_export_rt": {
"ROW_export_rt": {
"export-rt": "333:2"
}
},
"TABLE_import_rt": {
"ROW_import_rt": {
"import-rt": "600:600"
}
},
"TABLE_evpn_export_rt": {
"ROW_evpn_export_rt": {
"evpn-export-rt": "333:2"
}
},
"TABLE_evpn_import_rt": {
"ROW_evpn_import_rt": {
"evpn-import-rt": "333:2"
}
},
"TABLE_mvpn_export_rt": {
"ROW_mvpn_export_rt": {
"mvpn-export-rt": "333:2"
}
},
"TABLE_mvpn_import_rt": {
"ROW_mvpn_import_rt": {
"mvpn-import-rt": "333:2"
}
},
"af-label-mode": "per-vrf"
}
]
}
}
]
}
}
}
}
}
}
The CLI output example below corresponds to the payload example in the code pane on the right. For more information about the show bgp l3vpn detail command, see the CLI command reference:
Note: This example was added in Cisco NX-OS Release 9.2(1).
CLI Output |
---|
|
show bgp vrf all all summary
show bgp vrf all all summary
import json
"""
Modify these please
"""
url='http://<IP_Address>/ins'
switchuser='<User_ID>'
switchpassword='<Password>'
myheaders={'content-type':'application/json'}
payload={
"ins_api":{
"version": "1.0",
"type": "cli_show",
"chunk": "0",
"sid": "1",
"input": "show bgp vrf all all summary",
"output_format": "json"
}
response = requests.post(url,data=json.dumps(payload), headers=myheaders,auth=(switchuser,switchpassword)).json()
output = json.dumps(response, indent=4, sort_keys=True)
{
"ins_api": {
"type": "cli_show",
"version": "1.0",
"sid": "eoc",
"outputs": {
"output": {
"input": "show bgp vrf all all summary",
"msg": "Success",
"code": "200",
"body": {
"TABLE_vrf": {
"ROW_vrf": [
{
"vrf-name-out": "default",
"vrf-router-id": "19.0.0.6",
"vrf-local-as": "333",
"TABLE_af": {
"ROW_af": [
{
"af-id": "1",
"TABLE_saf": {
"ROW_saf": {
"safi": "1",
"af-name": "IPv4 Unicast",
"tableversion": "109394",
"configuredpeers": "3",
"capablepeers": "3",
"totalnetworks": "32",
"totalpaths": "42",
"memoryused": "8156",
"numberattrs": "6",
"bytesattrs": "984",
"numberpaths": "4",
"bytespaths": "144",
"numbercommunities": "3",
"bytescommunities": "128",
"numberclusterlist": "7",
"bytesclusterlist": "28",
"dampening": "true",
"historypaths": "0",
"dampenedpaths": "10",
"softreconfigrecvdpaths": "30",
"softreconfigidenticalpaths": "30",
"softreconfigcombopaths": "0",
"softreconfigfilteredrecvd": "0",
"softreconfigbytes": "0",
"TABLE_neighbor": {
"ROW_neighbor": [
{
"neighborid": "19.0.101.1",
"neighborversion": "4",
"msgrecvd": "2766",
"msgsent": "2756",
"neighbortableversion": "109394",
"inq": "0",
"outq": "0",
"neighboras": "333",
"time": "P1DT5H37M14S",
"state": "Established",
"prefixreceived": "21"
},
{
"neighborid": "19.0.102.3",
"neighborversion": "4",
"msgrecvd": "155699",
"msgsent": "2748",
"neighbortableversion": "109394",
"inq": "0",
"outq": "0",
"neighboras": "888",
"time": "P1DT5H37M14S",
"state": "Established",
"prefixreceived": "10"
},
{
"neighborid": "19.0.102.4",
"neighborversion": "4",
"msgrecvd": "2754",
"msgsent": "2752",
"neighbortableversion": "109394",
"inq": "0",
"outq": "0",
"neighboras": "333",
"time": "P1DT5H37M14S",
"state": "Established",
"prefixreceived": "10"
}
]
}
}
}
},
{
"af-id": "1",
"TABLE_saf": {
"ROW_saf": {
"safi": "2",
"af-name": "IPv4 Multicast",
"tableversion": "109348",
"configuredpeers": "3",
"capablepeers": "3",
"totalnetworks": "30",
"totalpaths": "30",
"memoryused": "6600",
"numberattrs": "3",
"bytesattrs": "492",
"numberpaths": "2",
"bytespaths": "56",
"numbercommunities": "3",
"bytescommunities": "128",
"numberclusterlist": "7",
"bytesclusterlist": "28",
"dampening": "true",
"historypaths": "0",
"dampenedpaths": "10",
"softreconfigrecvdpaths": "20",
"softreconfigidenticalpaths": "20",
"softreconfigcombopaths": "0",
"softreconfigfilteredrecvd": "0",
"softreconfigbytes": "0",
"TABLE_neighbor": {
"ROW_neighbor": [
{
"neighborid": "19.0.101.1",
"neighborversion": "4",
"msgrecvd": "2766",
"msgsent": "2756",
"neighbortableversion": "109348",
"inq": "0",
"outq": "0",
"neighboras": "333",
"time": "P1DT5H37M14S",
"state": "Established",
"prefixreceived": "10"
},
{
"neighborid": "19.0.102.3",
"neighborversion": "4",
"msgrecvd": "155699",
"msgsent": "2748",
"neighbortableversion": "109348",
"inq": "0",
"outq": "0",
"neighboras": "888",
"time": "P1DT5H37M14S",
"state": "Established",
"prefixreceived": "10"
},
{
"neighborid": "19.0.102.4",
"neighborversion": "4",
"msgrecvd": "2754",
"msgsent": "2752",
"neighbortableversion": "109348",
"inq": "0",
"outq": "0",
"neighboras": "333",
"time": "P1DT5H37M14S",
"state": "Established",
"prefixreceived": "10"
}
]
}
}
}
},
{
"af-id": "2",
"TABLE_saf": {
"ROW_saf": {
"safi": "1",
"af-name": "IPv6 Unicast",
"tableversion": "109289",
"configuredpeers": "2",
"capablepeers": "2",
"totalnetworks": "31",
"totalpaths": "31",
"memoryused": "7068",
"numberattrs": "4",
"bytesattrs": "656",
"numberpaths": "3",
"bytespaths": "106",
"numbercommunities": "3",
"bytescommunities": "128",
"numberclusterlist": "7",
"bytesclusterlist": "28",
"dampening": "true",
"historypaths": "10",
"dampenedpaths": "0",
"softreconfigrecvdpaths": "20",
"softreconfigidenticalpaths": "20",
"softreconfigcombopaths": "0",
"softreconfigfilteredrecvd": "0",
"softreconfigbytes": "0",
"TABLE_neighbor": {
"ROW_neighbor": [
{
"neighborid": "fec0::1002",
"neighborversion": "4",
"msgrecvd": "2748",
"msgsent": "2746",
"neighbortableversion": "109289",
"inq": "0",
"outq": "0",
"neighboras": "333",
"time": "P1DT5H37M14S",
"state": "Established",
"prefixreceived": "20"
},
{
"neighborid": "fec0::2002",
"neighborversion": "4",
"msgrecvd": "46416",
"msgsent": "2742",
"neighbortableversion": "109289",
"inq": "0",
"outq": "0",
"neighboras": "888",
"time": "P1DT5H37M14S",
"state": "Established",
"prefixreceived": "0"
}
]
}
}
}
},
{
"af-id": "2",
"TABLE_saf": {
"ROW_saf": {
"safi": "2",
"af-name": "IPv6 Multicast",
"tableversion": "109256",
"configuredpeers": "2",
"capablepeers": "2",
"totalnetworks": "20",
"totalpaths": "20",
"memoryused": "4640",
"numberattrs": "2",
"bytesattrs": "328",
"numberpaths": "1",
"bytespaths": "42",
"numbercommunities": "3",
"bytescommunities": "128",
"numberclusterlist": "7",
"bytesclusterlist": "28",
"dampening": "true",
"historypaths": "10",
"dampenedpaths": "0",
"softreconfigrecvdpaths": "10",
"softreconfigidenticalpaths": "10",
"softreconfigcombopaths": "0",
"softreconfigfilteredrecvd": "0",
"softreconfigbytes": "0",
"TABLE_neighbor": {
"ROW_neighbor": [
{
"neighborid": "fec0::1002",
"neighborversion": "4",
"msgrecvd": "2748",
"msgsent": "2746",
"neighbortableversion": "109256",
"inq": "0",
"outq": "0",
"neighboras": "333",
"time": "P1DT5H37M14S",
"state": "Established",
"prefixreceived": "10"
},
{
"neighborid": "fec0::2002",
"neighborversion": "4",
"msgrecvd": "46416",
"msgsent": "2742",
"neighbortableversion": "109256",
"inq": "0",
"outq": "0",
"neighboras": "888",
"time": "P1DT5H37M14S",
"state": "Established",
"prefixreceived": "0"
}
]
}
}
}
},
{
"af-id": "1",
"TABLE_saf": {
"ROW_saf": {
"safi": "128",
"af-name": "VPNv4 Unicast",
"tableversion": "110080",
"configuredpeers": "3",
"capablepeers": "3",
"totalnetworks": "94",
"totalpaths": "104",
"memoryused": "14108",
"numberattrs": "4",
"bytesattrs": "656",
"numberpaths": "4",
"bytespaths": "128",
"numbercommunities": "3",
"bytescommunities": "128",
"numberclusterlist": "7",
"bytesclusterlist": "28",
"dampening": "true",
"historypaths": "0",
"dampenedpaths": "10",
"TABLE_neighbor": {
"ROW_neighbor": [
{
"neighborid": "19.0.101.1",
"neighborversion": "4",
"msgrecvd": "2766",
"msgsent": "2756",
"neighbortableversion": "110080",
"inq": "0",
"outq": "0",
"neighboras": "333",
"time": "P1DT5H37M14S",
"state": "Established",
"prefixreceived": "10"
},
{
"neighborid": "19.0.102.3",
"neighborversion": "4",
"msgrecvd": "155699",
"msgsent": "2748",
"neighbortableversion": "110080",
"inq": "0",
"outq": "0",
"neighboras": "888",
"time": "P1DT5H37M14S",
"state": "Established",
"prefixreceived": "10"
},
{
"neighborid": "19.0.102.4",
"neighborversion": "4",
"msgrecvd": "2754",
"msgsent": "2752",
"neighbortableversion": "110080",
"inq": "0",
"outq": "0",
"neighboras": "333",
"time": "P1DT5H37M14S",
"state": "Established",
"prefixreceived": "20"
}
]
}
}
}
},
{
"af-id": "2",
"TABLE_saf": {
"ROW_saf": {
"safi": "128",
"af-name": "VPNv6 Unicast",
"tableversion": "352",
"configuredpeers": "3",
"capablepeers": "3",
"totalnetworks": "62",
"totalpaths": "62",
"memoryused": "9300",
"numberattrs": "2",
"bytesattrs": "328",
"numberpaths": "2",
"bytespaths": "60",
"numbercommunities": "3",
"bytescommunities": "128",
"numberclusterlist": "7",
"bytesclusterlist": "28",
"dampening": "true",
"historypaths": "0",
"dampenedpaths": "0",
"TABLE_neighbor": {
"ROW_neighbor": [
{
"neighborid": "19.0.101.1",
"neighborversion": "4",
"msgrecvd": "2766",
"msgsent": "2756",
"neighbortableversion": "352",
"inq": "0",
"outq": "0",
"neighboras": "333",
"time": "P1DT5H37M14S",
"state": "Established",
"prefixreceived": "10"
},
{
"neighborid": "19.0.102.3",
"neighborversion": "4",
"msgrecvd": "155699",
"msgsent": "2748",
"neighbortableversion": "352",
"inq": "0",
"outq": "0",
"neighboras": "888",
"time": "P1DT5H37M14S",
"state": "Established",
"prefixreceived": "10"
},
{
"neighborid": "19.0.102.4",
"neighborversion": "4",
"msgrecvd": "2754",
"msgsent": "2752",
"neighbortableversion": "352",
"inq": "0",
"outq": "0",
"neighboras": "333",
"time": "P1DT5H37M14S",
"state": "Established",
"prefixreceived": "0"
}
]
}
}
}
},
{
"af-id": "1",
"TABLE_saf": {
"ROW_saf": {
"safi": "5",
"af-name": "IPv4 MVPN",
"tableversion": "3",
"configuredpeers": "1",
"capablepeers": "1",
"totalnetworks": "0",
"totalpaths": "0",
"memoryused": "0",
"numberattrs": "0",
"bytesattrs": "0",
"numberpaths": "0",
"bytespaths": "0",
"numbercommunities": "3",
"bytescommunities": "128",
"numberclusterlist": "7",
"bytesclusterlist": "28",
"dampening": "false",
"TABLE_neighbor": {
"ROW_neighbor": {
"neighborid": "19.0.103.20",
"neighborversion": "4",
"msgrecvd": "1787",
"msgsent": "1782",
"neighbortableversion": "3",
"inq": "0",
"outq": "0",
"neighboras": "333",
"time": "P1DT5H37M14S",
"state": "Established",
"prefixreceived": "0"
}
}
}
}
},
{
"af-id": "2",
"TABLE_saf": {
"ROW_saf": {
"safi": "5",
"af-name": "IPv6 MVPN",
"tableversion": "3",
"configuredpeers": "1",
"capablepeers": "1",
"totalnetworks": "0",
"totalpaths": "0",
"memoryused": "0",
"numberattrs": "0",
"bytesattrs": "0",
"numberpaths": "0",
"bytespaths": "0",
"numbercommunities": "3",
"bytescommunities": "128",
"numberclusterlist": "7",
"bytesclusterlist": "28",
"dampening": "false",
"TABLE_neighbor": {
"ROW_neighbor": {
"neighborid": "19.0.103.20",
"neighborversion": "4",
"msgrecvd": "1787",
"msgsent": "1782",
"neighbortableversion": "3",
"inq": "0",
"outq": "0",
"neighboras": "333",
"time": "P1DT5H37M14S",
"state": "Established",
"prefixreceived": "0"
}
}
}
}
},
{
"af-id": "16388",
"TABLE_saf": {
"ROW_saf": {
"safi": "71",
"af-name": "Link-State",
"tableversion": "109316",
"configuredpeers": "3",
"capablepeers": "2",
"totalnetworks": "20",
"totalpaths": "20",
"memoryused": "4400",
"numberattrs": "2",
"bytesattrs": "328",
"numberpaths": "2",
"bytespaths": "84",
"numbercommunities": "3",
"bytescommunities": "128",
"numberclusterlist": "7",
"bytesclusterlist": "28",
"dampening": "true",
"historypaths": "0",
"dampenedpaths": "10",
"TABLE_neighbor": {
"ROW_neighbor": [
{
"neighborid": "19.0.101.1",
"neighborversion": "4",
"msgrecvd": "2766",
"msgsent": "2756",
"neighbortableversion": "109316",
"inq": "0",
"outq": "0",
"neighboras": "333",
"time": "P1DT5H37M14S",
"state": "Established",
"prefixreceived": "10"
},
{
"neighborid": "19.0.102.3",
"neighborversion": "4",
"msgrecvd": "155699",
"msgsent": "2748",
"neighbortableversion": "109316",
"inq": "0",
"outq": "0",
"neighboras": "888",
"time": "P1DT5H37M14S",
"state": "Established",
"prefixreceived": "10"
},
{
"neighborid": "fec0::2002",
"neighborversion": "4",
"msgrecvd": "46416",
"msgsent": "2742",
"neighbortableversion": "0",
"inq": "0",
"outq": "0",
"neighboras": "888",
"time": "P1DT5H37M14S",
"state": "Established",
"prefixreceived": "0"
}
]
}
}
}
}
]
}
},
{
"vrf-name-out": "vpn1",
"vrf-router-id": "0.0.0.0",
"vrf-local-as": "333",
"TABLE_af": {
"ROW_af": [
{
"af-id": "1",
"TABLE_saf": {
"ROW_saf": {
"safi": "1",
"af-name": "IPv4 Unicast"
}
}
},
{
"af-id": "1",
"TABLE_saf": {
"ROW_saf": {
"safi": "2",
"af-name": "IPv4 Multicast"
}
}
},
{
"af-id": "2",
"TABLE_saf": {
"ROW_saf": {
"safi": "1",
"af-name": "IPv6 Unicast"
}
}
},
{
"af-id": "2",
"TABLE_saf": {
"ROW_saf": {
"safi": "2",
"af-name": "IPv6 Multicast"
}
}
}
]
}
},
{
"vrf-name-out": "vpn2",
"vrf-router-id": "0.0.0.0",
"vrf-local-as": "333",
"TABLE_af": {
"ROW_af": [
{
"af-id": "1",
"TABLE_saf": {
"ROW_saf": {
"safi": "1",
"af-name": "IPv4 Unicast"
}
}
},
{
"af-id": "2",
"TABLE_saf": {
"ROW_saf": {
"safi": "1",
"af-name": "IPv6 Unicast"
}
}
}
]
}
}
]
}
}
}
}
}
}
The CLI output example below corresponds to the payload example in the code pane on the right. For more information about the show bgp vrf all all summary command, see the CLI command reference:
Note: This example was added in Cisco NX-OS Release 9.2(1).
CLI Output |
---|
|
show bgp statistics
show bgp statistics
import json
"""
Modify these please
"""
url='http://<IP_Address>/ins'
switchuser='<User_ID>'
switchpassword='<Password>'
myheaders={'content-type':'application/json'}
payload={
"ins_api":{
"version": "1.0",
"type": "cli_show",
"chunk": "0",
"sid": "1",
"input": "show bgp statistics",
"output_format": "json"
}
response = requests.post(url,data=json.dumps(payload), headers=myheaders,auth=(switchuser,switchpassword)).json()
output = json.dumps(response, indent=4, sort_keys=True)
{
"ins_api": {
"type": "cli_show",
"version": "1.0",
"sid": "eoc",
"outputs": {
"output": {
"input": "show bgp statistics",
"msg": "Success",
"code": "200",
"body": {
"msgsent": "15526",
"msgrecvd": "212170",
"bytesent": "63498284",
"byterecvd": "311600",
"opensent": "11",
"openrecvd": "11",
"updatesent": "128",
"updaterecvd": "196678",
"kasent": "15459",
"karecvd": "15481",
"notifsent": "0",
"notifrecvd": "0",
"rrefreshsent": "0",
"rrefreshrecvd": "0",
"capsent": "0",
"caprecvd": "0"
}
}
}
}
}
The CLI output example below corresponds to the payload example in the code pane on the right. For more information about the show bgp statistics command, see the CLI command reference:
Note: This example was added in Cisco NX-OS Release 9.2(1).
CLI Output |
---|
|
show bgp vrf all process
show bgp vrf all process
import json
"""
Modify these please
"""
url='http://<IP_Address>/ins'
switchuser='<User_ID>'
switchpassword='<Password>'
myheaders={'content-type':'application/json'}
payload={
"ins_api":{
"version": "1.0",
"type": "cli_show",
"chunk": "0",
"sid": "1",
"input": "show bgp vrf all process",
"output_format": "json"
}
response = requests.post(url,data=json.dumps(payload), headers=myheaders,auth=(switchuser,switchpassword)).json()
output = json.dumps(response, indent=4, sort_keys=True)
{
"ins_api": {
"type": "cli_show",
"version": "1.0",
"sid": "eoc",
"outputs": {
"output": {
"input": "show bgp vrf all process",
"msg": "Success",
"code": "200",
"body": {
"processid": "7638",
"protocolstartedreason": "configuration",
"protocoltag": "333",
"protocolstate": "Running",
"isolatemode": "No",
"mmode": "Initialized",
"memorystate": "OK",
"forwardingstatesaved": "false",
"asformat": "asplain",
"attributeentries": "22",
"hwmattributeentries": "22",
"bytesused": "2640",
"entriespendingdelete": "0",
"hwmentriespendingdelete": "0",
"pathsperattribute": "10",
"aspathentries": "11",
"aspathbytes": "546",
"TABLE_vrf": {
"ROW_vrf": [
{
"vrf-name-out": "default",
"vrf-id": "1",
"vrf-state": "UP",
"vrf-delete-pending": "false",
"vrf-evpn-mpls": "false",
"vrf-router-id": "19.0.0.6",
"vrf-cfgd-id": "0.0.0.0",
"vrf-confed-id": "0",
"vrf-cluster-id": "0.0.0.0",
"vrf-peers": "6",
"vrf-pending-peers": "0",
"vrf-est-peers": "6",
"vrf-rd-configured": "false",
"TABLE_af": {
"ROW_af": [
{
"af-id": "0",
"af-name": "IPv4 Unicast",
"af-table-id": "1",
"af-state": "UP",
"af-num-peers": "3",
"af-num-active-peers": "3",
"af-peer-routes": "32",
"af-peer-paths": "42",
"af-peer-networks": "0",
"af-peer-aggregates": "0",
"wait-igp-convergence": "false",
"af-rr": "false",
"default-information-enabled": "false",
"nexthop-trigger-delay-critical": "3000",
"nexthop-trigger-delay-non-critical": "10000"
},
{
"af-id": "1",
"af-name": "IPv4 Multicast",
"af-table-id": "1",
"af-state": "UP",
"af-num-peers": "3",
"af-num-active-peers": "3",
"af-peer-routes": "30",
"af-peer-paths": "30",
"af-peer-networks": "0",
"af-peer-aggregates": "0",
"wait-igp-convergence": "false",
"af-rr": "true",
"default-information-enabled": "false",
"nexthop-trigger-delay-critical": "3000",
"nexthop-trigger-delay-non-critical": "10000"
},
{
"af-id": "2",
"af-name": "IPv6 Unicast",
"af-table-id": "80000001",
"af-state": "UP",
"af-num-peers": "2",
"af-num-active-peers": "2",
"af-peer-routes": "31",
"af-peer-paths": "31",
"af-peer-networks": "0",
"af-peer-aggregates": "0",
"wait-igp-convergence": "false",
"af-rr": "false",
"default-information-enabled": "false",
"nexthop-trigger-delay-critical": "3000",
"nexthop-trigger-delay-non-critical": "10000"
},
{
"af-id": "3",
"af-name": "IPv6 Multicast",
"af-table-id": "80000001",
"af-state": "UP",
"af-num-peers": "2",
"af-num-active-peers": "2",
"af-peer-routes": "20",
"af-peer-paths": "20",
"af-peer-networks": "0",
"af-peer-aggregates": "0",
"wait-igp-convergence": "false",
"af-rr": "false",
"default-information-enabled": "false",
"nexthop-trigger-delay-critical": "3000",
"nexthop-trigger-delay-non-critical": "10000"
},
{
"af-id": "4",
"af-name": "VPNv4 Unicast",
"af-table-id": "1",
"af-state": "UP",
"af-num-peers": "3",
"af-num-active-peers": "3",
"af-peer-routes": "94",
"af-peer-paths": "104",
"af-peer-networks": "0",
"af-peer-aggregates": "0",
"wait-igp-convergence": "false",
"af-rr": "false",
"default-information-enabled": "false",
"nexthop-trigger-delay-critical": "3000",
"nexthop-trigger-delay-non-critical": "10000"
},
{
"af-id": "5",
"af-name": "VPNv6 Unicast",
"af-table-id": "80000001",
"af-state": "UP",
"af-num-peers": "3",
"af-num-active-peers": "3",
"af-peer-routes": "62",
"af-peer-paths": "62",
"af-peer-networks": "0",
"af-peer-aggregates": "0",
"wait-igp-convergence": "false",
"af-rr": "false",
"default-information-enabled": "false",
"nexthop-trigger-delay-critical": "3000",
"nexthop-trigger-delay-non-critical": "10000"
},
{
"af-id": "9",
"af-name": "IPv4 MVPN",
"af-table-id": "1",
"af-state": "UP",
"af-num-peers": "1",
"af-num-active-peers": "1",
"af-peer-routes": "0",
"af-peer-paths": "0",
"af-peer-networks": "0",
"af-peer-aggregates": "0",
"wait-igp-convergence": "false",
"af-rr": "false",
"default-information-enabled": "false",
"nexthop-trigger-delay-critical": "3000",
"nexthop-trigger-delay-non-critical": "10000"
},
{
"af-id": "10",
"af-name": "IPv6 MVPN",
"af-table-id": "80000001",
"af-state": "UP",
"af-num-peers": "1",
"af-num-active-peers": "1",
"af-peer-routes": "0",
"af-peer-paths": "0",
"af-peer-networks": "0",
"af-peer-aggregates": "0",
"wait-igp-convergence": "false",
"af-rr": "false",
"default-information-enabled": "false",
"nexthop-trigger-delay-critical": "3000",
"nexthop-trigger-delay-non-critical": "10000"
},
{
"af-id": "13",
"af-name": "Link-State",
"af-table-id": "1",
"af-state": "UP",
"af-num-peers": "3",
"af-num-active-peers": "2",
"af-peer-routes": "20",
"af-peer-paths": "20",
"af-peer-networks": "0",
"af-peer-aggregates": "0",
"wait-igp-convergence": "false",
"af-rr": "false",
"default-information-enabled": "false",
"nexthop-trigger-delay-critical": "3000",
"nexthop-trigger-delay-non-critical": "10000"
}
]
}
},
{
"vrf-name-out": "vpn1",
"vrf-id": "3",
"vrf-state": "UP",
"vrf-delete-pending": "false",
"vrf-evpn-mpls": "false",
"vrf-router-id": "0.0.0.0",
"vrf-cfgd-id": "0.0.0.0",
"vrf-confed-id": "0",
"vrf-cluster-id": "0.0.0.0",
"vrf-peers": "1",
"vrf-pending-peers": "0",
"vrf-est-peers": "0",
"vrf-rd-configured": "true",
"vrf-rd": "19.0.0.6:3",
"TABLE_af": {
"ROW_af": [
{
"af-id": "0",
"af-name": "IPv4 Unicast",
"af-table-id": "3",
"af-state": "UP",
"af-num-peers": "0",
"af-num-active-peers": "0",
"af-peer-routes": "42",
"af-peer-paths": "42",
"af-peer-networks": "0",
"af-peer-aggregates": "0",
"TABLE_redist": {
"ROW_redist": {
"protocol": "static",
"route-map": "PASS-ALL"
}
},
"wait-igp-convergence": "false",
"TABLE_export_rt": {
"ROW_export_rt": [
{
"export-rt": "100:1"
},
{
"export-rt": "400:400"
}
]
},
"TABLE_import_rt": {
"ROW_import_rt": {
"import-rt": "100:1"
}
},
"TABLE_evpn_export_rt": {
"ROW_evpn_export_rt": {
"evpn-export-rt": "333:1"
}
},
"TABLE_evpn_import_rt": {
"ROW_evpn_import_rt": {
"evpn-import-rt": "333:1"
}
},
"TABLE_mvpn_export_rt": {
"ROW_mvpn_export_rt": {
"mvpn-export-rt": "333:1"
}
},
"TABLE_mvpn_import_rt": {
"ROW_mvpn_import_rt": {
"mvpn-import-rt": "333:1"
}
},
"af-label-mode": "per-vrf",
"af-aggregate-label": "492287",
"importdefault_prefixlimit": "1000",
"importdefault_prefixcount": "21",
"importdefault_map": "PASS-ALL",
"exportdefault_prefixlimit": "1000",
"exportdefault_prefixcount": "1",
"exportdefault_map": "PASS-ALL",
"af-rr": "false",
"default-information-enabled": "false",
"nexthop-trigger-delay-critical": "3000",
"nexthop-trigger-delay-non-critical": "10000"
},
{
"af-id": "1",
"af-name": "IPv4 Multicast",
"af-table-id": "3",
"af-state": "UP",
"af-num-peers": "0",
"af-num-active-peers": "0",
"af-peer-routes": "1",
"af-peer-paths": "1",
"af-peer-networks": "0",
"af-peer-aggregates": "0",
"TABLE_redist": {
"ROW_redist": {
"protocol": "static",
"route-map": "PASS-ALL"
}
},
"wait-igp-convergence": "false",
"af-rr": "false",
"default-information-enabled": "false",
"nexthop-trigger-delay-critical": "3000",
"nexthop-trigger-delay-non-critical": "10000"
},
{
"af-id": "2",
"af-name": "IPv6 Unicast",
"af-table-id": "80000003",
"af-state": "UP",
"af-num-peers": "0",
"af-num-active-peers": "0",
"af-peer-routes": "21",
"af-peer-paths": "21",
"af-peer-networks": "0",
"af-peer-aggregates": "0",
"TABLE_redist": {
"ROW_redist": {
"protocol": "static",
"route-map": "PASS-ALL"
}
},
"wait-igp-convergence": "false",
"TABLE_export_rt": {
"ROW_export_rt": [
{
"export-rt": "1:100"
},
{
"export-rt": "600:600"
}
]
},
"TABLE_import_rt": {
"ROW_import_rt": {
"import-rt": "1:100"
}
},
"TABLE_evpn_export_rt": {
"ROW_evpn_export_rt": {
"evpn-export-rt": "333:1"
}
},
"TABLE_evpn_import_rt": {
"ROW_evpn_import_rt": {
"evpn-import-rt": "333:1"
}
},
"TABLE_mvpn_export_rt": {
"ROW_mvpn_export_rt": {
"mvpn-export-rt": "333:1"
}
},
"TABLE_mvpn_import_rt": {
"ROW_mvpn_import_rt": {
"mvpn-import-rt": "333:1"
}
},
"af-label-mode": "per-vrf",
"af-aggregate-label": "492288",
"exportdefault_prefixlimit": "1000",
"exportdefault_prefixcount": "1",
"exportdefault_map": "PASS-ALL",
"af-rr": "false",
"default-information-enabled": "false",
"nexthop-trigger-delay-critical": "3000",
"nexthop-trigger-delay-non-critical": "10000"
},
{
"af-id": "3",
"af-name": "IPv6 Multicast",
"af-table-id": "80000003",
"af-state": "UP",
"af-num-peers": "0",
"af-num-active-peers": "0",
"af-peer-routes": "1",
"af-peer-paths": "1",
"af-peer-networks": "0",
"af-peer-aggregates": "0",
"TABLE_redist": {
"ROW_redist": {
"protocol": "static",
"route-map": "PASS-ALL"
}
},
"wait-igp-convergence": "false",
"af-rr": "false",
"default-information-enabled": "false",
"nexthop-trigger-delay-critical": "3000",
"nexthop-trigger-delay-non-critical": "10000"
}
]
}
},
{
"vrf-name-out": "vpn2",
"vrf-id": "4",
"vrf-state": "UP",
"vrf-delete-pending": "false",
"vrf-evpn-mpls": "false",
"vrf-router-id": "0.0.0.0",
"vrf-cfgd-id": "0.0.0.0",
"vrf-confed-id": "0",
"vrf-cluster-id": "0.0.0.0",
"vrf-peers": "0",
"vrf-pending-peers": "0",
"vrf-est-peers": "0",
"vrf-rd-configured": "true",
"vrf-rd": "19.0.0.6:4",
"TABLE_af": {
"ROW_af": [
{
"af-id": "0",
"af-name": "IPv4 Unicast",
"af-table-id": "4",
"af-state": "UP",
"af-num-peers": "0",
"af-num-active-peers": "0",
"af-peer-routes": "22",
"af-peer-paths": "22",
"af-peer-networks": "0",
"af-peer-aggregates": "0",
"wait-igp-convergence": "false",
"TABLE_export_rt": {
"ROW_export_rt": {
"export-rt": "333:2"
}
},
"TABLE_import_rt": {
"ROW_import_rt": {
"import-rt": "400:400"
}
},
"TABLE_evpn_export_rt": {
"ROW_evpn_export_rt": {
"evpn-export-rt": "333:2"
}
},
"TABLE_evpn_import_rt": {
"ROW_evpn_import_rt": {
"evpn-import-rt": "333:2"
}
},
"TABLE_mvpn_export_rt": {
"ROW_mvpn_export_rt": {
"mvpn-export-rt": "333:2"
}
},
"TABLE_mvpn_import_rt": {
"ROW_mvpn_import_rt": {
"mvpn-import-rt": "333:2"
}
},
"af-label-mode": "per-vrf",
"importdefault_prefixlimit": "1000",
"importdefault_prefixcount": "21",
"importdefault_map": "PASS-ALL",
"af-rr": "false",
"default-information-enabled": "false",
"nexthop-trigger-delay-critical": "3000",
"nexthop-trigger-delay-non-critical": "10000"
},
{
"af-id": "2",
"af-name": "IPv6 Unicast",
"af-table-id": "80000004",
"af-state": "UP",
"af-num-peers": "0",
"af-num-active-peers": "0",
"af-peer-routes": "21",
"af-peer-paths": "21",
"af-peer-networks": "0",
"af-peer-aggregates": "0",
"wait-igp-convergence": "false",
"TABLE_export_rt": {
"ROW_export_rt": {
"export-rt": "333:2"
}
},
"TABLE_import_rt": {
"ROW_import_rt": {
"import-rt": "600:600"
}
},
"TABLE_evpn_export_rt": {
"ROW_evpn_export_rt": {
"evpn-export-rt": "333:2"
}
},
"TABLE_evpn_import_rt": {
"ROW_evpn_import_rt": {
"evpn-import-rt": "333:2"
}
},
"TABLE_mvpn_export_rt": {
"ROW_mvpn_export_rt": {
"mvpn-export-rt": "333:2"
}
},
"TABLE_mvpn_import_rt": {
"ROW_mvpn_import_rt": {
"mvpn-import-rt": "333:2"
}
},
"af-label-mode": "per-vrf",
"importdefault_prefixlimit": "1000",
"importdefault_prefixcount": "20",
"importdefault_map": "PASS-ALL",
"af-rr": "false",
"default-information-enabled": "false",
"nexthop-trigger-delay-critical": "3000",
"nexthop-trigger-delay-non-critical": "10000"
}
]
}
}
]
}
}
}
}
}
}
The CLI output example below corresponds to the payload example in the code pane on the right. For more information about the show bgp vrf all process command, see the CLI command reference:
Note: This example was added in Cisco NX-OS Release 9.2(1).
CLI Output |
---|
|
show bgp vrf all all community internet
show bgp vrf all all community internet
import json
"""
Modify these please
"""
url='http://<IP_Address>/ins'
switchuser='<User_ID>'
switchpassword='<Password>'
myheaders={'content-type':'application/json'}
payload={
"ins_api":{
"version": "1.0",
"type": "cli_show",
"chunk": "0",
"sid": "1",
"input": "show bgp vrf all all community internet",
"output_format": "json"
}
response = requests.post(url,data=json.dumps(payload), headers=myheaders,auth=(switchuser,switchpassword)).json()
output = json.dumps(response, indent=4, sort_keys=True)
{
"ins_api": {
"type": "cli_show",
"version": "1.0",
"sid": "eoc",
"outputs": {
"output": {
"input": "show bgp vrf all all community internet",
"msg": "Success",
"code": "200",
"body": {
"TABLE_vrf": {
"ROW_vrf": [
{
"vrf-name-out": "default",
"TABLE_afi": {
"ROW_afi": [
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv4 Unicast",
"table-version": "109394",
"router-id": "19.0.0.6",
"TABLE_rd": {
"ROW_rd": {
"TABLE_prefix": {
"ROW_prefix": [
{
"ipprefix": "1.1.1.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "invalid",
"best": "none",
"type": "internal",
"statuscode": null,
"bestcode": null,
"typecode": "i",
"ipnexthop": "21.0.101.99",
"weight": "0",
"aspath": "1 2 3 65000 23",
"origin": "i",
"metric": "2222",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.1.2.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "invalid",
"best": "none",
"type": "internal",
"statuscode": null,
"bestcode": null,
"typecode": "i",
"ipnexthop": "21.0.101.99",
"weight": "0",
"aspath": "1 2 3 65000 23",
"origin": "i",
"metric": "2222",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.1.3.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "invalid",
"best": "none",
"type": "internal",
"statuscode": null,
"bestcode": null,
"typecode": "i",
"ipnexthop": "21.0.101.99",
"weight": "0",
"aspath": "1 2 3 65000 23",
"origin": "i",
"metric": "2222",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.1.4.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "invalid",
"best": "none",
"type": "internal",
"statuscode": null,
"bestcode": null,
"typecode": "i",
"ipnexthop": "21.0.101.99",
"weight": "0",
"aspath": "1 2 3 65000 23",
"origin": "i",
"metric": "2222",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.1.5.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "invalid",
"best": "none",
"type": "internal",
"statuscode": null,
"bestcode": null,
"typecode": "i",
"ipnexthop": "21.0.101.99",
"weight": "0",
"aspath": "1 2 3 65000 23",
"origin": "i",
"metric": "2222",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.1.6.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "invalid",
"best": "none",
"type": "internal",
"statuscode": null,
"bestcode": null,
"typecode": "i",
"ipnexthop": "21.0.101.99",
"weight": "0",
"aspath": "1 2 3 65000 23",
"origin": "i",
"metric": "2222",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.1.7.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "invalid",
"best": "none",
"type": "internal",
"statuscode": null,
"bestcode": null,
"typecode": "i",
"ipnexthop": "21.0.101.99",
"weight": "0",
"aspath": "1 2 3 65000 23",
"origin": "i",
"metric": "2222",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.1.8.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "invalid",
"best": "none",
"type": "internal",
"statuscode": null,
"bestcode": null,
"typecode": "i",
"ipnexthop": "21.0.101.99",
"weight": "0",
"aspath": "1 2 3 65000 23",
"origin": "i",
"metric": "2222",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.1.9.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "invalid",
"best": "none",
"type": "internal",
"statuscode": null,
"bestcode": null,
"typecode": "i",
"ipnexthop": "21.0.101.99",
"weight": "0",
"aspath": "1 2 3 65000 23",
"origin": "i",
"metric": "2222",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.1.10.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "invalid",
"best": "none",
"type": "internal",
"statuscode": null,
"bestcode": null,
"typecode": "i",
"ipnexthop": "21.0.101.99",
"weight": "0",
"aspath": "1 2 3 65000 23",
"origin": "i",
"metric": "2222",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.6.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.6.1.128/25",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.7.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.8.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.9.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.10.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.11.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.12.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.13.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.14.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.15.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "2.0.0.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.0.1.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.0.2.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.0.3.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.0.4.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.0.5.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.0.6.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.0.7.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.0.8.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.0.9.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "104.0.0.0/8",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "redist",
"statuscode": "*",
"bestcode": ">",
"typecode": "r",
"ipnexthop": "0.0.0.0",
"weight": "32768",
"aspath": null,
"origin": "?",
"metric": "0",
"localpref": "100"
}
}
}
]
}
}
}
}
}
},
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "2",
"af-name": "IPv4 Multicast",
"table-version": "109348",
"router-id": "19.0.0.6",
"TABLE_rd": {
"ROW_rd": {
"TABLE_prefix": {
"ROW_prefix": [
{
"ipprefix": "1.2.1.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.2.2.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.2.3.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.2.4.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.2.5.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.2.6.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.2.7.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.2.8.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.2.9.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.2.10.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.4.1.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.4.2.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.4.3.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.4.4.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.4.5.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.4.6.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.4.7.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.4.8.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.4.9.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.4.10.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "2.1.0.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.1.1.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.1.2.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.1.3.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.1.4.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.1.5.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.1.6.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.1.7.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.1.8.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.1.9.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
}
]
}
}
}
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv6 Unicast",
"table-version": "109289",
"router-id": "19.0.0.6",
"TABLE_rd": {
"ROW_rd": {
"TABLE_prefix": {
"ROW_prefix": [
{
"ipv6prefix": "106::/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "redist",
"statuscode": "*",
"bestcode": ">",
"typecode": "r",
"ipv6nexthop": "0::",
"weight": "32768",
"aspath": null,
"origin": "?",
"metric": "0",
"localpref": "100"
}
}
},
{
"ipv6prefix": "2001::/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "2001::1:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "2001::2:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "2001::3:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "2001::4:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "2001::5:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "2001::6:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "2001::7:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "2001::8:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "2001::9:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "abcd::/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::1:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::1:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::2:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::2:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::3:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::3:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::4:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::4:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::1:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::1:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::2:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::2:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::3:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::3:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::4:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::4:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
}
]
}
}
}
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "2",
"af-name": "IPv6 Multicast",
"table-version": "109256",
"router-id": "19.0.0.6",
"TABLE_rd": {
"ROW_rd": {
"TABLE_prefix": {
"ROW_prefix": [
{
"ipv6prefix": "3100::/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "3100::1:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "3100::2:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "3100::3:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "3100::4:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "3100::5:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "3100::6:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "3100::7:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "3100::8:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "3100::9:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "eeee::/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": null,
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "eeee::8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": null,
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "eeee::1:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": null,
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "eeee::1:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": null,
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "eeee::2:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": null,
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "eeee::2:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": null,
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "eeee::3:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": null,
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "eeee::3:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": null,
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "eeee::4:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": null,
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "eeee::4:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": null,
"origin": "i",
"localpref": "100"
}
}
}
]
}
}
}
}
}
},
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "128",
"af-name": "VPNv4 Unicast",
"table-version": "110080",
"router-id": "19.0.0.6",
"TABLE_rd": {
"ROW_rd": [
{
"rd_val": "0:0",
"TABLE_prefix": {
"ROW_prefix": [
{
"ipprefix": "2.3.1.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.3.2.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.3.3.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.3.4.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.3.5.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.3.6.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.3.7.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.3.8.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.3.9.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.3.10.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
}
]
}
},
{
"rd_val": "101:100",
"TABLE_prefix": {
"ROW_prefix": [
{
"ipprefix": "1.3.1.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "valid",
"best": "none",
"type": "internal",
"statuscode": "*",
"bestcode": null,
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "3 4 5 6",
"origin": "i",
"metric": "4444",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.3.2.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "valid",
"best": "none",
"type": "internal",
"statuscode": "*",
"bestcode": null,
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "3 4 5 6",
"origin": "i",
"metric": "4444",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.3.3.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "valid",
"best": "none",
"type": "internal",
"statuscode": "*",
"bestcode": null,
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "3 4 5 6",
"origin": "i",
"metric": "4444",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.3.4.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "valid",
"best": "none",
"type": "internal",
"statuscode": "*",
"bestcode": null,
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "3 4 5 6",
"origin": "i",
"metric": "4444",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.3.5.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "valid",
"best": "none",
"type": "internal",
"statuscode": "*",
"bestcode": null,
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "3 4 5 6",
"origin": "i",
"metric": "4444",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.3.6.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "valid",
"best": "none",
"type": "internal",
"statuscode": "*",
"bestcode": null,
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "3 4 5 6",
"origin": "i",
"metric": "4444",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.3.7.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "valid",
"best": "none",
"type": "internal",
"statuscode": "*",
"bestcode": null,
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "3 4 5 6",
"origin": "i",
"metric": "4444",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.3.8.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "valid",
"best": "none",
"type": "internal",
"statuscode": "*",
"bestcode": null,
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "3 4 5 6",
"origin": "i",
"metric": "4444",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.3.9.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "valid",
"best": "none",
"type": "internal",
"statuscode": "*",
"bestcode": null,
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "3 4 5 6",
"origin": "i",
"metric": "4444",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.3.10.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "valid",
"best": "none",
"type": "internal",
"statuscode": "*",
"bestcode": null,
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "3 4 5 6",
"origin": "i",
"metric": "4444",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
]
}
}
]
}
},
{
"rd_val": "102:100",
"TABLE_prefix": {
"ROW_prefix": [
{
"ipprefix": "102.1.1.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.2.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.3.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.4.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.5.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.6.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.7.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.8.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.9.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.10.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
}
]
}
},
{
"rd_val": "19.0.0.6:3",
"rd_vrf": "vpn1",
"TABLE_prefix": {
"ROW_prefix": [
{
"ipprefix": "1.1.1.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.2.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.3.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.4.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.5.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.6.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.7.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.8.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.9.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.10.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.3.1.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.3.2.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.3.3.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.3.4.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.3.5.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.3.6.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.3.7.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.3.8.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.3.9.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.3.10.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.6.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.6.1.128/25",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.7.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.8.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.9.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.10.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.11.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.12.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.13.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.14.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.15.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.1.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.2.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.3.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.4.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.5.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.6.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.7.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.8.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.9.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.10.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "104.0.0.0/8",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "redist",
"statuscode": "*",
"bestcode": ">",
"typecode": "r",
"ipnexthop": "0.0.0.0",
"weight": "32768",
"aspath": null,
"origin": "?",
"metric": "0",
"localpref": "100"
}
}
}
]
}
},
{
"rd_val": "19.0.0.6:4",
"rd_vrf": "vpn2",
"TABLE_prefix": {
"ROW_prefix": [
{
"ipprefix": "1.1.1.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.2.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.3.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.4.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.5.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.6.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.7.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.8.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.9.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.10.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.6.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.6.1.128/25",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.7.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.8.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.9.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.10.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.11.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.12.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.13.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.14.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.15.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "104.0.0.0/8",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "redist",
"statuscode": "*",
"bestcode": ">",
"typecode": "r",
"ipnexthop": "0.0.0.0",
"weight": "32768",
"aspath": null,
"origin": "?",
"metric": "0",
"localpref": "100"
}
}
}
]
}
}
]
}
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "128",
"af-name": "VPNv6 Unicast",
"table-version": "352",
"router-id": "19.0.0.6",
"TABLE_rd": {
"ROW_rd": [
{
"rd_val": "100:200",
"TABLE_prefix": {
"ROW_prefix": [
{
"ipv6prefix": "aaaa:1::/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::1:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::2:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::3:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::4:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::5:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::6:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::7:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::8:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::9:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
}
]
}
},
{
"rd_val": "19.0.0.6:3",
"rd_vrf": "vpn1",
"TABLE_prefix": {
"ROW_prefix": [
{
"ipv6prefix": "0::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:80::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:100::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:180::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:200::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:280::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:300::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:380::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:400::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:480::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "106::/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "redist",
"statuscode": "*",
"bestcode": ">",
"typecode": "r",
"ipv6nexthop": "0::",
"weight": "32768",
"aspath": null,
"origin": "?",
"metric": "0",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::1:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::2:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::3:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::4:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::5:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::6:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::7:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::8:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::9:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
}
]
}
},
{
"rd_val": "19.0.0.6:4",
"rd_vrf": "vpn2",
"TABLE_prefix": {
"ROW_prefix": [
{
"ipv6prefix": "106::/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "redist",
"statuscode": "*",
"bestcode": ">",
"typecode": "r",
"ipv6nexthop": "0::",
"weight": "32768",
"aspath": null,
"origin": "?",
"metric": "0",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::1:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::1:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::2:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::2:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::3:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::3:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::4:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::4:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::1:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::1:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::2:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::2:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::3:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::3:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::4:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::4:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
}
]
}
},
{
"rd_val": "0xbb00010000000000",
"TABLE_prefix": {
"ROW_prefix": [
{
"ipv6prefix": "0::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:80::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:100::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:180::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:200::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:280::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:300::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:380::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:400::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:480::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
}
]
}
}
]
}
}
}
},
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "5",
"af-name": "IPv4 MVPN"
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "5",
"af-name": "IPv6 MVPN"
}
}
},
{
"afi": "16388",
"TABLE_safi": {
"ROW_safi": {
"safi": "71",
"af-name": "Link-State",
"table-version": "109316",
"router-id": "19.0.0.6",
"TABLE_rd": {
"ROW_rd": {
"TABLE_prefix": {
"ROW_prefix": [
{
"nonipprefix": "[E][u7][I0x0][N[c1][b9.9.9.9][br9.9.9.9]][R[c22][br29.1.1.1]][L[i19.0.101.1][n29.0.1.30]]/616",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"nonipprefix": "[E][u7][I0x0][N[c1][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.30]]/616",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"nonipprefix": "[E][u7][I0x0][N[c2][b9.9.9.9][br9.9.9.9]][R[c22][br29.1.1.1]][L[i19.0.101.1][n29.0.1.31]]/616",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"nonipprefix": "[E][u7][I0x0][N[c2][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.31]]/616",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"nonipprefix": "[E][u7][I0x0][N[c3][b9.9.9.9][br9.9.9.9]][R[c22][br29.1.1.1]][L[i19.0.101.1][n29.0.1.32]]/616",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"nonipprefix": "[E][u7][I0x0][N[c3][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.32]]/616",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"nonipprefix": "[E][u7][I0x0][N[c4][b9.9.9.9][br9.9.9.9]][R[c22][br29.1.1.1]][L[i19.0.101.1][n29.0.1.33]]/616",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"nonipprefix": "[E][u7][I0x0][N[c4][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.33]]/616",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"nonipprefix": "[E][u7][I0x0][N[c5][b9.9.9.9][br9.9.9.9]][R[c22][br29.1.1.1]][L[i19.0.101.1][n29.0.1.34]]/616",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"nonipprefix": "[E][u7][I0x0][N[c5][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.34]]/616",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"nonipprefix": "[E][u7][I0x0][N[c6][b9.9.9.9][br9.9.9.9]][R[c22][br29.1.1.1]][L[i19.0.101.1][n29.0.1.35]]/616",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"nonipprefix": "[E][u7][I0x0][N[c6][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.35]]/616",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"nonipprefix": "[E][u7][I0x0][N[c7][b9.9.9.9][br9.9.9.9]][R[c22][br29.1.1.1]][L[i19.0.101.1][n29.0.1.36]]/616",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"nonipprefix": "[E][u7][I0x0][N[c7][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.36]]/616",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"nonipprefix": "[E][u7][I0x0][N[c8][b9.9.9.9][br9.9.9.9]][R[c22][br29.1.1.1]][L[i19.0.101.1][n29.0.1.37]]/616",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"nonipprefix": "[E][u7][I0x0][N[c8][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.37]]/616",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"nonipprefix": "[E][u7][I0x0][N[c9][b9.9.9.9][br9.9.9.9]][R[c22][br29.1.1.1]][L[i19.0.101.1][n29.0.1.38]]/616",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"nonipprefix": "[E][u7][I0x0][N[c9][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.38]]/616",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"nonipprefix": "[E][u7][I0x0][N[c10][b9.9.9.9][br9.9.9.9]][R[c22][br29.1.1.1]][L[i19.0.101.1][n29.0.1.39]]/616",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"nonipprefix": "[E][u7][I0x0][N[c10][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.39]]/616",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "dampened",
"best": "none",
"type": "external",
"statuscode": "d",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
}
]
}
}
}
}
}
}
]
}
},
{
"vrf-name-out": "vpn1",
"TABLE_afi": {
"ROW_afi": [
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv4 Unicast",
"table-version": "278",
"router-id": "0.0.0.0",
"TABLE_rd": {
"ROW_rd": {
"TABLE_prefix": {
"ROW_prefix": [
{
"ipprefix": "1.1.1.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.2.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.3.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.4.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.5.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.6.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.7.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.8.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.9.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.10.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.3.1.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.3.2.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.3.3.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.3.4.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.3.5.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.3.6.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.3.7.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.3.8.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.3.9.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.3.10.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.6.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.6.1.128/25",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.7.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.8.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.9.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.10.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.11.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.12.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.13.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.14.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.15.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.1.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.2.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.3.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.4.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.5.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.6.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.7.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.8.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.9.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.10.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "104.0.0.0/8",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "redist",
"statuscode": "*",
"bestcode": ">",
"typecode": "r",
"ipnexthop": "0.0.0.0",
"weight": "32768",
"aspath": null,
"origin": "?",
"metric": "0",
"localpref": "100"
}
}
}
]
}
}
}
}
}
},
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "2",
"af-name": "IPv4 Multicast",
"table-version": "3",
"router-id": "0.0.0.0",
"TABLE_rd": {
"ROW_rd": {
"TABLE_prefix": {
"ROW_prefix": {
"ipprefix": "104.0.0.0/8",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "redist",
"statuscode": "*",
"bestcode": ">",
"typecode": "r",
"ipnexthop": "0.0.0.0",
"weight": "32768",
"aspath": null,
"origin": "?",
"metric": "0",
"localpref": "100"
}
}
}
}
}
}
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv6 Unicast",
"table-version": "65",
"router-id": "0.0.0.0",
"TABLE_rd": {
"ROW_rd": {
"TABLE_prefix": {
"ROW_prefix": [
{
"ipv6prefix": "0::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:80::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:100::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:180::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:200::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:280::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:300::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:380::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:400::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:480::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "106::/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "redist",
"statuscode": "*",
"bestcode": ">",
"typecode": "r",
"ipv6nexthop": "0::",
"weight": "32768",
"aspath": null,
"origin": "?",
"metric": "0",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::1:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::2:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::3:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::4:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::5:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::6:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::7:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::8:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::9:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
}
]
}
}
}
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "2",
"af-name": "IPv6 Multicast",
"table-version": "3",
"router-id": "0.0.0.0",
"TABLE_rd": {
"ROW_rd": {
"TABLE_prefix": {
"ROW_prefix": {
"ipv6prefix": "106::/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "redist",
"statuscode": "*",
"bestcode": ">",
"typecode": "r",
"ipv6nexthop": "0::",
"weight": "32768",
"aspath": null,
"origin": "?",
"metric": "0",
"localpref": "100"
}
}
}
}
}
}
}
}
}
]
}
},
{
"vrf-name-out": "vpn2",
"TABLE_afi": {
"ROW_afi": [
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv4 Unicast",
"table-version": "126",
"router-id": "0.0.0.0",
"TABLE_rd": {
"ROW_rd": {
"TABLE_prefix": {
"ROW_prefix": [
{
"ipprefix": "1.1.1.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.2.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.3.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.4.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.5.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.6.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.7.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.8.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.9.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.10.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.6.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.6.1.128/25",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.7.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.8.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.9.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.10.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.11.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.12.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.13.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.14.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.15.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "104.0.0.0/8",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "redist",
"statuscode": "*",
"bestcode": ">",
"typecode": "r",
"ipnexthop": "0.0.0.0",
"weight": "32768",
"aspath": null,
"origin": "?",
"metric": "0",
"localpref": "100"
}
}
}
]
}
}
}
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv6 Unicast",
"table-version": "103",
"router-id": "0.0.0.0",
"TABLE_rd": {
"ROW_rd": {
"TABLE_prefix": {
"ROW_prefix": [
{
"ipv6prefix": "106::/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "redist",
"statuscode": "*",
"bestcode": ">",
"typecode": "r",
"ipv6nexthop": "0::",
"weight": "32768",
"aspath": null,
"origin": "?",
"metric": "0",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::1:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::1:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::2:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::2:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::3:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::3:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::4:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::4:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::1:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::1:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::2:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::2:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::3:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::3:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::4:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::4:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
}
]
}
}
}
}
}
}
]
}
}
]
}
}
}
}
}
}
The CLI output example below corresponds to the payload example in the code pane on the right. For more information about the show bgp vrf all all community internet command, see the CLI command reference:
Note: This example was added in Cisco NX-OS Release 9.2(1).
CLI Output |
---|
|
show bgp vrf all all dampening flap-statistics
show bgp vrf all all dampening flap-statistics
import json
"""
Modify these please
"""
url='http://<IP_Address>/ins'
switchuser='<User_ID>'
switchpassword='<Password>'
myheaders={'content-type':'application/json'}
payload={
"ins_api":{
"version": "1.0",
"type": "cli_show",
"chunk": "0",
"sid": "1",
"input": "show bgp vrf all all dampening flap-statistics",
"output_format": "json"
}
response = requests.post(url,data=json.dumps(payload), headers=myheaders,auth=(switchuser,switchpassword)).json()
output = json.dumps(response, indent=4, sort_keys=True)
{
"ins_api": {
"type": "cli_show",
"version": "1.0",
"sid": "eoc",
"outputs": {
"output": {
"input": "show bgp vrf all all dampening flap-statistics",
"msg": "Success",
"code": "200",
"body": {
"TABLE_vrf": {
"ROW_vrf": [
{
"vrf-name-out": "default",
"TABLE_afi": {
"ROW_afi": [
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv4 Unicast",
"TABLE_rd": {
"ROW_rd": {
"dampening": "true",
"historypaths": "0",
"dampenedpaths": "10",
"TABLE_prefix": {
"ROW_prefix": [
{
"ipprefix": "2.0.0.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.0.1.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.0.2.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.0.3.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.0.4.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.0.5.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.0.6.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.0.7.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.0.8.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.0.9.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
}
]
}
}
}
}
}
},
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "2",
"af-name": "IPv4 Multicast",
"TABLE_rd": {
"ROW_rd": {
"dampening": "true",
"historypaths": "0",
"dampenedpaths": "10",
"TABLE_prefix": {
"ROW_prefix": [
{
"ipprefix": "2.1.0.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.1.1.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.1.2.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.1.3.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.1.4.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.1.5.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.1.6.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.1.7.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.1.8.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.1.9.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
}
]
}
}
}
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv6 Unicast",
"TABLE_rd": {
"ROW_rd": {
"dampening": "true",
"historypaths": "10",
"dampenedpaths": "0",
"TABLE_prefix": {
"ROW_prefix": [
{
"ipv6prefix": "2001::/112",
"status": "h",
"pathtype": "e",
"ipv6peer": "fec0::2002",
"flapcount": "7099",
"duration": "1d05h",
"reuse": null,
"penalty": "38",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipv6prefix": "2001::1:0/112",
"status": "h",
"pathtype": "e",
"ipv6peer": "fec0::2002",
"flapcount": "7099",
"duration": "1d05h",
"reuse": null,
"penalty": "38",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipv6prefix": "2001::2:0/112",
"status": "h",
"pathtype": "e",
"ipv6peer": "fec0::2002",
"flapcount": "7099",
"duration": "1d05h",
"reuse": null,
"penalty": "38",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipv6prefix": "2001::3:0/112",
"status": "h",
"pathtype": "e",
"ipv6peer": "fec0::2002",
"flapcount": "7099",
"duration": "1d05h",
"reuse": null,
"penalty": "38",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipv6prefix": "2001::4:0/112",
"status": "h",
"pathtype": "e",
"ipv6peer": "fec0::2002",
"flapcount": "7099",
"duration": "1d05h",
"reuse": null,
"penalty": "38",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipv6prefix": "2001::5:0/112",
"status": "h",
"pathtype": "e",
"ipv6peer": "fec0::2002",
"flapcount": "7099",
"duration": "1d05h",
"reuse": null,
"penalty": "38",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipv6prefix": "2001::6:0/112",
"status": "h",
"pathtype": "e",
"ipv6peer": "fec0::2002",
"flapcount": "7099",
"duration": "1d05h",
"reuse": null,
"penalty": "38",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipv6prefix": "2001::7:0/112",
"status": "h",
"pathtype": "e",
"ipv6peer": "fec0::2002",
"flapcount": "7099",
"duration": "1d05h",
"reuse": null,
"penalty": "38",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipv6prefix": "2001::8:0/112",
"status": "h",
"pathtype": "e",
"ipv6peer": "fec0::2002",
"flapcount": "7099",
"duration": "1d05h",
"reuse": null,
"penalty": "38",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipv6prefix": "2001::9:0/112",
"status": "h",
"pathtype": "e",
"ipv6peer": "fec0::2002",
"flapcount": "7099",
"duration": "1d05h",
"reuse": null,
"penalty": "38",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
}
]
}
}
}
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "2",
"af-name": "IPv6 Multicast",
"TABLE_rd": {
"ROW_rd": {
"dampening": "true",
"historypaths": "10",
"dampenedpaths": "0",
"TABLE_prefix": {
"ROW_prefix": [
{
"ipv6prefix": "3100::/112",
"status": "h",
"pathtype": "e",
"ipv6peer": "fec0::2002",
"flapcount": "7099",
"duration": "1d05h",
"reuse": null,
"penalty": "38",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipv6prefix": "3100::1:0/112",
"status": "h",
"pathtype": "e",
"ipv6peer": "fec0::2002",
"flapcount": "7099",
"duration": "1d05h",
"reuse": null,
"penalty": "38",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipv6prefix": "3100::2:0/112",
"status": "h",
"pathtype": "e",
"ipv6peer": "fec0::2002",
"flapcount": "7099",
"duration": "1d05h",
"reuse": null,
"penalty": "38",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipv6prefix": "3100::3:0/112",
"status": "h",
"pathtype": "e",
"ipv6peer": "fec0::2002",
"flapcount": "7099",
"duration": "1d05h",
"reuse": null,
"penalty": "38",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipv6prefix": "3100::4:0/112",
"status": "h",
"pathtype": "e",
"ipv6peer": "fec0::2002",
"flapcount": "7099",
"duration": "1d05h",
"reuse": null,
"penalty": "38",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipv6prefix": "3100::5:0/112",
"status": "h",
"pathtype": "e",
"ipv6peer": "fec0::2002",
"flapcount": "7099",
"duration": "1d05h",
"reuse": null,
"penalty": "38",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipv6prefix": "3100::6:0/112",
"status": "h",
"pathtype": "e",
"ipv6peer": "fec0::2002",
"flapcount": "7099",
"duration": "1d05h",
"reuse": null,
"penalty": "38",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipv6prefix": "3100::7:0/112",
"status": "h",
"pathtype": "e",
"ipv6peer": "fec0::2002",
"flapcount": "7099",
"duration": "1d05h",
"reuse": null,
"penalty": "38",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipv6prefix": "3100::8:0/112",
"status": "h",
"pathtype": "e",
"ipv6peer": "fec0::2002",
"flapcount": "7099",
"duration": "1d05h",
"reuse": null,
"penalty": "38",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipv6prefix": "3100::9:0/112",
"status": "h",
"pathtype": "e",
"ipv6peer": "fec0::2002",
"flapcount": "7099",
"duration": "1d05h",
"reuse": null,
"penalty": "38",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
}
]
}
}
}
}
}
},
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "128",
"af-name": "VPNv4 Unicast",
"TABLE_rd": {
"ROW_rd": [
{
"rd_val": "0:0",
"dampening": "true",
"historypaths": "0",
"dampenedpaths": "10",
"TABLE_prefix": {
"ROW_prefix": [
{
"ipprefix": "2.3.1.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.3.2.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.3.3.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.3.4.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.3.5.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.3.6.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.3.7.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.3.8.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.3.9.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"ipprefix": "2.3.10.0/24",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
}
]
}
},
{
"rd_val": "101:100",
"dampening": "true",
"historypaths": "0",
"dampenedpaths": "10"
},
{
"rd_val": "102:100",
"dampening": "true",
"historypaths": "0",
"dampenedpaths": "10"
},
{
"rd_val": "19.0.0.6:3",
"rd_vrf": "vpn1",
"dampening": "true",
"historypaths": "0",
"dampenedpaths": "10"
},
{
"rd_val": "19.0.0.6:4",
"rd_vrf": "vpn2",
"dampening": "true",
"historypaths": "0",
"dampenedpaths": "10"
}
]
}
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "128",
"af-name": "VPNv6 Unicast",
"TABLE_rd": {
"ROW_rd": [
{
"rd_val": "100:200",
"dampening": "true",
"historypaths": "0",
"dampenedpaths": "0"
},
{
"rd_val": "19.0.0.6:3",
"rd_vrf": "vpn1",
"dampening": "true",
"historypaths": "0",
"dampenedpaths": "0"
},
{
"rd_val": "19.0.0.6:4",
"rd_vrf": "vpn2",
"dampening": "true",
"historypaths": "0",
"dampenedpaths": "0"
},
{
"rd_val": "0xbb00010000000000",
"dampening": "true",
"historypaths": "0",
"dampenedpaths": "0"
}
]
}
}
}
},
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "5",
"af-name": "IPv4 MVPN"
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "5",
"af-name": "IPv6 MVPN"
}
}
},
{
"afi": "16388",
"TABLE_safi": {
"ROW_safi": {
"safi": "71",
"af-name": "Link-State",
"TABLE_rd": {
"ROW_rd": {
"dampening": "true",
"historypaths": "0",
"dampenedpaths": "10",
"TABLE_prefix": {
"ROW_prefix": [
{
"nonipprefix": "[E][u7][I0x0][N[c1][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.30]]/616",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"nonipprefix": "[E][u7][I0x0][N[c2][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.31]]/616",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"nonipprefix": "[E][u7][I0x0][N[c3][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.32]]/616",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"nonipprefix": "[E][u7][I0x0][N[c4][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.33]]/616",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"nonipprefix": "[E][u7][I0x0][N[c5][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.34]]/616",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"nonipprefix": "[E][u7][I0x0][N[c6][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.35]]/616",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"nonipprefix": "[E][u7][I0x0][N[c7][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.36]]/616",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"nonipprefix": "[E][u7][I0x0][N[c8][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.37]]/616",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"nonipprefix": "[E][u7][I0x0][N[c9][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.38]]/616",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
},
{
"nonipprefix": "[E][u7][I0x0][N[c10][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.39]]/616",
"status": "d",
"pathtype": "e",
"peer": "19.0.102.3",
"flapcount": "7103",
"duration": "1d05h",
"reuse": "00:01:40",
"penalty": "34",
"suppresslimit": "30",
"reuselimit": "10",
"best": "false"
}
]
}
}
}
}
}
}
]
}
},
{
"vrf-name-out": "vpn1",
"TABLE_afi": {
"ROW_afi": [
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv4 Unicast",
"TABLE_rd": {
"ROW_rd": {
"dampening": "true",
"historypaths": "0",
"dampenedpaths": "0"
}
}
}
}
},
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "2",
"af-name": "IPv4 Multicast",
"TABLE_rd": {
"ROW_rd": {
"dampening": "true",
"historypaths": "0",
"dampenedpaths": "0"
}
}
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv6 Unicast",
"TABLE_rd": {
"ROW_rd": {
"dampening": "true",
"historypaths": "0",
"dampenedpaths": "0"
}
}
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "2",
"af-name": "IPv6 Multicast",
"TABLE_rd": {
"ROW_rd": {
"dampening": "true",
"historypaths": "0",
"dampenedpaths": "0"
}
}
}
}
}
]
}
},
{
"vrf-name-out": "vpn2",
"TABLE_afi": {
"ROW_afi": [
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv4 Unicast"
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv6 Unicast"
}
}
}
]
}
}
]
}
}
}
}
}
}
The CLI output example below corresponds to the payload example in the code pane on the right. For more information about the show bgp vrf all all dampening flap-statistics command, see the CLI command reference:
Note: This example was added in Cisco NX-OS Release 9.2(1).
CLI Output |
---|
|
show bgp vrf all all dampening parameters
show bgp vrf all all dampening parameters
import json
"""
Modify these please
"""
url='http://<IP_Address>/ins'
switchuser='<User_ID>'
switchpassword='<Password>'
myheaders={'content-type':'application/json'}
payload={
"ins_api":{
"version": "1.0",
"type": "cli_show",
"chunk": "0",
"sid": "1",
"input": "show bgp vrf all all dampening parameters",
"output_format": "json"
}
response = requests.post(url,data=json.dumps(payload), headers=myheaders,auth=(switchuser,switchpassword)).json()
output = json.dumps(response, indent=4, sort_keys=True)
{
"ins_api": {
"type": "cli_show",
"version": "1.0",
"sid": "eoc",
"outputs": {
"output": {
"input": "show bgp vrf all all dampening parameters",
"msg": "Success",
"code": "200",
"body": {
"TABLE_vrf": {
"ROW_vrf": [
{
"vrf-name-out": "default",
"TABLE_afi": {
"ROW_afi": [
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv4 Unicast",
"TABLE_rd": {
"ROW_rd": {
"dampconfigured": "Configured",
"damphalflife": "1",
"dampsuppress": "30",
"dampreuse": "10",
"dampsuppresstime": "2",
"dampmaxpenalty": "40"
}
}
}
}
},
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "2",
"af-name": "IPv4 Multicast",
"TABLE_rd": {
"ROW_rd": {
"dampconfigured": "Configured",
"damphalflife": "1",
"dampsuppress": "30",
"dampreuse": "10",
"dampsuppresstime": "2",
"dampmaxpenalty": "40"
}
}
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv6 Unicast",
"TABLE_rd": {
"ROW_rd": {
"dampconfigured": "Configured",
"damphalflife": "1",
"dampsuppress": "30",
"dampreuse": "10",
"dampsuppresstime": "2",
"dampmaxpenalty": "40"
}
}
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "2",
"af-name": "IPv6 Multicast",
"TABLE_rd": {
"ROW_rd": {
"dampconfigured": "Configured",
"damphalflife": "1",
"dampsuppress": "30",
"dampreuse": "10",
"dampsuppresstime": "2",
"dampmaxpenalty": "40"
}
}
}
}
},
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "128",
"af-name": "VPNv4 Unicast",
"TABLE_rd": {
"ROW_rd": [
{
"rd_val": "0:0",
"dampconfigured": "Configured",
"damphalflife": "1",
"dampsuppress": "30",
"dampreuse": "10",
"dampsuppresstime": "2",
"dampmaxpenalty": "40"
},
{
"rd_val": "101:100",
"dampconfigured": "Configured",
"damphalflife": "1",
"dampsuppress": "30",
"dampreuse": "10",
"dampsuppresstime": "2",
"dampmaxpenalty": "40"
},
{
"rd_val": "102:100",
"dampconfigured": "Configured",
"damphalflife": "1",
"dampsuppress": "30",
"dampreuse": "10",
"dampsuppresstime": "2",
"dampmaxpenalty": "40"
},
{
"rd_val": "19.0.0.6:3",
"rd_vrf": "vpn1",
"dampconfigured": "Configured",
"damphalflife": "1",
"dampsuppress": "30",
"dampreuse": "10",
"dampsuppresstime": "2",
"dampmaxpenalty": "40"
},
{
"rd_val": "19.0.0.6:4",
"rd_vrf": "vpn2",
"dampconfigured": "Configured",
"damphalflife": "1",
"dampsuppress": "30",
"dampreuse": "10",
"dampsuppresstime": "2",
"dampmaxpenalty": "40"
}
]
}
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "128",
"af-name": "VPNv6 Unicast",
"TABLE_rd": {
"ROW_rd": [
{
"rd_val": "100:200",
"dampconfigured": "Configured",
"damphalflife": "1",
"dampsuppress": "30",
"dampreuse": "10",
"dampsuppresstime": "2",
"dampmaxpenalty": "40"
},
{
"rd_val": "19.0.0.6:3",
"rd_vrf": "vpn1",
"dampconfigured": "Configured",
"damphalflife": "1",
"dampsuppress": "30",
"dampreuse": "10",
"dampsuppresstime": "2",
"dampmaxpenalty": "40"
},
{
"rd_val": "19.0.0.6:4",
"rd_vrf": "vpn2",
"dampconfigured": "Configured",
"damphalflife": "1",
"dampsuppress": "30",
"dampreuse": "10",
"dampsuppresstime": "2",
"dampmaxpenalty": "40"
},
{
"rd_val": "0xbb00010000000000",
"dampconfigured": "Configured",
"damphalflife": "1",
"dampsuppress": "30",
"dampreuse": "10",
"dampsuppresstime": "2",
"dampmaxpenalty": "40"
}
]
}
}
}
},
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "5",
"af-name": "IPv4 MVPN"
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "5",
"af-name": "IPv6 MVPN"
}
}
},
{
"afi": "16388",
"TABLE_safi": {
"ROW_safi": {
"safi": "71",
"af-name": "Link-State",
"TABLE_rd": {
"ROW_rd": {
"dampconfigured": "Configured",
"damphalflife": "1",
"dampsuppress": "30",
"dampreuse": "10",
"dampsuppresstime": "2",
"dampmaxpenalty": "40"
}
}
}
}
}
]
}
},
{
"vrf-name-out": "vpn1",
"TABLE_afi": {
"ROW_afi": [
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv4 Unicast",
"TABLE_rd": {
"ROW_rd": {
"dampconfigured": "Configured",
"damphalflife": "1",
"dampsuppress": "30",
"dampreuse": "10",
"dampsuppresstime": "2",
"dampmaxpenalty": "40"
}
}
}
}
},
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "2",
"af-name": "IPv4 Multicast",
"TABLE_rd": {
"ROW_rd": {
"dampconfigured": "Configured",
"damphalflife": "1",
"dampsuppress": "30",
"dampreuse": "10",
"dampsuppresstime": "2",
"dampmaxpenalty": "40"
}
}
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv6 Unicast",
"TABLE_rd": {
"ROW_rd": {
"dampconfigured": "Configured",
"damphalflife": "1",
"dampsuppress": "30",
"dampreuse": "10",
"dampsuppresstime": "2",
"dampmaxpenalty": "40"
}
}
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "2",
"af-name": "IPv6 Multicast",
"TABLE_rd": {
"ROW_rd": {
"dampconfigured": "Configured",
"damphalflife": "1",
"dampsuppress": "30",
"dampreuse": "10",
"dampsuppresstime": "2",
"dampmaxpenalty": "40"
}
}
}
}
}
]
}
},
{
"vrf-name-out": "vpn2",
"TABLE_afi": {
"ROW_afi": [
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv4 Unicast"
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv6 Unicast"
}
}
}
]
}
}
]
}
}
}
}
}
}
The CLI output example below corresponds to the payload example in the code pane on the right. For more information about the show bgp vrf all all dampening parameters command, see the CLI command reference:
Note: This example was added in Cisco NX-OS Release 9.2(1).
CLI Output |
---|
|
show bgp vrf all all dampening history-paths
show bgp vrf all all dampening history-paths
import json
"""
Modify these please
"""
url='http://<IP_Address>/ins'
switchuser='<User_ID>'
switchpassword='<Password>'
myheaders={'content-type':'application/json'}
payload={
"ins_api":{
"version": "1.0",
"type": "cli_show",
"chunk": "0",
"sid": "1",
"input": "show bgp vrf all all dampening history-paths",
"output_format": "json"
}
response = requests.post(url,data=json.dumps(payload), headers=myheaders,auth=(switchuser,switchpassword)).json()
output = json.dumps(response, indent=4, sort_keys=True)
{
"ins_api": {
"type": "cli_show",
"version": "1.0",
"sid": "eoc",
"outputs": {
"output": {
"input": "show bgp vrf all all dampening history-paths",
"msg": "Success",
"code": "200",
"body": {
"TABLE_vrf": {
"ROW_vrf": [
{
"vrf-name-out": "default",
"TABLE_afi": {
"ROW_afi": [
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv4 Unicast",
"table-version": "109394",
"router-id": "19.0.0.6"
}
}
},
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "2",
"af-name": "IPv4 Multicast",
"table-version": "109348",
"router-id": "19.0.0.6"
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv6 Unicast",
"table-version": "109289",
"router-id": "19.0.0.6",
"TABLE_rd": {
"ROW_rd": {
"TABLE_prefix": {
"ROW_prefix": [
{
"ipv6prefix": "2001::/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "2001::1:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "2001::2:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "2001::3:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "2001::4:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "2001::5:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "2001::6:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "2001::7:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "2001::8:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "2001::9:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
}
]
}
}
}
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "2",
"af-name": "IPv6 Multicast",
"table-version": "109256",
"router-id": "19.0.0.6",
"TABLE_rd": {
"ROW_rd": {
"TABLE_prefix": {
"ROW_prefix": [
{
"ipv6prefix": "3100::/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "3100::1:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "3100::2:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "3100::3:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "3100::4:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "3100::5:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "3100::6:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "3100::7:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "3100::8:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "3100::9:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipv6nexthop": "fec0::2002",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
}
]
}
}
}
}
}
},
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "128",
"af-name": "VPNv4 Unicast",
"table-version": "110080",
"router-id": "19.0.0.6",
"TABLE_rd": {
"ROW_rd": [
{
"rd_val": "0:0"
},
{
"rd_val": "101:100"
},
{
"rd_val": "102:100"
},
{
"rd_val": "19.0.0.6:3",
"rd_vrf": "vpn1"
},
{
"rd_val": "19.0.0.6:4",
"rd_vrf": "vpn2"
}
]
}
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "128",
"af-name": "VPNv6 Unicast",
"table-version": "352",
"router-id": "19.0.0.6",
"TABLE_rd": {
"ROW_rd": [
{
"rd_val": "100:200"
},
{
"rd_val": "19.0.0.6:3",
"rd_vrf": "vpn1"
},
{
"rd_val": "19.0.0.6:4",
"rd_vrf": "vpn2"
},
{
"rd_val": "0xbb00010000000000"
}
]
}
}
}
},
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "5",
"af-name": "IPv4 MVPN"
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "5",
"af-name": "IPv6 MVPN"
}
}
},
{
"afi": "16388",
"TABLE_safi": {
"ROW_safi": {
"safi": "71",
"af-name": "Link-State",
"table-version": "109316",
"router-id": "19.0.0.6",
"TABLE_rd": {
"ROW_rd": {
"TABLE_prefix": {
"ROW_prefix": [
{
"nonipprefix": "[E][u7][I0x0][N[c1][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.30]]/616",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"nonipprefix": "[E][u7][I0x0][N[c2][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.31]]/616",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"nonipprefix": "[E][u7][I0x0][N[c3][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.32]]/616",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"nonipprefix": "[E][u7][I0x0][N[c4][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.33]]/616",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"nonipprefix": "[E][u7][I0x0][N[c5][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.34]]/616",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"nonipprefix": "[E][u7][I0x0][N[c6][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.35]]/616",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"nonipprefix": "[E][u7][I0x0][N[c7][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.36]]/616",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"nonipprefix": "[E][u7][I0x0][N[c8][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.37]]/616",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"nonipprefix": "[E][u7][I0x0][N[c9][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.38]]/616",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"nonipprefix": "[E][u7][I0x0][N[c10][b39.39.39.39][br39.39.39.39]][R[c22][br39.1.1.1]][L[i19.0.102.3][n39.0.1.39]]/616",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
}
]
}
}
}
}
}
}
]
}
},
{
"vrf-name-out": "vpn1",
"TABLE_afi": {
"ROW_afi": [
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv4 Unicast",
"table-version": "278",
"router-id": "0.0.0.0"
}
}
},
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "2",
"af-name": "IPv4 Multicast",
"table-version": "3",
"router-id": "0.0.0.0"
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv6 Unicast",
"table-version": "65",
"router-id": "0.0.0.0"
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "2",
"af-name": "IPv6 Multicast",
"table-version": "3",
"router-id": "0.0.0.0"
}
}
}
]
}
},
{
"vrf-name-out": "vpn2",
"TABLE_afi": {
"ROW_afi": [
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv4 Unicast"
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv6 Unicast"
}
}
}
]
}
}
]
}
}
}
}
}
}
The CLI output example below corresponds to the payload example in the code pane on the right. For more information about the show bgp vrf all all dampening history-paths command, see the CLI command reference:
Note: This example was added in Cisco NX-OS Release 9.2(1).
CLI Output |
---|
|
show bgp vrf all all received-paths
show bgp vrf all all received-paths
import json
"""
Modify these please
"""
url='http://<IP_Address>/ins'
switchuser='<User_ID>'
switchpassword='<Password>'
myheaders={'content-type':'application/json'}
payload={
"ins_api":{
"version": "1.0",
"type": "cli_show",
"chunk": "0",
"sid": "1",
"input": "show bgp vrf all all received-paths",
"output_format": "json"
}
response = requests.post(url,data=json.dumps(payload), headers=myheaders,auth=(switchuser,switchpassword)).json()
output = json.dumps(response, indent=4, sort_keys=True)
{
"ins_api": {
"type": "cli_show",
"version": "1.0",
"sid": "eoc",
"outputs": {
"output": {
"input": "show bgp vrf all all received-paths",
"msg": "Success",
"code": "200",
"body": {
"TABLE_vrf": {
"ROW_vrf": [
{
"vrf-name-out": "default",
"TABLE_afi": {
"ROW_afi": [
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv4 Unicast",
"table-version": "109394",
"router-id": "19.0.0.6",
"TABLE_rd": {
"ROW_rd": {
"TABLE_prefix": {
"ROW_prefix": [
{
"ipprefix": "1.1.1.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "invalid",
"best": "none",
"type": "internal",
"statuscode": null,
"bestcode": null,
"typecode": "i",
"ipnexthop": "21.0.101.99",
"weight": "0",
"aspath": "1 2 3 65000 23",
"origin": "i",
"metric": "2222",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.1.2.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "invalid",
"best": "none",
"type": "internal",
"statuscode": null,
"bestcode": null,
"typecode": "i",
"ipnexthop": "21.0.101.99",
"weight": "0",
"aspath": "1 2 3 65000 23",
"origin": "i",
"metric": "2222",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.1.3.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "invalid",
"best": "none",
"type": "internal",
"statuscode": null,
"bestcode": null,
"typecode": "i",
"ipnexthop": "21.0.101.99",
"weight": "0",
"aspath": "1 2 3 65000 23",
"origin": "i",
"metric": "2222",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.1.4.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "invalid",
"best": "none",
"type": "internal",
"statuscode": null,
"bestcode": null,
"typecode": "i",
"ipnexthop": "21.0.101.99",
"weight": "0",
"aspath": "1 2 3 65000 23",
"origin": "i",
"metric": "2222",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.1.5.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "invalid",
"best": "none",
"type": "internal",
"statuscode": null,
"bestcode": null,
"typecode": "i",
"ipnexthop": "21.0.101.99",
"weight": "0",
"aspath": "1 2 3 65000 23",
"origin": "i",
"metric": "2222",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.1.6.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "invalid",
"best": "none",
"type": "internal",
"statuscode": null,
"bestcode": null,
"typecode": "i",
"ipnexthop": "21.0.101.99",
"weight": "0",
"aspath": "1 2 3 65000 23",
"origin": "i",
"metric": "2222",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.1.7.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "invalid",
"best": "none",
"type": "internal",
"statuscode": null,
"bestcode": null,
"typecode": "i",
"ipnexthop": "21.0.101.99",
"weight": "0",
"aspath": "1 2 3 65000 23",
"origin": "i",
"metric": "2222",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.1.8.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "invalid",
"best": "none",
"type": "internal",
"statuscode": null,
"bestcode": null,
"typecode": "i",
"ipnexthop": "21.0.101.99",
"weight": "0",
"aspath": "1 2 3 65000 23",
"origin": "i",
"metric": "2222",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.1.9.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "invalid",
"best": "none",
"type": "internal",
"statuscode": null,
"bestcode": null,
"typecode": "i",
"ipnexthop": "21.0.101.99",
"weight": "0",
"aspath": "1 2 3 65000 23",
"origin": "i",
"metric": "2222",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.1.10.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "invalid",
"best": "none",
"type": "internal",
"statuscode": null,
"bestcode": null,
"typecode": "i",
"ipnexthop": "21.0.101.99",
"weight": "0",
"aspath": "1 2 3 65000 23",
"origin": "i",
"metric": "2222",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.6.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.7.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.8.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.9.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.10.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.11.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.12.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.13.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.14.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.15.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
}
]
}
}
}
}
}
},
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "2",
"af-name": "IPv4 Multicast",
"table-version": "109348",
"router-id": "19.0.0.6",
"TABLE_rd": {
"ROW_rd": {
"TABLE_prefix": {
"ROW_prefix": [
{
"ipprefix": "1.2.1.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.2.2.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.2.3.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.2.4.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.2.5.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.2.6.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.2.7.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.2.8.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.2.9.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.2.10.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.4.1.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.4.2.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.4.3.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.4.4.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.4.5.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.4.6.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.4.7.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.4.8.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.4.9.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.4.10.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "2 3 4",
"origin": "i",
"localpref": "100"
}
}
}
]
}
}
}
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv6 Unicast",
"table-version": "109289",
"router-id": "19.0.0.6",
"TABLE_rd": {
"ROW_rd": {
"TABLE_prefix": {
"ROW_prefix": [
{
"ipv6prefix": "abcd::/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::1:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::1:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::2:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::2:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::3:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::3:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::4:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::4:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::1:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::1:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::2:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::2:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::3:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::3:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::4:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::4:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
}
]
}
}
}
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "2",
"af-name": "IPv6 Multicast",
"table-version": "109256",
"router-id": "19.0.0.6",
"TABLE_rd": {
"ROW_rd": {
"TABLE_prefix": {
"ROW_prefix": [
{
"ipv6prefix": "eeee::/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": null,
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "eeee::8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": null,
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "eeee::1:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": null,
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "eeee::1:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": null,
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "eeee::2:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": null,
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "eeee::2:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": null,
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "eeee::3:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": null,
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "eeee::3:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": null,
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "eeee::4:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": null,
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "eeee::4:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": null,
"origin": "i",
"localpref": "100"
}
}
}
]
}
}
}
}
}
},
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "128",
"af-name": "VPNv4 Unicast",
"table-version": "110080",
"router-id": "19.0.0.6",
"TABLE_rd": {
"ROW_rd": [
{
"rd_val": "0:0"
},
{
"rd_val": "101:100"
},
{
"rd_val": "102:100"
},
{
"rd_val": "19.0.0.6:3",
"rd_vrf": "vpn1"
},
{
"rd_val": "19.0.0.6:4",
"rd_vrf": "vpn2"
}
]
}
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "128",
"af-name": "VPNv6 Unicast",
"table-version": "352",
"router-id": "19.0.0.6",
"TABLE_rd": {
"ROW_rd": [
{
"rd_val": "100:200"
},
{
"rd_val": "19.0.0.6:3",
"rd_vrf": "vpn1"
},
{
"rd_val": "19.0.0.6:4",
"rd_vrf": "vpn2"
},
{
"rd_val": "0xbb00010000000000"
}
]
}
}
}
},
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "5",
"af-name": "IPv4 MVPN"
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "5",
"af-name": "IPv6 MVPN"
}
}
},
{
"afi": "16388",
"TABLE_safi": {
"ROW_safi": {
"safi": "71",
"af-name": "Link-State",
"table-version": "109316",
"router-id": "19.0.0.6"
}
}
}
]
}
},
{
"vrf-name-out": "vpn1",
"TABLE_afi": {
"ROW_afi": [
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv4 Unicast",
"table-version": "278",
"router-id": "0.0.0.0"
}
}
},
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "2",
"af-name": "IPv4 Multicast",
"table-version": "3",
"router-id": "0.0.0.0"
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv6 Unicast",
"table-version": "65",
"router-id": "0.0.0.0"
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "2",
"af-name": "IPv6 Multicast",
"table-version": "3",
"router-id": "0.0.0.0"
}
}
}
]
}
},
{
"vrf-name-out": "vpn2",
"TABLE_afi": {
"ROW_afi": [
{
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv4 Unicast",
"table-version": "126",
"router-id": "0.0.0.0"
}
}
},
{
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "1",
"af-name": "IPv6 Unicast",
"table-version": "103",
"router-id": "0.0.0.0"
}
}
}
]
}
}
]
}
}
}
}
}
}
The CLI output example below corresponds to the payload example in the code pane on the right. For more information about the show bgp vrf all all received-paths command, see the CLI command reference:
Note: This example was added in Cisco NX-OS Release 9.2(1).
CLI Output |
---|
|
show bgp vrf all sessions
show bgp vrf all sessions
import json
"""
Modify these please
"""
url='http://<IP_Address>/ins'
switchuser='<User_ID>'
switchpassword='<Password>'
myheaders={'content-type':'application/json'}
payload={
"ins_api":{
"version": "1.0",
"type": "cli_show",
"chunk": "0",
"sid": "1",
"input": "show bgp vrf all sessions",
"output_format": "json"
}
response = requests.post(url,data=json.dumps(payload), headers=myheaders,auth=(switchuser,switchpassword)).json()
output = json.dumps(response, indent=4, sort_keys=True)
{
"ins_api": {
"type": "cli_show",
"version": "1.0",
"sid": "eoc",
"outputs": {
"output": {
"input": "show bgp vrf all sessions",
"msg": "Success",
"code": "200",
"body": {
"totalpeers": "7",
"totalestablishedpeers": "6",
"localas": "333",
"TABLE_vrf": {
"ROW_vrf": [
{
"vrf-name-out": "default",
"local-as": "333",
"vrfpeers": "6",
"vrfestablishedpeers": "6",
"router-id": "19.0.0.6",
"TABLE_neighbor": {
"ROW_neighbor": [
{
"neighbor-id": "19.0.101.1",
"connectionsdropped": "1",
"remoteas": "333",
"lastflap": "P1DT5H37M18S",
"lastread": "PT0S",
"lastwrite": "PT6S",
"state": "Established",
"localport": "179",
"remoteport": "35197",
"notificationssent": "0",
"notificationsreceived": "0"
},
{
"neighbor-id": "19.0.102.3",
"connectionsdropped": "1",
"remoteas": "888",
"lastflap": "P1DT5H37M18S",
"lastread": "PT0S",
"lastwrite": "PT6S",
"state": "Established",
"localport": "179",
"remoteport": "42275",
"notificationssent": "0",
"notificationsreceived": "0"
},
{
"neighbor-id": "19.0.102.4",
"connectionsdropped": "1",
"remoteas": "333",
"lastflap": "P1DT5H37M18S",
"lastread": "PT0S",
"lastwrite": "PT6S",
"state": "Established",
"localport": "179",
"remoteport": "35506",
"notificationssent": "0",
"notificationsreceived": "0"
},
{
"neighbor-id": "19.0.103.20",
"connectionsdropped": "0",
"remoteas": "333",
"lastflap": "P1DT5H37M18S",
"lastread": "PT0S",
"lastwrite": "PT6S",
"state": "Established",
"localport": "179",
"remoteport": "38455",
"notificationssent": "0",
"notificationsreceived": "0"
},
{
"neighbor-id": "fec0::1002",
"connectionsdropped": "1",
"remoteas": "333",
"lastflap": "P1DT5H37M18S",
"lastread": "PT0S",
"lastwrite": "PT6S",
"state": "Established",
"localport": "179",
"remoteport": "34053",
"notificationssent": "0",
"notificationsreceived": "0"
},
{
"neighbor-id": "fec0::2002",
"connectionsdropped": "1",
"remoteas": "888",
"lastflap": "P1DT5H37M18S",
"lastread": "PT0S",
"lastwrite": "PT6S",
"state": "Established",
"localport": "179",
"remoteport": "52760",
"notificationssent": "0",
"notificationsreceived": "0"
}
]
}
},
{
"vrf-name-out": "vpn1",
"local-as": "333",
"vrfpeers": "1",
"vrfestablishedpeers": "0",
"router-id": "0.0.0.0",
"TABLE_neighbor": {
"ROW_neighbor": {
"neighbor-id": "19.0.101.1",
"connectionsdropped": "0",
"remoteas": "0",
"lastflap": "P1DT22H6M39S",
"state": "Idle",
"localport": "0",
"remoteport": "0",
"notificationssent": "0",
"notificationsreceived": "0"
}
}
},
{
"vrf-name-out": "vpn2",
"local-as": "333",
"vrfpeers": "0",
"vrfestablishedpeers": "0",
"router-id": "0.0.0.0"
}
]
}
}
}
}
}
}
The CLI output example below corresponds to the payload example in the code pane on the right. For more information about the show bgp vrf all sessions command, see the CLI command reference:
Note: This example was added in Cisco NX-OS Release 9.2(1).
CLI Output |
---|
|
show bgp vrf all vpnv4 unicast
show bgp vrf all vpnv4 unicast
import json
"""
Modify these please
"""
url='http://<IP_Address>/ins'
switchuser='<User_ID>'
switchpassword='<Password>'
myheaders={'content-type':'application/json'}
payload={
"ins_api":{
"version": "1.0",
"type": "cli_show",
"chunk": "0",
"sid": "1",
"input": "show bgp vrf all vpnv4 unicast",
"output_format": "json"
}
response = requests.post(url,data=json.dumps(payload), headers=myheaders,auth=(switchuser,switchpassword)).json()
output = json.dumps(response, indent=4, sort_keys=True)
{
"ins_api": {
"type": "cli_show",
"version": "1.0",
"sid": "eoc",
"outputs": {
"output": {
"input": "show bgp vrf all vpnv4 unicast",
"msg": "Success",
"code": "200",
"body": {
"TABLE_vrf": {
"ROW_vrf": {
"vrf-name-out": "default",
"TABLE_afi": {
"ROW_afi": {
"afi": "1",
"TABLE_safi": {
"ROW_safi": {
"safi": "128",
"af-name": "VPNv4 Unicast",
"table-version": "110080",
"router-id": "19.0.0.6",
"TABLE_rd": {
"ROW_rd": [
{
"rd_val": "0:0",
"TABLE_prefix": {
"ROW_prefix": [
{
"ipprefix": "2.3.1.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.3.2.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.3.3.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.3.4.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.3.5.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.3.6.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.3.7.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.3.8.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.3.9.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipprefix": "2.3.10.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "history",
"best": "none",
"type": "external",
"statuscode": "h",
"bestcode": null,
"typecode": "e",
"ipnexthop": "19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
}
]
}
},
{
"rd_val": "101:100",
"TABLE_prefix": {
"ROW_prefix": [
{
"ipprefix": "1.3.1.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "valid",
"best": "none",
"type": "internal",
"statuscode": "*",
"bestcode": null,
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "3 4 5 6",
"origin": "i",
"metric": "4444",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.3.2.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "valid",
"best": "none",
"type": "internal",
"statuscode": "*",
"bestcode": null,
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "3 4 5 6",
"origin": "i",
"metric": "4444",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.3.3.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "valid",
"best": "none",
"type": "internal",
"statuscode": "*",
"bestcode": null,
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "3 4 5 6",
"origin": "i",
"metric": "4444",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.3.4.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "valid",
"best": "none",
"type": "internal",
"statuscode": "*",
"bestcode": null,
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "3 4 5 6",
"origin": "i",
"metric": "4444",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.3.5.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "valid",
"best": "none",
"type": "internal",
"statuscode": "*",
"bestcode": null,
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "3 4 5 6",
"origin": "i",
"metric": "4444",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.3.6.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "valid",
"best": "none",
"type": "internal",
"statuscode": "*",
"bestcode": null,
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "3 4 5 6",
"origin": "i",
"metric": "4444",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.3.7.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "valid",
"best": "none",
"type": "internal",
"statuscode": "*",
"bestcode": null,
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "3 4 5 6",
"origin": "i",
"metric": "4444",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.3.8.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "valid",
"best": "none",
"type": "internal",
"statuscode": "*",
"bestcode": null,
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "3 4 5 6",
"origin": "i",
"metric": "4444",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.3.9.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "valid",
"best": "none",
"type": "internal",
"statuscode": "*",
"bestcode": null,
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "3 4 5 6",
"origin": "i",
"metric": "4444",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
]
}
},
{
"ipprefix": "1.3.10.0/24",
"TABLE_path": {
"ROW_path": [
{
"pathnr": "0",
"status": "valid",
"best": "none",
"type": "internal",
"statuscode": "*",
"bestcode": null,
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "3 4 5 6",
"origin": "i",
"metric": "4444",
"localpref": "100"
},
{
"pathnr": "1",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
]
}
}
]
}
},
{
"rd_val": "102:100",
"TABLE_prefix": {
"ROW_prefix": [
{
"ipprefix": "102.1.1.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.2.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.3.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.4.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.5.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.6.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.7.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.8.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.9.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.10.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
}
]
}
},
{
"rd_val": "19.0.0.6:3",
"rd_vrf": "vpn1",
"TABLE_prefix": {
"ROW_prefix": [
{
"ipprefix": "1.1.1.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.2.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.3.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.4.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.5.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.6.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.7.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.8.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.9.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.10.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.3.1.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.3.2.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.3.3.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.3.4.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.3.5.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.3.6.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.3.7.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.3.8.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.3.9.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.3.10.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{43428 14808 51723 23103 60017 31397 2777 39692 11071 47986}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.6.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.6.1.128/25",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.7.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.8.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.9.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.10.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.11.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.12.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.13.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.14.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.15.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.1.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.2.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.3.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.4.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.5.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.6.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.7.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.8.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.9.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "102.1.10.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "200 300 400 500 600 700",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "104.0.0.0/8",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "redist",
"statuscode": "*",
"bestcode": ">",
"typecode": "r",
"ipnexthop": "0.0.0.0",
"weight": "32768",
"aspath": null,
"origin": "?",
"metric": "0",
"localpref": "100"
}
}
}
]
}
},
{
"rd_val": "19.0.0.6:4",
"rd_vrf": "vpn2",
"TABLE_prefix": {
"ROW_prefix": [
{
"ipprefix": "1.1.1.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.2.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.3.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.4.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.5.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.6.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.7.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.8.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.9.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.1.10.0/24",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.102.4",
"weight": "0",
"aspath": "{1956 38871 10250 47165 18545 55460 26839 63754 35134 6514}",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.6.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.6.1.128/25",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.7.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.8.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.9.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.10.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.11.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.12.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.13.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.14.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "1.15.0.0/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipnexthop": "19.0.101.1",
"weight": "0",
"aspath": "10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipprefix": "104.0.0.0/8",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "redist",
"statuscode": "*",
"bestcode": ">",
"typecode": "r",
"ipnexthop": "0.0.0.0",
"weight": "32768",
"aspath": null,
"origin": "?",
"metric": "0",
"localpref": "100"
}
}
}
]
}
}
]
}
}
}
}
}
}
}
}
}
}
}
}
The CLI output example below corresponds to the payload example in the code pane on the right. For more information about the show bgp vrf all vpnv4 unicast command, see the CLI command reference:
Note: This example was added in Cisco NX-OS Release 9.2(1).
CLI Output |
---|
|
show bgp vrf all vpnv6 unicast
show bgp vrf all vpnv6 unicast
import json
"""
Modify these please
"""
url='http://<IP_Address>/ins'
switchuser='<User_ID>'
switchpassword='<Password>'
myheaders={'content-type':'application/json'}
payload={
"ins_api":{
"version": "1.0",
"type": "cli_show",
"chunk": "0",
"sid": "1",
"input": "show bgp vrf all vpnv6 unicast",
"output_format": "json"
}
response = requests.post(url,data=json.dumps(payload), headers=myheaders,auth=(switchuser,switchpassword)).json()
output = json.dumps(response, indent=4, sort_keys=True)
{
"ins_api": {
"type": "cli_show",
"version": "1.0",
"sid": "eoc",
"outputs": {
"output": {
"input": "show bgp vrf all vpnv6 unicast",
"msg": "Success",
"code": "200",
"body": {
"TABLE_vrf": {
"ROW_vrf": {
"vrf-name-out": "default",
"TABLE_afi": {
"ROW_afi": {
"afi": "2",
"TABLE_safi": {
"ROW_safi": {
"safi": "128",
"af-name": "VPNv6 Unicast",
"table-version": "352",
"router-id": "19.0.0.6",
"TABLE_rd": {
"ROW_rd": [
{
"rd_val": "100:200",
"TABLE_prefix": {
"ROW_prefix": [
{
"ipv6prefix": "aaaa:1::/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::1:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::2:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::3:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::4:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::5:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::6:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::7:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::8:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::9:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
}
]
}
},
{
"rd_val": "19.0.0.6:3",
"rd_vrf": "vpn1",
"TABLE_prefix": {
"ROW_prefix": [
{
"ipv6prefix": "0::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:80::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:100::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:180::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:200::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:280::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:300::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:380::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:400::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:480::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "106::/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "redist",
"statuscode": "*",
"bestcode": ">",
"typecode": "r",
"ipv6nexthop": "0::",
"weight": "32768",
"aspath": null,
"origin": "?",
"metric": "0",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::1:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::2:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::3:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::4:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::5:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::6:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::7:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::8:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "aaaa:1::9:0/112",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "::ffff:19.0.101.1",
"weight": "0",
"aspath": "3 10 20 30",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
}
]
}
},
{
"rd_val": "19.0.0.6:4",
"rd_vrf": "vpn2",
"TABLE_prefix": {
"ROW_prefix": [
{
"ipv6prefix": "106::/16",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "redist",
"statuscode": "*",
"bestcode": ">",
"typecode": "r",
"ipv6nexthop": "0::",
"weight": "32768",
"aspath": null,
"origin": "?",
"metric": "0",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::1:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::1:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::2:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::2:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::3:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::3:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::4:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "abcd::4:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "3 10 20 30 40 50 60 70 80 90",
"origin": "i",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::1:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::1:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::2:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::2:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::3:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::3:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::4:0/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
},
{
"ipv6prefix": "dddd::4:8000/113",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "internal",
"statuscode": "*",
"bestcode": ">",
"typecode": "i",
"ipv6nexthop": "fec0::1002",
"weight": "0",
"aspath": "31397 2777 39692 11071 47986",
"origin": "i",
"metric": "4444",
"localpref": "100"
}
}
}
]
}
},
{
"rd_val": "0xbb00010000000000",
"TABLE_prefix": {
"ROW_prefix": [
{
"ipv6prefix": "0::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:80::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:100::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:180::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:200::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:280::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:300::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:380::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:400::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
},
{
"ipv6prefix": "0:0:480::/41",
"TABLE_path": {
"ROW_path": {
"pathnr": "0",
"status": "valid",
"best": "bestpath",
"type": "external",
"statuscode": "*",
"bestcode": ">",
"typecode": "e",
"ipv6nexthop": "::ffff:19.0.102.3",
"weight": "0",
"aspath": "888 10 20 30 40 50 60 70 80 90",
"origin": "i"
}
}
}
]
}
}
]
}
}
}
}
}
}
}
}
}
}
}
}
The CLI output example below corresponds to the payload example in the code pane on the right. For more information about the show bgp vrf all vpnv4 unicast command, see the CLI command reference:
Note: This example was added in Cisco NX-OS Release 9.2(1).
CLI Output |
---|
|