From e4fdbbd82d652cfb197fafb3552de7f59afde9d7 Mon Sep 17 00:00:00 2001 From: Tony Murray Date: Mon, 3 Oct 2022 12:55:49 -0500 Subject: [PATCH] Fix bgp-peers bgpIfAce bug and update test data (#14420) * Update bgp-peers test data * Fix bgp-peer bgpPeerIface * Update test data, requires ipv4_addresses table --- includes/polling/bgp-peers.inc.php | 30 +- tests/data/aos7.json | 32 +- tests/data/arista_eos.json | 16 +- tests/data/comware.json | 16 +- tests/data/cumulus_cumulus.json | 22 +- tests/data/dell-os10.json | 8 +- tests/data/dnos_bgp.json | 16 +- tests/data/edgeos.json | 8 +- tests/data/ios_3560g.json | 40 +- tests/data/iosxe.json | 80 ++-- tests/data/iosxe_c9400.json | 32 +- tests/data/iosxr.json | 680 ++++++++++++++-------------- tests/data/iosxr_asr9001.json | 16 +- tests/data/iosxr_asr9901.json | 16 +- tests/data/ironware.json | 40 +- tests/data/junos_ex.json | 24 +- tests/data/junos_mx.json | 60 +-- tests/data/junos_mx5t-isis.json | 8 +- tests/data/junos_rpm.json | 32 +- tests/data/junos_vmx.json | 16 +- tests/data/pfsense_frr-bgp.json | 16 +- tests/data/slxos_slx9150.json | 8 +- tests/data/timos_7705.json | 16 +- tests/data/vrp_5720-vrf.json | 16 +- tests/data/vrp_5720.json | 16 +- tests/data/vrp_ce12804-withvrf.json | 8 +- tests/data/vrp_ne8000.json | 184 ++++---- 27 files changed, 725 insertions(+), 731 deletions(-) diff --git a/includes/polling/bgp-peers.inc.php b/includes/polling/bgp-peers.inc.php index a54cc5bb67..cca590361a 100644 --- a/includes/polling/bgp-peers.inc.php +++ b/includes/polling/bgp-peers.inc.php @@ -432,26 +432,20 @@ if (\LibreNMS\Config::get('enable_bgp')) { } // --- Fill the bgpPeerIface column --- - $bgpPeerIfaceFilled = false; - if (isset($peer_data['bgpPeerIface'])) { - if (! (filter_var($peer_data['bgpPeerIface'], FILTER_VALIDATE_IP, FILTER_FLAG_IPV4)) && ! (filter_var($peer_data['bgpPeerIface'], FILTER_VALIDATE_IP, FILTER_FLAG_IPV6))) { - // The column is already filled with the ifName, we change it to ifIndex - $bgpPeerIface = DB::table('ports')->where('device_id', '=', $device['device_id'])->where('ifName', '=', $peer_data['bgpPeerIface'])->first()->ifIndex; - $bgpPeerIfaceFilled = true; - } - } - if (! ($bgpPeerIfaceFilled) && isset($peer_data['bgpLocalAddr'])) { + if (isset($peer_data['bgpPeerIface']) && ! IP::isValid($peer_data['bgpPeerIface'])) { + // The column is already filled with the ifName, we change it to ifIndex + $peer_data['bgpPeerIface'] = DeviceCache::getPrimary()->ports()->where('ifName', '=', $peer_data['bgpPeerIface'])->value('ifIndex'); + } elseif (isset($peer_data['bgpLocalAddr']) && IP::isValid($peer_data['bgpLocalAddr'])) { // else we use the bgpLocalAddr to find ifIndex - if (filter_var($peer_data['bgpLocalAddr'], FILTER_VALIDATE_IP, FILTER_FLAG_IPV4)) { - $ipv4 = IP::fromHexString($peer_data['bgpLocalAddr'])->uncompressed(); - $bgpPeerIface = DB::table('ports')->join('ipv4_addresses', 'ports.port_id', '=', 'ipv4_addresses.port_id')->where('ipv4_address', '=', $ipv4)->first()->ifIndex; - } elseif (filter_var($peer_data['bgpLocalAddr'], FILTER_VALIDATE_IP, FILTER_FLAG_IPV6)) { - $ipv6 = IP::fromHexString($peer_data['bgpLocalAddr'])->uncompressed(); - $bgpPeerIface = DB::table('ports')->join('ipv6_addresses', 'ports.port_id', '=', 'ipv6_addresses.port_id')->where('ipv6_address', '=', $ipv6)->first()->ifIndex; + try { + $ip_address = IP::parse($peer_data['bgpLocalAddr']); + $family = $ip_address->getFamily(); + $peer_data['bgpPeerIface'] = DB::table('ports')->join("{$family}_addresses", 'ports.port_id', '=', "{$family}_addresses.port_id")->where("{$family}_address", '=', $ip_address->uncompressed())->value('ifIndex'); + } catch (InvalidIpException $e) { + $peer_data['bgpPeerIface'] = null; } - } - if (isset($bgpPeerIface)) { - $peer_data['bgpPeerIface'] = $bgpPeerIface; + } else { + $peer_data['bgpPeerIface'] = null; } } diff --git a/tests/data/aos7.json b/tests/data/aos7.json index 2b003e0919..f80ea56cc7 100644 --- a/tests/data/aos7.json +++ b/tests/data/aos7.json @@ -78348,6 +78348,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -78359,8 +78360,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 64663, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -78371,6 +78371,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -78382,8 +78383,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 64663, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -78394,6 +78394,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -78405,8 +78406,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 64663, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -78417,6 +78417,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -78428,8 +78429,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 64663, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ], "bgpPeers_cbgp": [ @@ -78542,6 +78542,7 @@ "bgpPeerLastErrorCode": 6, "bgpPeerLastErrorSubCode": 3, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "hle-sg066-ro-lug-1", @@ -78553,8 +78554,7 @@ "bgpPeerInUpdateElapsedTime": 4020, "context_name": "", "bgpLocalAs": 64663, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -78565,6 +78565,7 @@ "bgpPeerLastErrorCode": 6, "bgpPeerLastErrorSubCode": 3, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "hle-sg066-ro-lug-2", @@ -78576,8 +78577,7 @@ "bgpPeerInUpdateElapsedTime": 5671281, "context_name": "", "bgpLocalAs": 64663, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -78588,6 +78588,7 @@ "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "hle-sg068-ro-tsr-1", @@ -78599,8 +78600,7 @@ "bgpPeerInUpdateElapsedTime": 6290, "context_name": "", "bgpLocalAs": 64663, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -78611,6 +78611,7 @@ "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "hle-sg068-ro-tsr-2", @@ -78622,8 +78623,7 @@ "bgpPeerInUpdateElapsedTime": 9518677, "context_name": "", "bgpLocalAs": 64663, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ], "bgpPeers_cbgp": [ diff --git a/tests/data/arista_eos.json b/tests/data/arista_eos.json index 3f8bf4b2bf..9f514232c4 100644 --- a/tests/data/arista_eos.json +++ b/tests/data/arista_eos.json @@ -5463,6 +5463,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -5474,8 +5475,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65000, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -5486,6 +5486,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -5497,8 +5498,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65000, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ], "bgpPeers_cbgp": [ @@ -5563,6 +5563,7 @@ "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": "Cease/administrative shutdown", + "bgpPeerIface": null, "bgpLocalAddr": "192.168.0.1", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "peer.example.com EBGP", @@ -5574,8 +5575,7 @@ "bgpPeerInUpdateElapsedTime": 4, "context_name": "", "bgpLocalAs": 65000, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -5586,6 +5586,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "2001:0550:0002:002f:0000:0000:0033:0002", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -5597,8 +5598,7 @@ "bgpPeerInUpdateElapsedTime": 17, "context_name": "", "bgpLocalAs": 65000, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ], "bgpPeers_cbgp": [ diff --git a/tests/data/comware.json b/tests/data/comware.json index 071bec4d7e..f55d8efe12 100644 --- a/tests/data/comware.json +++ b/tests/data/comware.json @@ -11,6 +11,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -22,8 +23,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65504, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -34,6 +34,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -45,8 +46,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65504, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ] }, @@ -61,6 +61,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.3.51", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -72,8 +73,7 @@ "bgpPeerInUpdateElapsedTime": 259280, "context_name": "", "bgpLocalAs": 65504, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -84,6 +84,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.2.58", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -95,8 +96,7 @@ "bgpPeerInUpdateElapsedTime": 22497219, "context_name": "", "bgpLocalAs": 65504, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ] } diff --git a/tests/data/cumulus_cumulus.json b/tests/data/cumulus_cumulus.json index 70488fc9e2..06ba29646b 100644 --- a/tests/data/cumulus_cumulus.json +++ b/tests/data/cumulus_cumulus.json @@ -3066,21 +3066,21 @@ "astext": "", "bgpPeerIdentifier": "192.168.0.5", "bgpPeerRemoteAs": 65005, - "bgpPeerState": "idle", - "bgpPeerAdminStatus": "stop", - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, + "bgpPeerState": "established", + "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": 0, + "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, "bgpPeerIface": null, - "bgpLocalAddr": "0.0.0.0", + "bgpLocalAddr": "192.168.125.2", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", - "bgpPeerInUpdates": 0, - "bgpPeerOutUpdates": 0, - "bgpPeerInTotalMessages": 0, - "bgpPeerOutTotalMessages": 0, - "bgpPeerFsmEstablishedTime": 0, - "bgpPeerInUpdateElapsedTime": 0, + "bgpPeerInUpdates": 6, + "bgpPeerOutUpdates": 6, + "bgpPeerInTotalMessages": 32629, + "bgpPeerOutTotalMessages": 32629, + "bgpPeerFsmEstablishedTime": 97875, + "bgpPeerInUpdateElapsedTime": 11473, "context_name": "", "bgpLocalAs": 65002, "vrfLocalAs": null diff --git a/tests/data/dell-os10.json b/tests/data/dell-os10.json index bbeb1e8033..b306bed320 100644 --- a/tests/data/dell-os10.json +++ b/tests/data/dell-os10.json @@ -8973,6 +8973,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -8984,8 +8985,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 64514, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ], "bgpPeers_cbgp": [ @@ -9026,6 +9026,7 @@ "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": "Reset by peer", + "bgpPeerIface": null, "bgpLocalAddr": "169.254.247.2", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "DIRECT CONNECT", @@ -9037,8 +9038,7 @@ "bgpPeerInUpdateElapsedTime": 27997600, "context_name": null, "bgpLocalAs": 64514, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ], "bgpPeers_cbgp": [ diff --git a/tests/data/dnos_bgp.json b/tests/data/dnos_bgp.json index 8c59883976..c20c875d2a 100644 --- a/tests/data/dnos_bgp.json +++ b/tests/data/dnos_bgp.json @@ -38892,6 +38892,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -38903,8 +38904,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 55832, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -38915,6 +38915,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -38926,8 +38927,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 55832, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ] }, @@ -38942,6 +38942,7 @@ "bgpPeerLastErrorCode": 4, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "10.2.0.51", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -38953,8 +38954,7 @@ "bgpPeerInUpdateElapsedTime": 13, "context_name": "", "bgpLocalAs": 55832, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -38965,6 +38965,7 @@ "bgpPeerLastErrorCode": 4, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "99.99.132.49", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -38976,8 +38977,7 @@ "bgpPeerInUpdateElapsedTime": 12, "context_name": "", "bgpLocalAs": 55832, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ] } diff --git a/tests/data/edgeos.json b/tests/data/edgeos.json index 4e30c8d672..636a85a181 100644 --- a/tests/data/edgeos.json +++ b/tests/data/edgeos.json @@ -3808,6 +3808,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -3819,8 +3820,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65200, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ] }, @@ -3835,6 +3835,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "172.16.200.2", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -3846,8 +3847,7 @@ "bgpPeerInUpdateElapsedTime": 164352, "context_name": "", "bgpLocalAs": 65200, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ] } diff --git a/tests/data/ios_3560g.json b/tests/data/ios_3560g.json index 6ac8c8bed2..11a33dc802 100644 --- a/tests/data/ios_3560g.json +++ b/tests/data/ios_3560g.json @@ -8,6 +8,10 @@ "bgpPeerRemoteAs": 64513, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -19,11 +23,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 64513, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -31,6 +31,10 @@ "bgpPeerRemoteAs": 64513, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -42,11 +46,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 64513, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null } ], "bgpPeers_cbgp": [ @@ -156,6 +156,10 @@ "bgpPeerRemoteAs": 64513, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.99.21", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -167,11 +171,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 64513, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -179,6 +179,10 @@ "bgpPeerRemoteAs": 64513, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.99.21", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -190,11 +194,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 64513, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null } ], "bgpPeers_cbgp": [ diff --git a/tests/data/iosxe.json b/tests/data/iosxe.json index 03040c225d..3f5ed84b4b 100644 --- a/tests/data/iosxe.json +++ b/tests/data/iosxe.json @@ -8,6 +8,10 @@ "bgpPeerRemoteAs": 65083, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -19,11 +23,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65031, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -31,6 +31,10 @@ "bgpPeerRemoteAs": 65083, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -42,11 +46,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65031, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -54,6 +54,10 @@ "bgpPeerRemoteAs": 65083, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -65,11 +69,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65031, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -77,6 +77,10 @@ "bgpPeerRemoteAs": 65083, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -88,11 +92,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65031, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null } ], "bgpPeers_cbgp": [ @@ -202,6 +202,10 @@ "bgpPeerRemoteAs": 65083, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "10.44.32.14", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -213,11 +217,7 @@ "bgpPeerInUpdateElapsedTime": 8491, "context_name": "", "bgpLocalAs": 65031, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -225,6 +225,10 @@ "bgpPeerRemoteAs": 65083, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "10.45.63.162", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -236,11 +240,7 @@ "bgpPeerInUpdateElapsedTime": 8491, "context_name": "", "bgpLocalAs": 65031, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -248,6 +248,10 @@ "bgpPeerRemoteAs": 65083, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "2001:0db8:85a3:0000:341a:8a2e:03e1:000e", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -259,11 +263,7 @@ "bgpPeerInUpdateElapsedTime": 8486, "context_name": "", "bgpLocalAs": 65031, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -271,6 +271,10 @@ "bgpPeerRemoteAs": 65083, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "2001:0db8:85a3:0000:341a:8a2e:03e2:00a2", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -282,11 +286,7 @@ "bgpPeerInUpdateElapsedTime": 8486, "context_name": "", "bgpLocalAs": 65031, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null } ], "bgpPeers_cbgp": [ diff --git a/tests/data/iosxe_c9400.json b/tests/data/iosxe_c9400.json index 672e5666d6..f4e478aca1 100644 --- a/tests/data/iosxe_c9400.json +++ b/tests/data/iosxe_c9400.json @@ -32953,6 +32953,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -32964,8 +32965,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65031, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -32976,6 +32976,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -32987,8 +32988,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65031, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -32999,6 +32999,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -33010,8 +33011,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65031, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -33022,6 +33022,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -33033,8 +33034,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65031, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ], "bgpPeers_cbgp": [ @@ -33147,6 +33147,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "10.44.32.14", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -33158,8 +33159,7 @@ "bgpPeerInUpdateElapsedTime": 8491, "context_name": "", "bgpLocalAs": 65031, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -33170,6 +33170,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "10.45.63.162", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -33181,8 +33182,7 @@ "bgpPeerInUpdateElapsedTime": 8491, "context_name": "", "bgpLocalAs": 65031, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -33193,6 +33193,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "2001:0db8:85a3:0000:341a:8a2e:03e1:000e", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -33204,8 +33205,7 @@ "bgpPeerInUpdateElapsedTime": 8486, "context_name": "", "bgpLocalAs": 65031, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -33216,6 +33216,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "2001:0db8:85a3:0000:341a:8a2e:03e2:00a2", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -33227,8 +33228,7 @@ "bgpPeerInUpdateElapsedTime": 8486, "context_name": "", "bgpLocalAs": 65031, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ], "bgpPeers_cbgp": [ diff --git a/tests/data/iosxr.json b/tests/data/iosxr.json index a974932316..92504543de 100644 --- a/tests/data/iosxr.json +++ b/tests/data/iosxr.json @@ -8,6 +8,10 @@ "bgpPeerRemoteAs": 65578, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -19,11 +23,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -31,6 +31,10 @@ "bgpPeerRemoteAs": 65787, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -42,11 +46,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -54,6 +54,10 @@ "bgpPeerRemoteAs": 65787, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -65,11 +69,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -77,6 +77,10 @@ "bgpPeerRemoteAs": 65787, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -88,11 +92,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -100,6 +100,10 @@ "bgpPeerRemoteAs": 65787, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -111,11 +115,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -123,6 +123,10 @@ "bgpPeerRemoteAs": 65686, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -134,11 +138,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -146,6 +146,10 @@ "bgpPeerRemoteAs": 65755, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -157,11 +161,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -169,6 +169,10 @@ "bgpPeerRemoteAs": 65384, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -180,11 +184,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -192,6 +192,10 @@ "bgpPeerRemoteAs": 65385, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -203,11 +207,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -215,6 +215,10 @@ "bgpPeerRemoteAs": 65385, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -226,11 +230,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -238,6 +238,10 @@ "bgpPeerRemoteAs": 65257, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -249,11 +253,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -261,6 +261,10 @@ "bgpPeerRemoteAs": 65257, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -272,11 +276,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -284,6 +284,10 @@ "bgpPeerRemoteAs": 65005, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -295,11 +299,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -307,6 +307,10 @@ "bgpPeerRemoteAs": 65537, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -318,11 +322,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -330,6 +330,10 @@ "bgpPeerRemoteAs": 65577, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -341,11 +345,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -353,6 +353,10 @@ "bgpPeerRemoteAs": 65003, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -364,11 +368,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -376,6 +376,10 @@ "bgpPeerRemoteAs": 65002, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -387,11 +391,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -399,6 +399,10 @@ "bgpPeerRemoteAs": 65451, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -410,11 +414,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -422,6 +422,10 @@ "bgpPeerRemoteAs": 65004, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -433,11 +437,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -445,6 +445,10 @@ "bgpPeerRemoteAs": 65604, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -456,11 +460,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -468,6 +468,10 @@ "bgpPeerRemoteAs": 65276, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -479,11 +483,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -491,6 +491,10 @@ "bgpPeerRemoteAs": 65736, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -502,11 +506,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -514,6 +514,10 @@ "bgpPeerRemoteAs": 65550, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -525,11 +529,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -537,6 +537,10 @@ "bgpPeerRemoteAs": 65010, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -548,11 +552,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -560,6 +560,10 @@ "bgpPeerRemoteAs": 65704, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -571,11 +575,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -583,6 +583,10 @@ "bgpPeerRemoteAs": 65351, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -594,11 +598,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -606,6 +606,10 @@ "bgpPeerRemoteAs": 65351, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -617,11 +621,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -629,6 +629,10 @@ "bgpPeerRemoteAs": 65578, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -640,11 +644,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -652,6 +652,10 @@ "bgpPeerRemoteAs": 65164, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -663,11 +667,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -675,6 +675,10 @@ "bgpPeerRemoteAs": 65578, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -686,11 +690,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -698,6 +698,10 @@ "bgpPeerRemoteAs": 65164, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -709,11 +713,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -721,6 +721,10 @@ "bgpPeerRemoteAs": 65537, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -732,11 +736,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -744,6 +744,10 @@ "bgpPeerRemoteAs": 65351, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -755,11 +759,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -767,6 +767,10 @@ "bgpPeerRemoteAs": 65351, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -778,11 +782,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null } ], "bgpPeers_cbgp": [ @@ -1540,6 +1540,10 @@ "bgpPeerRemoteAs": 65578, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": 6, + "bgpPeerLastErrorSubCode": 2, + "bgpPeerLastErrorText": "administrative shutdown", + "bgpPeerIface": null, "bgpLocalAddr": "192.168.5.150", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -1551,11 +1555,7 @@ "bgpPeerInUpdateElapsedTime": 14, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": 6, - "bgpPeerLastErrorSubCode": 2, - "bgpPeerLastErrorText": "administrative shutdown", - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -1563,6 +1563,10 @@ "bgpPeerRemoteAs": 65787, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.7.42", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -1574,11 +1578,7 @@ "bgpPeerInUpdateElapsedTime": 2933262, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -1586,6 +1586,10 @@ "bgpPeerRemoteAs": 65787, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.7.154", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -1597,11 +1601,7 @@ "bgpPeerInUpdateElapsedTime": 12900159, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -1609,6 +1609,10 @@ "bgpPeerRemoteAs": 65787, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.8.46", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -1620,11 +1624,7 @@ "bgpPeerInUpdateElapsedTime": 2933256, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -1632,6 +1632,10 @@ "bgpPeerRemoteAs": 65787, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.8.114", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -1643,11 +1647,7 @@ "bgpPeerInUpdateElapsedTime": 12900159, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -1655,6 +1655,10 @@ "bgpPeerRemoteAs": 65686, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.9.78", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -1666,11 +1670,7 @@ "bgpPeerInUpdateElapsedTime": 9721186, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -1678,6 +1678,10 @@ "bgpPeerRemoteAs": 65755, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.13.25", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -1689,11 +1693,7 @@ "bgpPeerInUpdateElapsedTime": 5917591, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -1701,6 +1701,10 @@ "bgpPeerRemoteAs": 65384, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.13.102", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -1712,11 +1716,7 @@ "bgpPeerInUpdateElapsedTime": 3050649, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -1724,6 +1724,10 @@ "bgpPeerRemoteAs": 65385, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.13.126", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -1735,11 +1739,7 @@ "bgpPeerInUpdateElapsedTime": 35789107, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -1747,6 +1747,10 @@ "bgpPeerRemoteAs": 65385, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.13.126", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -1758,11 +1762,7 @@ "bgpPeerInUpdateElapsedTime": 35012834, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -1770,6 +1770,10 @@ "bgpPeerRemoteAs": 65257, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.13.137", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -1781,11 +1785,7 @@ "bgpPeerInUpdateElapsedTime": 73311, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -1793,6 +1793,10 @@ "bgpPeerRemoteAs": 65257, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.13.141", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -1804,11 +1808,7 @@ "bgpPeerInUpdateElapsedTime": 21536506, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -1816,6 +1816,10 @@ "bgpPeerRemoteAs": 65005, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.13.154", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -1827,11 +1831,7 @@ "bgpPeerInUpdateElapsedTime": 1307780, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -1839,6 +1839,10 @@ "bgpPeerRemoteAs": 65537, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.13.161", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -1850,11 +1854,7 @@ "bgpPeerInUpdateElapsedTime": 2, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -1862,6 +1862,10 @@ "bgpPeerRemoteAs": 65577, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.13.166", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -1873,11 +1877,7 @@ "bgpPeerInUpdateElapsedTime": 2264956, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -1885,6 +1885,10 @@ "bgpPeerRemoteAs": 65003, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.13.169", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -1896,11 +1900,7 @@ "bgpPeerInUpdateElapsedTime": 7976139, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -1908,6 +1908,10 @@ "bgpPeerRemoteAs": 65002, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.13.177", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -1919,11 +1923,7 @@ "bgpPeerInUpdateElapsedTime": 1220639, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -1931,6 +1931,10 @@ "bgpPeerRemoteAs": 65451, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.13.185", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -1942,11 +1946,7 @@ "bgpPeerInUpdateElapsedTime": 1814, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -1954,6 +1954,10 @@ "bgpPeerRemoteAs": 65004, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.13.198", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -1965,11 +1969,7 @@ "bgpPeerInUpdateElapsedTime": 4410807, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -1977,6 +1977,10 @@ "bgpPeerRemoteAs": 65604, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.13.202", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -1988,11 +1992,7 @@ "bgpPeerInUpdateElapsedTime": 175341, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -2000,6 +2000,10 @@ "bgpPeerRemoteAs": 65276, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.13.206", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -2011,11 +2015,7 @@ "bgpPeerInUpdateElapsedTime": 2116844, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -2023,6 +2023,10 @@ "bgpPeerRemoteAs": 65736, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.13.210", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -2034,11 +2038,7 @@ "bgpPeerInUpdateElapsedTime": 7976152, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -2046,6 +2046,10 @@ "bgpPeerRemoteAs": 65550, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -2057,11 +2061,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -2069,6 +2069,10 @@ "bgpPeerRemoteAs": 65010, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.13.218", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -2080,11 +2084,7 @@ "bgpPeerInUpdateElapsedTime": 4288850, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -2092,6 +2092,10 @@ "bgpPeerRemoteAs": 65704, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.13.222", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -2103,11 +2107,7 @@ "bgpPeerInUpdateElapsedTime": 1644752, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -2115,6 +2115,10 @@ "bgpPeerRemoteAs": 65351, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.13.255", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -2126,11 +2130,7 @@ "bgpPeerInUpdateElapsedTime": 25567472, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -2138,6 +2138,10 @@ "bgpPeerRemoteAs": 65351, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.13.255", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -2149,11 +2153,7 @@ "bgpPeerInUpdateElapsedTime": 19105427, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -2161,6 +2161,10 @@ "bgpPeerRemoteAs": 65578, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.27.146", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -2172,11 +2176,7 @@ "bgpPeerInUpdateElapsedTime": 1, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -2184,6 +2184,10 @@ "bgpPeerRemoteAs": 65164, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.71.170", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -2195,11 +2199,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -2207,6 +2207,10 @@ "bgpPeerRemoteAs": 65578, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "fd13:42ed:aee2:d2d9:0000:0000:0000:0002", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -2218,11 +2222,7 @@ "bgpPeerInUpdateElapsedTime": 24, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -2230,6 +2230,10 @@ "bgpPeerRemoteAs": 65164, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "fd2a:4cc8:1ff3:700c:0000:0000:0000:0002", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -2241,11 +2245,7 @@ "bgpPeerInUpdateElapsedTime": 2, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -2253,6 +2253,10 @@ "bgpPeerRemoteAs": 65537, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "fd34:d2ac:4327:6193:0000:0000:0000:0001", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -2264,11 +2268,7 @@ "bgpPeerInUpdateElapsedTime": 470, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -2276,6 +2276,10 @@ "bgpPeerRemoteAs": 65351, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "fde2:8b5a:dc45:e267:0000:0000:0000:0001", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -2287,11 +2291,7 @@ "bgpPeerInUpdateElapsedTime": 59348951, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -2299,6 +2299,10 @@ "bgpPeerRemoteAs": 65351, "bgpPeerState": "established", "bgpPeerAdminStatus": "start", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "fde2:8b5a:dc45:e267:0000:0000:0000:0001", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -2310,11 +2314,7 @@ "bgpPeerInUpdateElapsedTime": 59348952, "context_name": "", "bgpLocalAs": 65351, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null } ], "bgpPeers_cbgp": [ diff --git a/tests/data/iosxr_asr9001.json b/tests/data/iosxr_asr9001.json index b8d45cb019..865120ee93 100644 --- a/tests/data/iosxr_asr9001.json +++ b/tests/data/iosxr_asr9001.json @@ -22552,6 +22552,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -22563,8 +22564,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65056, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -22575,6 +22575,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -22586,8 +22587,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65056, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ], "bgpPeers_cbgp": [ @@ -22700,6 +22700,7 @@ "bgpPeerLastErrorCode": 4, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": "hold time expired", + "bgpPeerIface": null, "bgpLocalAddr": "10.246.0.1", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -22711,8 +22712,7 @@ "bgpPeerInUpdateElapsedTime": 1028831, "context_name": "", "bgpLocalAs": 65056, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -22723,6 +22723,7 @@ "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -22734,8 +22735,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65056, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ], "bgpPeers_cbgp": [ diff --git a/tests/data/iosxr_asr9901.json b/tests/data/iosxr_asr9901.json index cb6ac4bb30..15cfc4b4a4 100644 --- a/tests/data/iosxr_asr9901.json +++ b/tests/data/iosxr_asr9901.json @@ -20797,6 +20797,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -20808,8 +20809,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65056, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -20820,6 +20820,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -20831,8 +20832,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65056, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ], "bgpPeers_cbgp": [ @@ -20945,6 +20945,7 @@ "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "10.246.0.3", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -20956,8 +20957,7 @@ "bgpPeerInUpdateElapsedTime": 1028915, "context_name": "", "bgpLocalAs": 65056, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -20968,6 +20968,7 @@ "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -20979,8 +20980,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65056, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ], "bgpPeers_cbgp": [ diff --git a/tests/data/ironware.json b/tests/data/ironware.json index dc995b528e..ad5f865870 100644 --- a/tests/data/ironware.json +++ b/tests/data/ironware.json @@ -24258,6 +24258,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -24269,8 +24270,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65065, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -24281,6 +24281,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -24292,8 +24293,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65065, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -24304,6 +24304,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -24315,8 +24316,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65065, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -24327,6 +24327,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -24338,8 +24339,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65065, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -24350,6 +24350,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -24361,8 +24362,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65065, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ] }, @@ -24377,6 +24377,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "172.31.31.20", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -24388,8 +24389,7 @@ "bgpPeerInUpdateElapsedTime": 836, "context_name": "", "bgpLocalAs": 65065, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -24400,6 +24400,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.0.2.5", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -24411,8 +24412,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65065, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -24423,6 +24423,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -24434,8 +24435,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65065, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -24446,6 +24446,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.0.2.5", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -24457,8 +24458,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65065, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -24469,6 +24469,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -24480,8 +24481,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65065, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ] } diff --git a/tests/data/junos_ex.json b/tests/data/junos_ex.json index 9481d66453..3b6e6b17e3 100644 --- a/tests/data/junos_ex.json +++ b/tests/data/junos_ex.json @@ -32,6 +32,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -43,8 +44,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65501, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -55,6 +55,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -66,8 +67,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65501, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -78,6 +78,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -89,8 +90,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65501, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ] }, @@ -105,6 +105,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.1.43", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -116,8 +117,7 @@ "bgpPeerInUpdateElapsedTime": 21748, "context_name": "", "bgpLocalAs": 65501, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -128,6 +128,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.1.185", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -139,8 +140,7 @@ "bgpPeerInUpdateElapsedTime": 785386, "context_name": "", "bgpLocalAs": 65501, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -151,6 +151,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.1.225", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -162,8 +163,7 @@ "bgpPeerInUpdateElapsedTime": 774040, "context_name": "", "bgpLocalAs": 65501, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ] } diff --git a/tests/data/junos_mx.json b/tests/data/junos_mx.json index 9e130bd284..787b05f9c9 100644 --- a/tests/data/junos_mx.json +++ b/tests/data/junos_mx.json @@ -8,6 +8,10 @@ "bgpPeerRemoteAs": 64513, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -19,11 +23,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 64513, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -31,6 +31,10 @@ "bgpPeerRemoteAs": 65000, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -42,11 +46,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 64513, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -54,6 +54,10 @@ "bgpPeerRemoteAs": 64513, "bgpPeerState": "idle", "bgpPeerAdminStatus": "stop", + "bgpPeerLastErrorCode": null, + "bgpPeerLastErrorSubCode": null, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -65,11 +69,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 64513, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null } ], "bgpPeers_cbgp": [ @@ -299,6 +299,10 @@ "bgpPeerRemoteAs": 64513, "bgpPeerState": "established", "bgpPeerAdminStatus": "running", + "bgpPeerLastErrorCode": 0, + "bgpPeerLastErrorSubCode": 0, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.99.24", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -310,11 +314,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 64513, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -322,6 +322,10 @@ "bgpPeerRemoteAs": 65000, "bgpPeerState": "established", "bgpPeerAdminStatus": "running", + "bgpPeerLastErrorCode": 0, + "bgpPeerLastErrorSubCode": 0, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.99.24", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -333,11 +337,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 64513, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -345,6 +345,10 @@ "bgpPeerRemoteAs": 64513, "bgpPeerState": "active", "bgpPeerAdminStatus": "running", + "bgpPeerLastErrorCode": 0, + "bgpPeerLastErrorSubCode": 0, + "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "fd00:0028:0001:0001:0000:0000:0001:0004", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -356,11 +360,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 64513, - "vrfLocalAs": null, - "bgpPeerLastErrorCode": null, - "bgpPeerLastErrorSubCode": null, - "bgpPeerLastErrorText": null, - "bgpPeerIface": null + "vrfLocalAs": null } ], "bgpPeers_cbgp": [ diff --git a/tests/data/junos_mx5t-isis.json b/tests/data/junos_mx5t-isis.json index 42c9cbefcd..ee52cb5441 100644 --- a/tests/data/junos_mx5t-isis.json +++ b/tests/data/junos_mx5t-isis.json @@ -12942,6 +12942,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -12953,8 +12954,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65534, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ] }, @@ -12969,6 +12969,7 @@ "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -12980,8 +12981,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65534, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ] } diff --git a/tests/data/junos_rpm.json b/tests/data/junos_rpm.json index 19d5b8fd0a..216f9bfd0f 100644 --- a/tests/data/junos_rpm.json +++ b/tests/data/junos_rpm.json @@ -13273,6 +13273,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -13284,8 +13285,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65504, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -13296,6 +13296,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -13307,8 +13308,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65504, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -13319,6 +13319,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -13330,8 +13331,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65504, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -13342,6 +13342,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -13353,8 +13354,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65504, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ], "bgpPeers_cbgp": [ @@ -13467,6 +13467,7 @@ "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "10.0.251.14", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -13478,8 +13479,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65504, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -13490,6 +13490,7 @@ "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "10.0.251.18", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -13501,8 +13502,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65504, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -13513,6 +13513,7 @@ "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "10.0.251.26", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -13524,8 +13525,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65504, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -13536,6 +13536,7 @@ "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "10.0.251.30", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -13547,8 +13548,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65504, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ], "bgpPeers_cbgp": [ diff --git a/tests/data/junos_vmx.json b/tests/data/junos_vmx.json index fbcd49656d..2502165472 100644 --- a/tests/data/junos_vmx.json +++ b/tests/data/junos_vmx.json @@ -13313,6 +13313,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -13324,8 +13325,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 64999, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "PROTON, CH", @@ -13336,6 +13336,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -13347,8 +13348,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 64999, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ], "bgpPeers_cbgp": [ @@ -13413,6 +13413,7 @@ "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "10.1.1.2", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -13424,8 +13425,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 64999, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "PROTON, CH", @@ -13436,6 +13436,7 @@ "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "10.1.1.6", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -13447,8 +13448,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 64999, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ], "bgpPeers_cbgp": [ diff --git a/tests/data/pfsense_frr-bgp.json b/tests/data/pfsense_frr-bgp.json index a95bed7581..178cbf17ce 100644 --- a/tests/data/pfsense_frr-bgp.json +++ b/tests/data/pfsense_frr-bgp.json @@ -32,6 +32,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -43,8 +44,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 0, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -55,6 +55,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -66,8 +67,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 0, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ] }, @@ -82,6 +82,7 @@ "bgpPeerLastErrorCode": 4, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "169.254.1.2", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -93,8 +94,7 @@ "bgpPeerInUpdateElapsedTime": 96950, "context_name": "", "bgpLocalAs": 0, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -105,6 +105,7 @@ "bgpPeerLastErrorCode": 2, "bgpPeerLastErrorSubCode": 2, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "169.254.1.10", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -116,8 +117,7 @@ "bgpPeerInUpdateElapsedTime": 97191, "context_name": "", "bgpLocalAs": 0, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ] } diff --git a/tests/data/slxos_slx9150.json b/tests/data/slxos_slx9150.json index 0d822d9d69..b970841f22 100644 --- a/tests/data/slxos_slx9150.json +++ b/tests/data/slxos_slx9150.json @@ -24960,6 +24960,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -24971,8 +24972,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 23456, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ] }, @@ -24987,6 +24987,7 @@ "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "192.168.20.3", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -24998,8 +24999,7 @@ "bgpPeerInUpdateElapsedTime": 27108508, "context_name": "", "bgpLocalAs": 23456, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ] } diff --git a/tests/data/timos_7705.json b/tests/data/timos_7705.json index 7e1c76f1e8..daf88bdd9e 100644 --- a/tests/data/timos_7705.json +++ b/tests/data/timos_7705.json @@ -7413,6 +7413,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -7424,8 +7425,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 65000, - "vrfLocalAs": 65000, - "bgpPeerIface": null + "vrfLocalAs": 65000 }, { "astext": "", @@ -7436,6 +7436,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -7447,8 +7448,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 65000, - "vrfLocalAs": 65000, - "bgpPeerIface": null + "vrfLocalAs": 65000 } ] }, @@ -7463,6 +7463,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -7474,8 +7475,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 65000, - "vrfLocalAs": 65000, - "bgpPeerIface": null + "vrfLocalAs": 65000 }, { "astext": "", @@ -7486,6 +7486,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -7497,8 +7498,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 65000, - "vrfLocalAs": 65000, - "bgpPeerIface": null + "vrfLocalAs": 65000 } ] } diff --git a/tests/data/vrp_5720-vrf.json b/tests/data/vrp_5720-vrf.json index ed629d3bc7..d5260949bf 100644 --- a/tests/data/vrp_5720-vrf.json +++ b/tests/data/vrp_5720-vrf.json @@ -35615,6 +35615,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -35626,8 +35627,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65000, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -35638,6 +35638,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -35649,8 +35650,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65000, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ] }, @@ -35665,6 +35665,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "1.1.1.1", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -35676,8 +35677,7 @@ "bgpPeerInUpdateElapsedTime": 185502, "context_name": "", "bgpLocalAs": 65000, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -35688,6 +35688,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "1.1.1.1", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -35699,8 +35700,7 @@ "bgpPeerInUpdateElapsedTime": 185502, "context_name": "", "bgpLocalAs": 65000, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ] } diff --git a/tests/data/vrp_5720.json b/tests/data/vrp_5720.json index 8be56c9818..a74d7091aa 100644 --- a/tests/data/vrp_5720.json +++ b/tests/data/vrp_5720.json @@ -14515,6 +14515,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -14526,8 +14527,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65000, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -14538,6 +14538,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -14549,8 +14550,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": "", "bgpLocalAs": 65000, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ] }, @@ -14565,6 +14565,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "3.3.3.3", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -14576,8 +14577,7 @@ "bgpPeerInUpdateElapsedTime": 281173, "context_name": "", "bgpLocalAs": 65000, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "", @@ -14588,6 +14588,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "3.3.3.3", "bgpPeerRemoteAddr": "0.0.0.0", "bgpPeerDescr": "", @@ -14599,8 +14600,7 @@ "bgpPeerInUpdateElapsedTime": 281206, "context_name": "", "bgpLocalAs": 65000, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ] } diff --git a/tests/data/vrp_ce12804-withvrf.json b/tests/data/vrp_ce12804-withvrf.json index ab13ad5766..ceebe55eaf 100644 --- a/tests/data/vrp_ce12804-withvrf.json +++ b/tests/data/vrp_ce12804-withvrf.json @@ -24402,6 +24402,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "192.168.189.96", "bgpPeerDescr": "PeerDesc1", @@ -24413,8 +24414,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 1, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ], "bgpPeers_cbgp": [ @@ -24455,6 +24455,7 @@ "bgpPeerLastErrorCode": 2, "bgpPeerLastErrorSubCode": 2, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "192.168.189.96", "bgpPeerDescr": "PeerDesc1", @@ -24466,8 +24467,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 1, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ], "bgpPeers_cbgp": [ diff --git a/tests/data/vrp_ne8000.json b/tests/data/vrp_ne8000.json index 2ed08fce9d..cd302627a2 100644 --- a/tests/data/vrp_ne8000.json +++ b/tests/data/vrp_ne8000.json @@ -32,6 +32,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "10.16.7.2", "bgpPeerDescr": "", @@ -43,8 +44,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "SDC-AS, US", @@ -55,6 +55,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "10.45.1.1", "bgpPeerDescr": "", @@ -66,8 +67,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "SDC-AS, US", @@ -78,6 +78,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "10.45.2.2", "bgpPeerDescr": "", @@ -89,8 +90,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "SDC-AS, US", @@ -101,6 +101,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "10.45.3.2", "bgpPeerDescr": "", @@ -112,8 +113,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "REDES DEL OESTE S.A, AR", @@ -124,6 +124,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "10.65.11.2", "bgpPeerDescr": "", @@ -135,8 +136,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "YOUTUBE, US", @@ -147,6 +147,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "45.189.216.158", "bgpPeerDescr": "", @@ -158,8 +159,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "NETFLIX-ASN, US", @@ -170,6 +170,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "45.189.216.166", "bgpPeerDescr": "", @@ -181,8 +182,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "NETFLIX-ASN, US", @@ -193,6 +193,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "45.189.216.170", "bgpPeerDescr": "", @@ -204,8 +205,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "FACEBOOK-OFFNET, US", @@ -216,6 +216,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "45.189.216.208", "bgpPeerDescr": "", @@ -227,8 +228,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -239,6 +239,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "187.16.216.252", "bgpPeerDescr": "", @@ -250,8 +251,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -262,6 +262,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "187.16.216.253", "bgpPeerDescr": "", @@ -273,8 +274,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -285,6 +285,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "187.16.216.254", "bgpPeerDescr": "", @@ -296,8 +297,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -308,6 +308,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "187.16.223.253", "bgpPeerDescr": "", @@ -319,8 +320,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -331,6 +331,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "187.16.223.254", "bgpPeerDescr": "", @@ -342,8 +343,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "PowerHost Telecom SPA, CL", @@ -354,6 +354,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "198.18.202.5", "bgpPeerDescr": "", @@ -365,8 +366,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "PIT CHILE SP, CL", @@ -377,6 +377,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "200.23.206.1", "bgpPeerDescr": "", @@ -388,8 +389,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "PIT CHILE SP, CL", @@ -400,6 +400,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "200.23.206.2", "bgpPeerDescr": "", @@ -411,8 +412,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "LVLT-3549, US", @@ -423,6 +423,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "204.199.0.169", "bgpPeerDescr": "", @@ -434,8 +435,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -446,6 +446,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "2001:12F8::252", "bgpPeerDescr": "", @@ -457,8 +458,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -469,6 +469,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "2001:12F8::253", "bgpPeerDescr": "", @@ -480,8 +481,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -492,6 +492,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "2001:12F8::254", "bgpPeerDescr": "", @@ -503,8 +504,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -515,6 +515,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "2001:12F8::223:253", "bgpPeerDescr": "", @@ -526,8 +527,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -538,6 +538,7 @@ "bgpPeerLastErrorCode": null, "bgpPeerLastErrorSubCode": null, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "2001:12F8::223:254", "bgpPeerDescr": "", @@ -549,8 +550,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ], "bgpPeers_cbgp": [ @@ -1119,6 +1119,7 @@ "bgpPeerLastErrorCode": 5, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "10.16.7.2", "bgpPeerDescr": "", @@ -1130,8 +1131,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "SDC-AS, US", @@ -1142,6 +1142,7 @@ "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "10.45.1.1", "bgpPeerDescr": "", @@ -1153,8 +1154,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "SDC-AS, US", @@ -1165,6 +1165,7 @@ "bgpPeerLastErrorCode": 5, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "10.45.2.2", "bgpPeerDescr": "", @@ -1176,8 +1177,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "SDC-AS, US", @@ -1188,6 +1188,7 @@ "bgpPeerLastErrorCode": 5, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "10.45.3.2", "bgpPeerDescr": "", @@ -1199,8 +1200,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "REDES DEL OESTE S.A, AR", @@ -1211,6 +1211,7 @@ "bgpPeerLastErrorCode": 6, "bgpPeerLastErrorSubCode": 2, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "10.65.11.2", "bgpPeerDescr": "", @@ -1222,8 +1223,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "YOUTUBE, US", @@ -1234,6 +1234,7 @@ "bgpPeerLastErrorCode": 5, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "45.189.216.158", "bgpPeerDescr": "", @@ -1245,8 +1246,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "NETFLIX-ASN, US", @@ -1257,6 +1257,7 @@ "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "45.189.216.166", "bgpPeerDescr": "", @@ -1268,8 +1269,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "NETFLIX-ASN, US", @@ -1280,6 +1280,7 @@ "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "45.189.216.170", "bgpPeerDescr": "", @@ -1291,8 +1292,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "FACEBOOK-OFFNET, US", @@ -1303,6 +1303,7 @@ "bgpPeerLastErrorCode": 5, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "45.189.216.208", "bgpPeerDescr": "", @@ -1314,8 +1315,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -1326,6 +1326,7 @@ "bgpPeerLastErrorCode": 5, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "187.16.216.252", "bgpPeerDescr": "", @@ -1337,8 +1338,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -1349,6 +1349,7 @@ "bgpPeerLastErrorCode": 5, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "187.16.216.253", "bgpPeerDescr": "", @@ -1360,8 +1361,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -1372,6 +1372,7 @@ "bgpPeerLastErrorCode": 5, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "187.16.216.254", "bgpPeerDescr": "", @@ -1383,8 +1384,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -1395,6 +1395,7 @@ "bgpPeerLastErrorCode": 5, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "187.16.223.253", "bgpPeerDescr": "", @@ -1406,8 +1407,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -1418,6 +1418,7 @@ "bgpPeerLastErrorCode": 5, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "187.16.223.254", "bgpPeerDescr": "", @@ -1429,8 +1430,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "PowerHost Telecom SPA, CL", @@ -1441,6 +1441,7 @@ "bgpPeerLastErrorCode": 4, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "198.18.202.5", "bgpPeerDescr": "", @@ -1452,8 +1453,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "PIT CHILE SP, CL", @@ -1464,6 +1464,7 @@ "bgpPeerLastErrorCode": 4, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "200.23.206.1", "bgpPeerDescr": "", @@ -1475,8 +1476,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "PIT CHILE SP, CL", @@ -1487,6 +1487,7 @@ "bgpPeerLastErrorCode": 5, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "200.23.206.2", "bgpPeerDescr": "", @@ -1498,8 +1499,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "LVLT-3549, US", @@ -1510,6 +1510,7 @@ "bgpPeerLastErrorCode": 0, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "204.199.0.169", "bgpPeerDescr": "", @@ -1521,8 +1522,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -1533,6 +1533,7 @@ "bgpPeerLastErrorCode": 5, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "2001:12F8::252", "bgpPeerDescr": "", @@ -1544,8 +1545,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -1556,6 +1556,7 @@ "bgpPeerLastErrorCode": 4, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "2001:12F8::253", "bgpPeerDescr": "", @@ -1567,8 +1568,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -1579,6 +1579,7 @@ "bgpPeerLastErrorCode": 5, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "2001:12F8::254", "bgpPeerDescr": "", @@ -1590,8 +1591,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -1602,6 +1602,7 @@ "bgpPeerLastErrorCode": 5, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "2001:12F8::223:253", "bgpPeerDescr": "", @@ -1613,8 +1614,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null }, { "astext": "Nucleo de Inf. e Coord. do Ponto BR - NIC., BR", @@ -1625,6 +1625,7 @@ "bgpPeerLastErrorCode": 4, "bgpPeerLastErrorSubCode": 0, "bgpPeerLastErrorText": null, + "bgpPeerIface": null, "bgpLocalAddr": "0.0.0.0", "bgpPeerRemoteAddr": "2001:12F8::223:254", "bgpPeerDescr": "", @@ -1636,8 +1637,7 @@ "bgpPeerInUpdateElapsedTime": 0, "context_name": null, "bgpLocalAs": 26479, - "vrfLocalAs": null, - "bgpPeerIface": null + "vrfLocalAs": null } ], "bgpPeers_cbgp": [