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
This commit is contained in:
Tony Murray 2022-10-03 12:55:49 -05:00 committed by GitHub
parent 53ab0f775d
commit e4fdbbd82d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
27 changed files with 725 additions and 731 deletions

View File

@ -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;
}
}

View File

@ -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": [

View File

@ -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": [

View File

@ -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
}
]
}

View File

@ -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

View File

@ -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": [

View File

@ -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
}
]
}

View File

@ -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
}
]
}

View File

@ -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": [

View File

@ -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": [

View File

@ -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": [

File diff suppressed because it is too large Load Diff

View File

@ -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": [

View File

@ -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": [

View File

@ -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
}
]
}

View File

@ -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
}
]
}

View File

@ -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": [

View File

@ -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
}
]
}

View File

@ -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": [

View File

@ -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": [

View File

@ -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
}
]
}

View File

@ -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
}
]
}

View File

@ -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
}
]
}

View File

@ -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
}
]
}

View File

@ -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
}
]
}

View File

@ -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": [

View File

@ -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": [