Revert ironware BGP-peers changes from PR #10941 (#11096)

* Revert ironware BGP-peers changes from PR #10941.

* Regenerate test data without BGP4V2-MIB support.

* Initialise $local_ip

Co-authored-by: PipoCanaja <38363551+PipoCanaja@users.noreply.github.com>
This commit is contained in:
Martijn Schmidt
2020-02-03 14:32:45 +01:00
committed by GitHub
parent c07678d55f
commit 07f3c91e6c
5 changed files with 362 additions and 942 deletions

View File

@@ -97,9 +97,6 @@ if (Config::get('enable_bgp')) {
} elseif ($device['os_group'] === 'cisco') {
$peers_data = snmp_walk($device, 'cbgpPeer2RemoteAs', '-Oq', 'CISCO-BGP4-MIB');
$peer2 = !empty($peers_data);
} elseif ($device['os_group'] === 'brocade') {
$peers_data = snmp_walk($device, 'bgp4V2PeerRemoteAs', '-Oq', 'BGP4V2-MIB', 'brocade');
$peer2 = !empty($peers_data);
}
if (empty($peers_data)) {
@@ -150,14 +147,6 @@ if (Config::get('enable_bgp')) {
$af_list = build_cbgp_peers($device, $peer, $af_data, $peer2);
}
if ($device['os_group'] === 'brocade') {
// Brocade doesn't return MP-BGP SAFIs in the BGP4V2-MIB data, so it only displays the unicast SAFI
d_echo("Brocade:");
$afi = IP::parse($peer['ip'])->getFamily();
$af_list[$peer['ip']][$afi]['unicast'] = 1;
add_cbgp_peer($device, $peer, $afi, 'unicast');
}
if (!$bgp4_mib && $device['os'] == 'junos') {
$afis['ipv4'] = 'ipv4';
$afis['ipv6'] = 'ipv6';

View File

@@ -1156,8 +1156,6 @@ function build_bgp_peers($device, $data, $peer2)
'BGP4-MIB::bgpPeerRemoteAs.',
'HUAWEI-BGP-VPN-MIB::hwBgpPeerRemoteAs.',
'.1.3.6.1.4.1.2636.5.1.1.2.1.1.1.13.',
'BGP4V2-MIB::bgp4V2PeerRemoteAs.1.ipv4.',
'BGP4V2-MIB::bgp4V2PeerRemoteAs.1.ipv6.',
);
$peers = trim(str_replace($remove, '', $data));
@@ -1166,7 +1164,6 @@ function build_bgp_peers($device, $data, $peer2)
foreach (explode("\n", $peers) as $peer) {
$local_ip = null;
if ($peer2 === true) {
$peerFull = $peer;
list($ver, $peer) = explode('.', $peer, 2);
}
list($peer_ip, $peer_as) = explode(' ', $peer);
@@ -1180,21 +1177,6 @@ function build_bgp_peers($device, $data, $peer2)
// ipv4
$peer_ip = implode('.', array_slice(explode('.', $peer_ip), -4));
}
} elseif ($device['os_group'] === 'brocade') {
$rawIP = $peer_ip;
$ver = '';
$octets = count(explode('.', $rawIP));
if ($octets > 11) {
// ipv6
$peer_ip = (string)IP::parse(snmp2ipv6($rawIP), true);
$parts = explode('.2.16.', $peerFull);
$ip_parts = str_split(str_replace(':', '', $parts[0]), 4);
$local_ip = implode(':', $ip_parts);
} else {
// ipv4
$peer_ip = implode('.', array_slice(explode('.', $rawIP), -4));
$local_ip = implode('.', array_slice(explode('.', $rawIP), 0, 4));
}
} else {
if (strstr($peer_ip, ':')) {
$peer_ip_snmp = preg_replace('/:/', ' ', $peer_ip);

View File

@@ -14,8 +14,6 @@ if (\LibreNMS\Config::get('enable_bgp')) {
$peer_data_check = snmpwalk_cache_oid($device, 'aristaBgp4V2PeerRemoteAs', array(), 'ARISTA-BGP4V2-MIB');
} elseif ($device['os'] === 'timos') {
$peer_data_check = snmpwalk_cache_multi_oid($device, 'tBgpInstanceRowStatus', [], 'TIMETRA-BGP-MIB', 'nokia');
} elseif ($device['os_group'] === 'brocade') {
$peer_data_check = snmpwalk_cache_oid($device, 'bgp4V2PeerRemoteAs', array(), 'BGP4V2-MIB', 'brocade', '-ObQ');
} else {
$peer_data_check = snmpwalk_cache_oid($device, 'cbgpPeer2RemoteAs', array(), 'CISCO-BGP4-MIB');
}
@@ -140,25 +138,6 @@ if (\LibreNMS\Config::get('enable_bgp')) {
'aristaBgp4V2PeerInUpdatesElapsedTime' => 'bgpPeerInUpdateElapsedTime',
'aristaBgp4V2PeerLocalAddr' => 'bgpLocalAddr',
);
} elseif ($device['os_group'] === 'brocade') {
if ($ip_type == 2) {
$ip_parts = str_split(str_replace(':', '', $peer['bgpLocalAddr']), 2);
array_walk($ip_parts, function (&$aPart) {
if ($aPart == '00') {
$aPart = '0';
}
$aPart = (int)$aPart;
});
$peer['bgpLocalAddr'] = implode('.', $ip_parts);
}
$peer_identifier = "1.$ip_type.$ip_len.{$peer['bgpLocalAddr']}.$ip_type.$ip_len.$bgp_peer_ident";
$mib = 'BGP4V2-MIB';
$oid_map = array(
'bgp4V2PeerState' => 'bgpPeerState',
'bgp4V2PeerAdminStatus' => 'bgpPeerAdminStatus',
'bgp4V2PeerFsmEstablishedTime' => 'bgpPeerFsmEstablishedTime',
'bgp4V2PeerInUpdatesElapsedTime' => 'bgpPeerInUpdateElapsedTime',
);
} else {
$peer_identifier = $ip_type . '.' . $ip_len . '.' . $bgp_peer_ident;
$mib = 'CISCO-BGP4-MIB';
@@ -282,7 +261,7 @@ if (\LibreNMS\Config::get('enable_bgp')) {
}
// --- Populate cbgp data ---
if ($device['os_group'] == 'vrp' || $device['os_group'] == 'cisco' || $device['os'] == 'junos' || $device['os_group'] === 'arista' || $device['os_group'] === 'brocade') {
if ($device['os_group'] == 'vrp' || $device['os_group'] == 'cisco' || $device['os'] == 'junos' || $device['os_group'] === 'arista') {
// Poll each AFI/SAFI for this peer (using CISCO-BGP4-MIB or BGP4-V2-JUNIPER MIB)
$peer_afis = dbFetchRows('SELECT * FROM bgpPeers_cbgp WHERE `device_id` = ? AND bgpPeerIdentifier = ?', array($device['device_id'], $peer['bgpPeerIdentifier']));
foreach ($peer_afis as $peer_afi) {
@@ -421,15 +400,6 @@ if (\LibreNMS\Config::get('enable_bgp')) {
$cbgpPeerAdvertisedPrefixes = $vrpPrefixes[$key]['hwBgpPeerPrefixAdvCounter'];
}
if ($device['os_group'] === 'brocade') {
if (empty($b_prefixes)) {
$b_prefixes = snmpwalk_cache_multi_oid($device, 'snBgp4NeighborSummaryTable', $b_prefixes, 'FOUNDRY-SN-BGP4-GROUP-MIB', null, '-OQUs');
}
$key = array_search($peer['bgpPeerIdentifier'], array_column($b_prefixes, 'snBgp4NeighborSummaryIp', 'snBgp4NeighborSummaryIndex'), true);
$cbgpPeerAcceptedPrefixes = $key ? $b_prefixes[$key]['snBgp4NeighborSummaryRouteReceived'] : null;
}
// Validate data
$cbgpPeerAcceptedPrefixes = set_numeric($cbgpPeerAcceptedPrefixes);
$cbgpPeerDeniedPrefixes = set_numeric($cbgpPeerDeniedPrefixes);

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
1.3.6.1.2.1.1.1.0|4|Extreme Networks NetIron CER, Extended route scalability, IronWare Version V6.2.0eT183 Compiled on Sep 30 2019 at 06:59:54 labeled as V6.2.00e
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.1991.1.3.51.7
1.3.6.1.2.1.1.3.0|67|8827670
1.3.6.1.2.1.1.3.0|67|254923512
1.3.6.1.2.1.1.4.0|4|<private>
1.3.6.1.2.1.1.5.0|4|<private>
1.3.6.1.2.1.1.6.0|4|<private>
@@ -444,16 +444,16 @@
1.3.6.1.2.1.2.2.1.20.16777282|65|0
1.3.6.1.2.1.2.2.1.20.33554433|65|0
1.3.6.1.2.1.2.2.1.20.83886081|65|0
1.3.6.1.2.1.4.3.0|65|196348
1.3.6.1.2.1.4.3.0|65|4968912
1.3.6.1.2.1.4.4.0|65|0
1.3.6.1.2.1.4.5.0|65|0
1.3.6.1.2.1.4.6.0|65|0
1.3.6.1.2.1.4.7.0|65|0
1.3.6.1.2.1.4.8.0|65|0
1.3.6.1.2.1.4.9.0|65|98173
1.3.6.1.2.1.4.10.0|65|287807
1.3.6.1.2.1.4.9.0|65|2484455
1.3.6.1.2.1.4.10.0|65|16358161
1.3.6.1.2.1.4.11.0|65|0
1.3.6.1.2.1.4.12.0|65|235
1.3.6.1.2.1.4.12.0|65|6458
1.3.6.1.2.1.4.14.0|65|0
1.3.6.1.2.1.4.15.0|65|0
1.3.6.1.2.1.4.16.0|65|0
@@ -471,19 +471,18 @@
1.3.6.1.2.1.4.20.1.3.192.168.55.2|64|255.255.255.0
1.3.6.1.2.1.4.20.1.3.192.168.66.2|64|255.255.255.0
1.3.6.1.2.1.4.22.1.2.1.172.31.31.50|4x|525400BF7236
1.3.6.1.2.1.4.22.1.2.1.192.0.2.6|4x|525400BF7236
1.3.6.1.2.1.4.24.3.0|66|9
1.3.6.1.2.1.4.31.1.1.3.1|65|196448
1.3.6.1.2.1.4.31.1.1.3.2|65|13395
1.3.6.1.2.1.4.31.1.1.4.1|70|196448
1.3.6.1.2.1.4.31.1.1.4.2|70|13395
1.3.6.1.2.1.4.31.1.1.3.1|65|4969012
1.3.6.1.2.1.4.31.1.1.3.2|65|39506
1.3.6.1.2.1.4.31.1.1.4.1|70|4969012
1.3.6.1.2.1.4.31.1.1.4.2|70|39506
1.3.6.1.2.1.4.31.1.1.5.1|65|0
1.3.6.1.2.1.4.31.1.1.5.2|65|0
1.3.6.1.2.1.4.31.1.1.6.1|70|0
1.3.6.1.2.1.4.31.1.1.6.2|70|0
1.3.6.1.2.1.4.31.1.1.7.1|65|0
1.3.6.1.2.1.4.31.1.1.7.2|65|0
1.3.6.1.2.1.4.31.1.1.8.1|65|235
1.3.6.1.2.1.4.31.1.1.8.1|65|6458
1.3.6.1.2.1.4.31.1.1.8.2|65|0
1.3.6.1.2.1.4.31.1.1.9.1|65|0
1.3.6.1.2.1.4.31.1.1.9.2|65|0
@@ -491,9 +490,9 @@
1.3.6.1.2.1.4.31.1.1.10.2|65|0
1.3.6.1.2.1.4.31.1.1.11.1|65|0
1.3.6.1.2.1.4.31.1.1.11.2|65|0
1.3.6.1.2.1.4.31.1.1.12.1|65|235
1.3.6.1.2.1.4.31.1.1.12.1|65|6458
1.3.6.1.2.1.4.31.1.1.12.2|65|0
1.3.6.1.2.1.4.31.1.1.13.1|70|235
1.3.6.1.2.1.4.31.1.1.13.1|70|6458
1.3.6.1.2.1.4.31.1.1.13.2|70|0
1.3.6.1.2.1.4.31.1.1.14.1|65|0
1.3.6.1.2.1.4.31.1.1.14.2|65|0
@@ -503,15 +502,15 @@
1.3.6.1.2.1.4.31.1.1.16.2|65|0
1.3.6.1.2.1.4.31.1.1.17.1|65|0
1.3.6.1.2.1.4.31.1.1.17.2|65|0
1.3.6.1.2.1.4.31.1.1.18.1|65|98227
1.3.6.1.2.1.4.31.1.1.18.2|65|13394
1.3.6.1.2.1.4.31.1.1.19.1|70|98227
1.3.6.1.2.1.4.31.1.1.19.2|70|13394
1.3.6.1.2.1.4.31.1.1.20.1|65|287862
1.3.6.1.2.1.4.31.1.1.20.2|65|214363
1.3.6.1.2.1.4.31.1.1.21.1|70|287862
1.3.6.1.2.1.4.31.1.1.21.2|70|214363
1.3.6.1.2.1.4.31.1.1.22.1|65|235
1.3.6.1.2.1.4.31.1.1.18.1|65|2484509
1.3.6.1.2.1.4.31.1.1.18.2|65|39503
1.3.6.1.2.1.4.31.1.1.19.1|70|2484509
1.3.6.1.2.1.4.31.1.1.19.2|70|39503
1.3.6.1.2.1.4.31.1.1.20.1|65|16358218
1.3.6.1.2.1.4.31.1.1.20.2|65|10803944
1.3.6.1.2.1.4.31.1.1.21.1|70|16358218
1.3.6.1.2.1.4.31.1.1.21.2|70|10803944
1.3.6.1.2.1.4.31.1.1.22.1|65|6458
1.3.6.1.2.1.4.31.1.1.22.2|65|0
1.3.6.1.2.1.4.31.1.1.23.1|65|0
1.3.6.1.2.1.4.31.1.1.23.2|65|0
@@ -527,9 +526,9 @@
1.3.6.1.2.1.4.31.1.1.28.2|65|0
1.3.6.1.2.1.4.31.1.1.29.1|65|0
1.3.6.1.2.1.4.31.1.1.29.2|65|0
1.3.6.1.2.1.4.31.1.1.30.1|65|386093
1.3.6.1.2.1.4.31.1.1.30.1|65|18842731
1.3.6.1.2.1.4.31.1.1.30.2|65|0
1.3.6.1.2.1.4.31.1.1.31.1|70|386093
1.3.6.1.2.1.4.31.1.1.31.1|70|18842731
1.3.6.1.2.1.4.31.1.1.31.2|70|0
1.3.6.1.2.1.4.31.1.1.32.1|65|0
1.3.6.1.2.1.4.31.1.1.32.2|65|0
@@ -591,24 +590,24 @@
1.3.6.1.2.1.4.34.1.6.2.16.32.1.13.184.38.1.0.0.0.0.0.0.0.0.0.0|2|2
1.3.6.1.2.1.4.34.1.6.2.16.32.1.13.184.38.1.0.0.0.0.0.0.0.0.0.32|2|2
1.3.6.1.2.1.4.35.1.4.1.1.4.172.31.31.50|4x|525400BF7236
1.3.6.1.2.1.4.35.1.4.1.1.4.192.0.2.6|4x|525400BF7236
1.3.6.1.2.1.4.35.1.4.1.2.16.32.1.13.184.0.0.0.0.0.0.0.0.0.0.0.6|4x|525400BF7236
1.3.6.1.2.1.4.35.1.4.1.1.4.192.0.2.6|4x|000000000000
1.3.6.1.2.1.4.35.1.4.1.2.16.32.1.13.184.0.0.0.0.0.0.0.0.0.0.0.6|4x|000000000000
1.3.6.1.2.1.4.35.1.4.1.2.16.32.1.13.184.38.1.0.0.0.0.0.0.0.0.0.80|4x|525400BF7236
1.3.6.1.2.1.4.35.1.4.1.2.16.254.128.0.0.0.0.0.0.80.84.0.255.254.191.114.54|4x|525400BF7236
1.3.6.1.2.1.5.1.0|65|1153
1.3.6.1.2.1.5.1.0|65|25187
1.3.6.1.2.1.5.2.0|65|0
1.3.6.1.2.1.5.3.0|65|0
1.3.6.1.2.1.5.4.0|65|0
1.3.6.1.2.1.5.5.0|65|0
1.3.6.1.2.1.5.6.0|65|0
1.3.6.1.2.1.5.7.0|65|0
1.3.6.1.2.1.5.8.0|65|1153
1.3.6.1.2.1.5.8.0|65|25187
1.3.6.1.2.1.5.9.0|65|0
1.3.6.1.2.1.5.10.0|65|0
1.3.6.1.2.1.5.11.0|65|0
1.3.6.1.2.1.5.12.0|65|0
1.3.6.1.2.1.5.13.0|65|0
1.3.6.1.2.1.5.14.0|65|1153
1.3.6.1.2.1.5.14.0|65|25187
1.3.6.1.2.1.5.15.0|65|0
1.3.6.1.2.1.5.16.0|65|0
1.3.6.1.2.1.5.17.0|65|0
@@ -616,17 +615,17 @@
1.3.6.1.2.1.5.19.0|65|0
1.3.6.1.2.1.5.20.0|65|0
1.3.6.1.2.1.5.21.0|65|0
1.3.6.1.2.1.5.22.0|65|1153
1.3.6.1.2.1.5.22.0|65|25187
1.3.6.1.2.1.5.23.0|65|0
1.3.6.1.2.1.5.24.0|65|0
1.3.6.1.2.1.5.25.0|65|0
1.3.6.1.2.1.5.26.0|65|0
1.3.6.1.2.1.5.29.1.2.1|65|1153
1.3.6.1.2.1.5.29.1.2.2|65|8421
1.3.6.1.2.1.5.29.1.2.1|65|25187
1.3.6.1.2.1.5.29.1.2.2|65|24485
1.3.6.1.2.1.5.29.1.3.1|65|0
1.3.6.1.2.1.5.29.1.3.2|65|0
1.3.6.1.2.1.5.29.1.4.1|65|1153
1.3.6.1.2.1.5.29.1.4.2|65|20237
1.3.6.1.2.1.5.29.1.4.1|65|25187
1.3.6.1.2.1.5.29.1.4.2|65|3176077
1.3.6.1.2.1.5.29.1.5.1|65|0
1.3.6.1.2.1.5.29.1.5.2|65|0
1.3.6.1.2.1.5.30.1.3.1.0|65|0
@@ -637,7 +636,7 @@
1.3.6.1.2.1.5.30.1.3.1.5|65|0
1.3.6.1.2.1.5.30.1.3.1.6|65|0
1.3.6.1.2.1.5.30.1.3.1.7|65|0
1.3.6.1.2.1.5.30.1.3.1.8|65|1153
1.3.6.1.2.1.5.30.1.3.1.8|65|25187
1.3.6.1.2.1.5.30.1.3.1.9|65|0
1.3.6.1.2.1.5.30.1.3.1.10|65|0
1.3.6.1.2.1.5.30.1.3.1.11|65|0
@@ -1018,17 +1017,17 @@
1.3.6.1.2.1.5.30.1.3.2.130|65|0
1.3.6.1.2.1.5.30.1.3.2.131|65|0
1.3.6.1.2.1.5.30.1.3.2.132|65|0
1.3.6.1.2.1.5.30.1.3.2.133|65|24
1.3.6.1.2.1.5.30.1.3.2.133|65|682
1.3.6.1.2.1.5.30.1.3.2.134|65|0
1.3.6.1.2.1.5.30.1.3.2.135|65|3958
1.3.6.1.2.1.5.30.1.3.2.136|65|4436
1.3.6.1.2.1.5.30.1.3.2.135|65|11091
1.3.6.1.2.1.5.30.1.3.2.136|65|12703
1.3.6.1.2.1.5.30.1.3.2.137|65|0
1.3.6.1.2.1.5.30.1.3.2.138|65|0
1.3.6.1.2.1.5.30.1.3.2.139|65|0
1.3.6.1.2.1.5.30.1.3.2.140|65|0
1.3.6.1.2.1.5.30.1.3.2.141|65|0
1.3.6.1.2.1.5.30.1.3.2.142|65|0
1.3.6.1.2.1.5.30.1.3.2.143|65|2
1.3.6.1.2.1.5.30.1.3.2.143|65|8
1.3.6.1.2.1.5.30.1.3.2.144|65|0
1.3.6.1.2.1.5.30.1.3.2.145|65|0
1.3.6.1.2.1.5.30.1.3.2.146|65|0
@@ -1141,7 +1140,7 @@
1.3.6.1.2.1.5.30.1.3.2.253|65|0
1.3.6.1.2.1.5.30.1.3.2.254|65|0
1.3.6.1.2.1.5.30.1.3.2.255|65|0
1.3.6.1.2.1.5.30.1.4.1.0|65|1153
1.3.6.1.2.1.5.30.1.4.1.0|65|25187
1.3.6.1.2.1.5.30.1.4.1.1|65|0
1.3.6.1.2.1.5.30.1.4.1.2|65|0
1.3.6.1.2.1.5.30.1.4.1.3|65|0
@@ -1532,8 +1531,8 @@
1.3.6.1.2.1.5.30.1.4.2.132|65|0
1.3.6.1.2.1.5.30.1.4.2.133|65|0
1.3.6.1.2.1.5.30.1.4.2.134|65|0
1.3.6.1.2.1.5.30.1.4.2.135|65|4517
1.3.6.1.2.1.5.30.1.4.2.136|65|15718
1.3.6.1.2.1.5.30.1.4.2.135|65|2825097
1.3.6.1.2.1.5.30.1.4.2.136|65|350979
1.3.6.1.2.1.5.30.1.4.2.137|65|0
1.3.6.1.2.1.5.30.1.4.2.138|65|0
1.3.6.1.2.1.5.30.1.4.2.139|65|0
@@ -1653,22 +1652,22 @@
1.3.6.1.2.1.5.30.1.4.2.253|65|0
1.3.6.1.2.1.5.30.1.4.2.254|65|0
1.3.6.1.2.1.5.30.1.4.2.255|65|0
1.3.6.1.2.1.6.5.0|65|7304
1.3.6.1.2.1.6.5.0|65|733788
1.3.6.1.2.1.6.6.0|65|0
1.3.6.1.2.1.6.7.0|65|7302
1.3.6.1.2.1.6.7.0|65|733784
1.3.6.1.2.1.6.8.0|65|0
1.3.6.1.2.1.6.9.0|66|2
1.3.6.1.2.1.6.10.0|65|9997
1.3.6.1.2.1.6.11.0|65|13647
1.3.6.1.2.1.6.12.0|65|21973
1.3.6.1.2.1.6.9.0|66|3
1.3.6.1.2.1.6.10.0|65|143047
1.3.6.1.2.1.6.11.0|65|749042
1.3.6.1.2.1.6.12.0|65|10677329
1.3.6.1.2.1.6.14.0|65|0
1.3.6.1.2.1.6.15.0|65|0
1.3.6.1.2.1.6.18.0|70|13647
1.3.6.1.2.1.6.19.1.7.1.4.172.31.31.20.179.1.4.172.31.31.50.40973|2|5
1.3.6.1.2.1.7.1.0|65|92028
1.3.6.1.2.1.6.15.0|65|2
1.3.6.1.2.1.6.18.0|70|749042
1.3.6.1.2.1.6.19.1.7.1.4.172.31.31.20.22.1.4.172.31.31.50.32978|2|5
1.3.6.1.2.1.7.1.0|65|2331271
1.3.6.1.2.1.7.2.0|65|0
1.3.6.1.2.1.7.3.0|65|0
1.3.6.1.2.1.7.4.0|65|445163
1.3.6.1.2.1.7.4.0|65|12534457
1.3.6.1.2.1.10.7.2.1.19.1|2|3
1.3.6.1.2.1.10.7.2.1.19.2|2|3
1.3.6.1.2.1.10.7.2.1.19.3|2|3
@@ -1698,8 +1697,8 @@
1.3.6.1.2.1.10.7.2.1.19.67|2|3
1.3.6.1.2.1.10.7.2.1.19.68|2|3
1.3.6.1.2.1.10.7.2.1.19.129|2|2
1.3.6.1.2.1.11.1.0|65|92012
1.3.6.1.2.1.11.2.0|65|92011
1.3.6.1.2.1.11.1.0|65|2331255
1.3.6.1.2.1.11.2.0|65|2331254
1.3.6.1.2.1.11.3.0|65|0
1.3.6.1.2.1.11.4.0|65|0
1.3.6.1.2.1.11.5.0|65|0
@@ -1709,10 +1708,10 @@
1.3.6.1.2.1.11.10.0|65|0
1.3.6.1.2.1.11.11.0|65|0
1.3.6.1.2.1.11.12.0|65|0
1.3.6.1.2.1.11.13.0|65|822519
1.3.6.1.2.1.11.13.0|65|21482647
1.3.6.1.2.1.11.14.0|65|0
1.3.6.1.2.1.11.15.0|65|9891
1.3.6.1.2.1.11.16.0|65|3412
1.3.6.1.2.1.11.15.0|65|237798
1.3.6.1.2.1.11.16.0|65|35165
1.3.6.1.2.1.11.17.0|65|0
1.3.6.1.2.1.11.18.0|65|0
1.3.6.1.2.1.11.19.0|65|0
@@ -1723,12 +1722,62 @@
1.3.6.1.2.1.11.25.0|65|0
1.3.6.1.2.1.11.26.0|65|0
1.3.6.1.2.1.11.27.0|65|0
1.3.6.1.2.1.11.28.0|65|92013
1.3.6.1.2.1.11.28.0|65|2331256
1.3.6.1.2.1.11.29.0|65|0
1.3.6.1.2.1.11.30.0|2|1
1.3.6.1.2.1.11.31.0|65|0
1.3.6.1.2.1.11.32.0|65|0
1.3.6.1.2.1.15.2.0|2|65065
1.3.6.1.2.1.15.3.1.2.172.31.31.50|2|6
1.3.6.1.2.1.15.3.1.2.192.0.2.4|2|2
1.3.6.1.2.1.15.3.1.2.192.0.2.5|2|1
1.3.6.1.2.1.15.3.1.2.192.0.2.6|2|2
1.3.6.1.2.1.15.3.1.2.192.0.2.7|2|1
1.3.6.1.2.1.15.3.1.3.172.31.31.50|2|2
1.3.6.1.2.1.15.3.1.3.192.0.2.4|2|2
1.3.6.1.2.1.15.3.1.3.192.0.2.5|2|1
1.3.6.1.2.1.15.3.1.3.192.0.2.6|2|2
1.3.6.1.2.1.15.3.1.3.192.0.2.7|2|1
1.3.6.1.2.1.15.3.1.5.172.31.31.50|64|172.31.31.20
1.3.6.1.2.1.15.3.1.5.192.0.2.4|64|192.0.2.5
1.3.6.1.2.1.15.3.1.5.192.0.2.5|64|0.0.0.0
1.3.6.1.2.1.15.3.1.5.192.0.2.6|64|192.0.2.5
1.3.6.1.2.1.15.3.1.5.192.0.2.7|64|0.0.0.0
1.3.6.1.2.1.15.3.1.9.172.31.31.50|2|23456
1.3.6.1.2.1.15.3.1.9.192.0.2.4|2|65065
1.3.6.1.2.1.15.3.1.9.192.0.2.5|2|65065
1.3.6.1.2.1.15.3.1.9.192.0.2.6|2|23456
1.3.6.1.2.1.15.3.1.9.192.0.2.7|2|23456
1.3.6.1.2.1.15.3.1.10.172.31.31.50|65|26
1.3.6.1.2.1.15.3.1.10.192.0.2.4|65|0
1.3.6.1.2.1.15.3.1.10.192.0.2.5|65|0
1.3.6.1.2.1.15.3.1.10.192.0.2.6|65|0
1.3.6.1.2.1.15.3.1.10.192.0.2.7|65|0
1.3.6.1.2.1.15.3.1.11.172.31.31.50|65|16
1.3.6.1.2.1.15.3.1.11.192.0.2.4|65|0
1.3.6.1.2.1.15.3.1.11.192.0.2.5|65|0
1.3.6.1.2.1.15.3.1.11.192.0.2.6|65|0
1.3.6.1.2.1.15.3.1.11.192.0.2.7|65|0
1.3.6.1.2.1.15.3.1.12.172.31.31.50|65|3469
1.3.6.1.2.1.15.3.1.12.192.0.2.4|65|0
1.3.6.1.2.1.15.3.1.12.192.0.2.5|65|0
1.3.6.1.2.1.15.3.1.12.192.0.2.6|65|0
1.3.6.1.2.1.15.3.1.12.192.0.2.7|65|0
1.3.6.1.2.1.15.3.1.13.172.31.31.50|65|3916
1.3.6.1.2.1.15.3.1.13.192.0.2.4|65|0
1.3.6.1.2.1.15.3.1.13.192.0.2.5|65|0
1.3.6.1.2.1.15.3.1.13.192.0.2.6|65|1
1.3.6.1.2.1.15.3.1.13.192.0.2.7|65|0
1.3.6.1.2.1.15.3.1.16.172.31.31.50|66|836
1.3.6.1.2.1.15.3.1.16.192.0.2.4|66|0
1.3.6.1.2.1.15.3.1.16.192.0.2.5|66|0
1.3.6.1.2.1.15.3.1.16.192.0.2.6|66|0
1.3.6.1.2.1.15.3.1.16.192.0.2.7|66|0
1.3.6.1.2.1.15.3.1.24.172.31.31.50|66|836
1.3.6.1.2.1.15.3.1.24.192.0.2.4|66|0
1.3.6.1.2.1.15.3.1.24.192.0.2.5|66|0
1.3.6.1.2.1.15.3.1.24.192.0.2.6|66|0
1.3.6.1.2.1.15.3.1.24.192.0.2.7|66|0
1.3.6.1.2.1.17.1.4.1.2.1|2|1
1.3.6.1.2.1.17.1.4.1.2.2|2|2
1.3.6.1.2.1.17.1.4.1.2.3|2|3
@@ -1831,7 +1880,7 @@
1.3.6.1.2.1.31.1.1.1.1.16777282|4|ve66
1.3.6.1.2.1.31.1.1.1.1.33554433|4|loopback1
1.3.6.1.2.1.31.1.1.1.1.83886081|4|LAG1
1.3.6.1.2.1.31.1.1.1.2.1|65|2993
1.3.6.1.2.1.31.1.1.1.2.1|65|92321
1.3.6.1.2.1.31.1.1.1.2.2|65|0
1.3.6.1.2.1.31.1.1.1.2.3|65|0
1.3.6.1.2.1.31.1.1.1.2.4|65|0
@@ -1855,16 +1904,16 @@
1.3.6.1.2.1.31.1.1.1.2.22|65|0
1.3.6.1.2.1.31.1.1.1.2.23|65|0
1.3.6.1.2.1.31.1.1.1.2.24|65|0
1.3.6.1.2.1.31.1.1.1.2.65|65|5596
1.3.6.1.2.1.31.1.1.1.2.65|65|87357
1.3.6.1.2.1.31.1.1.1.2.66|65|0
1.3.6.1.2.1.31.1.1.1.2.67|65|5596
1.3.6.1.2.1.31.1.1.1.2.67|65|87357
1.3.6.1.2.1.31.1.1.1.2.68|65|0
1.3.6.1.2.1.31.1.1.1.2.129|65|0
1.3.6.1.2.1.31.1.1.1.2.16777271|65|0
1.3.6.1.2.1.31.1.1.1.2.16777282|65|0
1.3.6.1.2.1.31.1.1.1.2.33554433|65|0
1.3.6.1.2.1.31.1.1.1.2.83886081|65|11192
1.3.6.1.2.1.31.1.1.1.3.1|65|5
1.3.6.1.2.1.31.1.1.1.2.83886081|65|174714
1.3.6.1.2.1.31.1.1.1.3.1|65|11
1.3.6.1.2.1.31.1.1.1.3.2|65|0
1.3.6.1.2.1.31.1.1.1.3.3|65|0
1.3.6.1.2.1.31.1.1.1.3.4|65|0
@@ -1897,7 +1946,7 @@
1.3.6.1.2.1.31.1.1.1.3.16777282|65|0
1.3.6.1.2.1.31.1.1.1.3.33554433|65|0
1.3.6.1.2.1.31.1.1.1.3.83886081|65|0
1.3.6.1.2.1.31.1.1.1.4.1|65|66
1.3.6.1.2.1.31.1.1.1.4.1|65|2812376
1.3.6.1.2.1.31.1.1.1.4.2|65|0
1.3.6.1.2.1.31.1.1.1.4.3|65|0
1.3.6.1.2.1.31.1.1.1.4.4|65|0
@@ -1921,16 +1970,16 @@
1.3.6.1.2.1.31.1.1.1.4.22|65|0
1.3.6.1.2.1.31.1.1.1.4.23|65|0
1.3.6.1.2.1.31.1.1.1.4.24|65|0
1.3.6.1.2.1.31.1.1.1.4.65|65|367621
1.3.6.1.2.1.31.1.1.1.4.65|65|10621613
1.3.6.1.2.1.31.1.1.1.4.66|65|0
1.3.6.1.2.1.31.1.1.1.4.67|65|2947
1.3.6.1.2.1.31.1.1.1.4.67|65|84979
1.3.6.1.2.1.31.1.1.1.4.68|65|0
1.3.6.1.2.1.31.1.1.1.4.129|65|0
1.3.6.1.2.1.31.1.1.1.4.16777271|65|0
1.3.6.1.2.1.31.1.1.1.4.16777282|65|0
1.3.6.1.2.1.31.1.1.1.4.33554433|65|0
1.3.6.1.2.1.31.1.1.1.4.83886081|65|370568
1.3.6.1.2.1.31.1.1.1.5.1|65|12988
1.3.6.1.2.1.31.1.1.1.4.83886081|65|10706592
1.3.6.1.2.1.31.1.1.1.5.1|65|2674858
1.3.6.1.2.1.31.1.1.1.5.2|65|0
1.3.6.1.2.1.31.1.1.1.5.3|65|0
1.3.6.1.2.1.31.1.1.1.5.4|65|0
@@ -1954,7 +2003,7 @@
1.3.6.1.2.1.31.1.1.1.5.22|65|0
1.3.6.1.2.1.31.1.1.1.5.23|65|0
1.3.6.1.2.1.31.1.1.1.5.24|65|0
1.3.6.1.2.1.31.1.1.1.5.65|65|5884
1.3.6.1.2.1.31.1.1.1.5.65|65|169948
1.3.6.1.2.1.31.1.1.1.5.66|65|0
1.3.6.1.2.1.31.1.1.1.5.67|65|0
1.3.6.1.2.1.31.1.1.1.5.68|65|0
@@ -1962,8 +2011,8 @@
1.3.6.1.2.1.31.1.1.1.5.16777271|65|0
1.3.6.1.2.1.31.1.1.1.5.16777282|65|0
1.3.6.1.2.1.31.1.1.1.5.33554433|65|0
1.3.6.1.2.1.31.1.1.1.5.83886081|65|5884
1.3.6.1.2.1.31.1.1.1.6.1|70|11498835
1.3.6.1.2.1.31.1.1.1.5.83886081|65|169948
1.3.6.1.2.1.31.1.1.1.6.1|70|282427380
1.3.6.1.2.1.31.1.1.1.6.2|70|0
1.3.6.1.2.1.31.1.1.1.6.3|70|0
1.3.6.1.2.1.31.1.1.1.6.4|70|0
@@ -1987,16 +2036,16 @@
1.3.6.1.2.1.31.1.1.1.6.22|70|0
1.3.6.1.2.1.31.1.1.1.6.23|70|0
1.3.6.1.2.1.31.1.1.1.6.24|70|0
1.3.6.1.2.1.31.1.1.1.6.65|70|761410
1.3.6.1.2.1.31.1.1.1.6.65|70|11226818
1.3.6.1.2.1.31.1.1.1.6.66|70|0
1.3.6.1.2.1.31.1.1.1.6.67|70|761410
1.3.6.1.2.1.31.1.1.1.6.67|70|11226818
1.3.6.1.2.1.31.1.1.1.6.68|70|0
1.3.6.1.2.1.31.1.1.1.6.129|70|0
1.3.6.1.2.1.31.1.1.1.6.16777271|70|0
1.3.6.1.2.1.31.1.1.1.6.16777282|70|0
1.3.6.1.2.1.31.1.1.1.6.33554433|70|0
1.3.6.1.2.1.31.1.1.1.6.83886081|70|1522820
1.3.6.1.2.1.31.1.1.1.7.1|70|113949
1.3.6.1.2.1.31.1.1.1.6.83886081|70|22453636
1.3.6.1.2.1.31.1.1.1.7.1|70|2579380
1.3.6.1.2.1.31.1.1.1.7.2|70|0
1.3.6.1.2.1.31.1.1.1.7.3|70|0
1.3.6.1.2.1.31.1.1.1.7.4|70|0
@@ -2029,7 +2078,7 @@
1.3.6.1.2.1.31.1.1.1.7.16777282|70|0
1.3.6.1.2.1.31.1.1.1.7.33554433|70|0
1.3.6.1.2.1.31.1.1.1.7.83886081|70|0
1.3.6.1.2.1.31.1.1.1.8.1|70|2993
1.3.6.1.2.1.31.1.1.1.8.1|70|92321
1.3.6.1.2.1.31.1.1.1.8.2|70|0
1.3.6.1.2.1.31.1.1.1.8.3|70|0
1.3.6.1.2.1.31.1.1.1.8.4|70|0
@@ -2053,16 +2102,16 @@
1.3.6.1.2.1.31.1.1.1.8.22|70|0
1.3.6.1.2.1.31.1.1.1.8.23|70|0
1.3.6.1.2.1.31.1.1.1.8.24|70|0
1.3.6.1.2.1.31.1.1.1.8.65|70|5596
1.3.6.1.2.1.31.1.1.1.8.65|70|87357
1.3.6.1.2.1.31.1.1.1.8.66|70|0
1.3.6.1.2.1.31.1.1.1.8.67|70|5596
1.3.6.1.2.1.31.1.1.1.8.67|70|87357
1.3.6.1.2.1.31.1.1.1.8.68|70|0
1.3.6.1.2.1.31.1.1.1.8.129|70|0
1.3.6.1.2.1.31.1.1.1.8.16777271|70|0
1.3.6.1.2.1.31.1.1.1.8.16777282|70|0
1.3.6.1.2.1.31.1.1.1.8.33554433|70|0
1.3.6.1.2.1.31.1.1.1.8.83886081|70|11192
1.3.6.1.2.1.31.1.1.1.9.1|70|5
1.3.6.1.2.1.31.1.1.1.8.83886081|70|174714
1.3.6.1.2.1.31.1.1.1.9.1|70|11
1.3.6.1.2.1.31.1.1.1.9.2|70|0
1.3.6.1.2.1.31.1.1.1.9.3|70|0
1.3.6.1.2.1.31.1.1.1.9.4|70|0
@@ -2095,7 +2144,7 @@
1.3.6.1.2.1.31.1.1.1.9.16777282|70|0
1.3.6.1.2.1.31.1.1.1.9.33554433|70|0
1.3.6.1.2.1.31.1.1.1.9.83886081|70|0
1.3.6.1.2.1.31.1.1.1.10.1|70|26461128
1.3.6.1.2.1.31.1.1.1.10.1|70|1052063153
1.3.6.1.2.1.31.1.1.1.10.2|70|0
1.3.6.1.2.1.31.1.1.1.10.3|70|0
1.3.6.1.2.1.31.1.1.1.10.4|70|0
@@ -2119,16 +2168,16 @@
1.3.6.1.2.1.31.1.1.1.10.22|70|0
1.3.6.1.2.1.31.1.1.1.10.23|70|0
1.3.6.1.2.1.31.1.1.1.10.24|70|0
1.3.6.1.2.1.31.1.1.1.10.65|70|35056576
1.3.6.1.2.1.31.1.1.1.10.65|70|1012877264
1.3.6.1.2.1.31.1.1.1.10.66|70|0
1.3.6.1.2.1.31.1.1.1.10.67|70|377220
1.3.6.1.2.1.31.1.1.1.10.67|70|10877316
1.3.6.1.2.1.31.1.1.1.10.68|70|0
1.3.6.1.2.1.31.1.1.1.10.129|70|0
1.3.6.1.2.1.31.1.1.1.10.16777271|70|0
1.3.6.1.2.1.31.1.1.1.10.16777282|70|0
1.3.6.1.2.1.31.1.1.1.10.33554433|70|0
1.3.6.1.2.1.31.1.1.1.10.83886081|70|35433796
1.3.6.1.2.1.31.1.1.1.11.1|70|113923
1.3.6.1.2.1.31.1.1.1.10.83886081|70|1023754580
1.3.6.1.2.1.31.1.1.1.11.1|70|2581207
1.3.6.1.2.1.31.1.1.1.11.2|70|0
1.3.6.1.2.1.31.1.1.1.11.3|70|0
1.3.6.1.2.1.31.1.1.1.11.4|70|0
@@ -2161,7 +2210,7 @@
1.3.6.1.2.1.31.1.1.1.11.16777282|70|0
1.3.6.1.2.1.31.1.1.1.11.33554433|70|0
1.3.6.1.2.1.31.1.1.1.11.83886081|70|0
1.3.6.1.2.1.31.1.1.1.12.1|70|66
1.3.6.1.2.1.31.1.1.1.12.1|70|2812376
1.3.6.1.2.1.31.1.1.1.12.2|70|0
1.3.6.1.2.1.31.1.1.1.12.3|70|0
1.3.6.1.2.1.31.1.1.1.12.4|70|0
@@ -2185,16 +2234,16 @@
1.3.6.1.2.1.31.1.1.1.12.22|70|0
1.3.6.1.2.1.31.1.1.1.12.23|70|0
1.3.6.1.2.1.31.1.1.1.12.24|70|0
1.3.6.1.2.1.31.1.1.1.12.65|70|367621
1.3.6.1.2.1.31.1.1.1.12.65|70|10621613
1.3.6.1.2.1.31.1.1.1.12.66|70|0
1.3.6.1.2.1.31.1.1.1.12.67|70|2947
1.3.6.1.2.1.31.1.1.1.12.67|70|84979
1.3.6.1.2.1.31.1.1.1.12.68|70|0
1.3.6.1.2.1.31.1.1.1.12.129|70|0
1.3.6.1.2.1.31.1.1.1.12.16777271|70|0
1.3.6.1.2.1.31.1.1.1.12.16777282|70|0
1.3.6.1.2.1.31.1.1.1.12.33554433|70|0
1.3.6.1.2.1.31.1.1.1.12.83886081|70|370568
1.3.6.1.2.1.31.1.1.1.13.1|70|12988
1.3.6.1.2.1.31.1.1.1.12.83886081|70|10706592
1.3.6.1.2.1.31.1.1.1.13.1|70|2674858
1.3.6.1.2.1.31.1.1.1.13.2|70|0
1.3.6.1.2.1.31.1.1.1.13.3|70|0
1.3.6.1.2.1.31.1.1.1.13.4|70|0
@@ -2218,7 +2267,7 @@
1.3.6.1.2.1.31.1.1.1.13.22|70|0
1.3.6.1.2.1.31.1.1.1.13.23|70|0
1.3.6.1.2.1.31.1.1.1.13.24|70|0
1.3.6.1.2.1.31.1.1.1.13.65|70|5884
1.3.6.1.2.1.31.1.1.1.13.65|70|169948
1.3.6.1.2.1.31.1.1.1.13.66|70|0
1.3.6.1.2.1.31.1.1.1.13.67|70|0
1.3.6.1.2.1.31.1.1.1.13.68|70|0
@@ -2226,7 +2275,7 @@
1.3.6.1.2.1.31.1.1.1.13.16777271|70|0
1.3.6.1.2.1.31.1.1.1.13.16777282|70|0
1.3.6.1.2.1.31.1.1.1.13.33554433|70|0
1.3.6.1.2.1.31.1.1.1.13.83886081|70|5884
1.3.6.1.2.1.31.1.1.1.13.83886081|70|169948
1.3.6.1.2.1.31.1.1.1.14.1|2|1
1.3.6.1.2.1.31.1.1.1.14.2|2|1
1.3.6.1.2.1.31.1.1.1.14.3|2|1
@@ -2392,34 +2441,34 @@
1.3.6.1.2.1.31.1.1.1.18.16777282|4|
1.3.6.1.2.1.31.1.1.1.18.33554433|4|
1.3.6.1.2.1.31.1.1.1.18.83886081|4|downlink
1.3.6.1.2.1.31.1.1.1.19.1|67|2206025
1.3.6.1.2.1.31.1.1.1.19.2|67|2206025
1.3.6.1.2.1.31.1.1.1.19.3|67|2206025
1.3.6.1.2.1.31.1.1.1.19.4|67|2206025
1.3.6.1.2.1.31.1.1.1.19.5|67|2206025
1.3.6.1.2.1.31.1.1.1.19.6|67|2206025
1.3.6.1.2.1.31.1.1.1.19.7|67|2206025
1.3.6.1.2.1.31.1.1.1.19.8|67|2206025
1.3.6.1.2.1.31.1.1.1.19.9|67|2206025
1.3.6.1.2.1.31.1.1.1.19.10|67|2206025
1.3.6.1.2.1.31.1.1.1.19.11|67|2206025
1.3.6.1.2.1.31.1.1.1.19.12|67|2206025
1.3.6.1.2.1.31.1.1.1.19.13|67|2206025
1.3.6.1.2.1.31.1.1.1.19.14|67|2206025
1.3.6.1.2.1.31.1.1.1.19.15|67|2206025
1.3.6.1.2.1.31.1.1.1.19.16|67|2206025
1.3.6.1.2.1.31.1.1.1.19.17|67|2206025
1.3.6.1.2.1.31.1.1.1.19.18|67|2206025
1.3.6.1.2.1.31.1.1.1.19.19|67|2206025
1.3.6.1.2.1.31.1.1.1.19.20|67|2206025
1.3.6.1.2.1.31.1.1.1.19.21|67|2206025
1.3.6.1.2.1.31.1.1.1.19.22|67|2206025
1.3.6.1.2.1.31.1.1.1.19.23|67|2206025
1.3.6.1.2.1.31.1.1.1.19.24|67|2206025
1.3.6.1.2.1.31.1.1.1.19.65|67|2205925
1.3.6.1.2.1.31.1.1.1.19.66|67|2205925
1.3.6.1.2.1.31.1.1.1.19.67|67|2205925
1.3.6.1.2.1.31.1.1.1.19.68|67|2205925
1.3.6.1.2.1.31.1.1.1.19.1|67|63730000
1.3.6.1.2.1.31.1.1.1.19.2|67|63730000
1.3.6.1.2.1.31.1.1.1.19.3|67|63730000
1.3.6.1.2.1.31.1.1.1.19.4|67|63730000
1.3.6.1.2.1.31.1.1.1.19.5|67|63730000
1.3.6.1.2.1.31.1.1.1.19.6|67|63730000
1.3.6.1.2.1.31.1.1.1.19.7|67|63730000
1.3.6.1.2.1.31.1.1.1.19.8|67|63730000
1.3.6.1.2.1.31.1.1.1.19.9|67|63730000
1.3.6.1.2.1.31.1.1.1.19.10|67|63730000
1.3.6.1.2.1.31.1.1.1.19.11|67|63730000
1.3.6.1.2.1.31.1.1.1.19.12|67|63730000
1.3.6.1.2.1.31.1.1.1.19.13|67|63730000
1.3.6.1.2.1.31.1.1.1.19.14|67|63730000
1.3.6.1.2.1.31.1.1.1.19.15|67|63730000
1.3.6.1.2.1.31.1.1.1.19.16|67|63730000
1.3.6.1.2.1.31.1.1.1.19.17|67|63730000
1.3.6.1.2.1.31.1.1.1.19.18|67|63730000
1.3.6.1.2.1.31.1.1.1.19.19|67|63730000
1.3.6.1.2.1.31.1.1.1.19.20|67|63730000
1.3.6.1.2.1.31.1.1.1.19.21|67|63730000
1.3.6.1.2.1.31.1.1.1.19.22|67|63730000
1.3.6.1.2.1.31.1.1.1.19.23|67|63730000
1.3.6.1.2.1.31.1.1.1.19.24|67|63730000
1.3.6.1.2.1.31.1.1.1.19.65|67|63729900
1.3.6.1.2.1.31.1.1.1.19.66|67|63729900
1.3.6.1.2.1.31.1.1.1.19.67|67|63729900
1.3.6.1.2.1.31.1.1.1.19.68|67|63729900
1.3.6.1.2.1.31.1.1.1.19.129|67|0
1.3.6.1.2.1.31.1.1.1.19.16777271|67|0
1.3.6.1.2.1.31.1.1.1.19.16777282|67|0
@@ -3320,12 +3369,12 @@
1.3.6.1.4.1.1991.1.1.2.2.1.1.24.1|70|2147483648
1.3.6.1.4.1.1991.1.1.2.2.1.1.24.2|70|2147483648
1.3.6.1.4.1.1991.1.1.2.2.1.1.24.3|70|2147483648
1.3.6.1.4.1.1991.1.1.2.2.1.1.25.1|70|1057214464
1.3.6.1.4.1.1991.1.1.2.2.1.1.25.2|70|1057214464
1.3.6.1.4.1.1991.1.1.2.2.1.1.25.3|70|1057218560
1.3.6.1.4.1.1991.1.1.2.2.1.1.28.1|66|5076
1.3.6.1.4.1.1991.1.1.2.2.1.1.28.2|66|5076
1.3.6.1.4.1.1991.1.1.2.2.1.1.28.3|66|5076
1.3.6.1.4.1.1991.1.1.2.2.1.1.25.1|70|1057001472
1.3.6.1.4.1.1991.1.1.2.2.1.1.25.2|70|1057001472
1.3.6.1.4.1.1991.1.1.2.2.1.1.25.3|70|1057001472
1.3.6.1.4.1.1991.1.1.2.2.1.1.28.1|66|5077
1.3.6.1.4.1.1991.1.1.2.2.1.1.28.2|66|5077
1.3.6.1.4.1.1991.1.1.2.2.1.1.28.3|66|5077
1.3.6.1.4.1.1991.1.1.2.8.1.1.4.1|4|24x1G Fiber Ports Virtual Module
1.3.6.1.4.1.1991.1.1.2.8.1.1.4.2|4|4x10G Ports Virtual Module
1.3.6.1.4.1.1991.1.1.2.11.1.1.1.1.1.1|2|1
@@ -3364,30 +3413,30 @@
1.3.6.1.4.1.1991.1.1.2.11.1.1.3.3.1.5|2|5
1.3.6.1.4.1.1991.1.1.2.11.1.1.3.3.1.60|2|60
1.3.6.1.4.1.1991.1.1.2.11.1.1.3.3.1.300|2|300
1.3.6.1.4.1.1991.1.1.2.11.1.1.5.1.1.1|66|2
1.3.6.1.4.1.1991.1.1.2.11.1.1.5.1.1.5|66|4
1.3.6.1.4.1.1991.1.1.2.11.1.1.5.1.1.1|66|11
1.3.6.1.4.1.1991.1.1.2.11.1.1.5.1.1.5|66|5
1.3.6.1.4.1.1991.1.1.2.11.1.1.5.1.1.60|66|1
1.3.6.1.4.1.1991.1.1.2.11.1.1.5.1.1.300|66|1
1.3.6.1.4.1.1991.1.1.2.11.1.1.5.2.1.1|66|2
1.3.6.1.4.1.1991.1.1.2.11.1.1.5.2.1.5|66|4
1.3.6.1.4.1.1991.1.1.2.11.1.1.5.2.1.1|66|11
1.3.6.1.4.1.1991.1.1.2.11.1.1.5.2.1.5|66|5
1.3.6.1.4.1.1991.1.1.2.11.1.1.5.2.1.60|66|1
1.3.6.1.4.1.1991.1.1.2.11.1.1.5.2.1.300|66|1
1.3.6.1.4.1.1991.1.1.2.11.1.1.5.3.1.1|66|57
1.3.6.1.4.1.1991.1.1.2.11.1.1.5.3.1.1|66|51
1.3.6.1.4.1.1991.1.1.2.11.1.1.5.3.1.5|66|19
1.3.6.1.4.1.1991.1.1.2.11.1.1.5.3.1.60|66|0
1.3.6.1.4.1.1991.1.1.2.11.1.1.5.3.1.300|66|0
1.3.6.1.4.1.1991.1.1.2.11.1.1.6.1.1.1|66|200
1.3.6.1.4.1.1991.1.1.2.11.1.1.6.1.1.5|66|400
1.3.6.1.4.1.1991.1.1.2.11.1.1.5.3.1.60|66|1
1.3.6.1.4.1.1991.1.1.2.11.1.1.5.3.1.300|66|1
1.3.6.1.4.1.1991.1.1.2.11.1.1.6.1.1.1|66|1100
1.3.6.1.4.1.1991.1.1.2.11.1.1.6.1.1.5|66|500
1.3.6.1.4.1.1991.1.1.2.11.1.1.6.1.1.60|66|100
1.3.6.1.4.1.1991.1.1.2.11.1.1.6.1.1.300|66|100
1.3.6.1.4.1.1991.1.1.2.11.1.1.6.2.1.1|66|200
1.3.6.1.4.1.1991.1.1.2.11.1.1.6.2.1.5|66|400
1.3.6.1.4.1.1991.1.1.2.11.1.1.6.2.1.1|66|1100
1.3.6.1.4.1.1991.1.1.2.11.1.1.6.2.1.5|66|500
1.3.6.1.4.1.1991.1.1.2.11.1.1.6.2.1.60|66|100
1.3.6.1.4.1.1991.1.1.2.11.1.1.6.2.1.300|66|100
1.3.6.1.4.1.1991.1.1.2.11.1.1.6.3.1.1|66|5700
1.3.6.1.4.1.1991.1.1.2.11.1.1.6.3.1.1|66|5100
1.3.6.1.4.1.1991.1.1.2.11.1.1.6.3.1.5|66|1900
1.3.6.1.4.1.1991.1.1.2.11.1.1.6.3.1.60|66|0
1.3.6.1.4.1.1991.1.1.2.11.1.1.6.3.1.300|66|0
1.3.6.1.4.1.1991.1.1.2.11.1.1.6.3.1.60|66|100
1.3.6.1.4.1.1991.1.1.2.11.1.1.6.3.1.300|66|100
1.3.6.1.4.1.1991.1.1.2.13.1.1.3.1.1|4|Line module 1, sensor 1 temperature
1.3.6.1.4.1.1991.1.1.2.13.1.1.3.1.2|4|Line module 1, sensor 2 temperature
1.3.6.1.4.1.1991.1.1.2.13.1.1.3.1.3|4|Line module 1, sensor 3 temperature
@@ -3404,22 +3453,22 @@
1.3.6.1.4.1.1991.1.1.2.13.1.1.3.3.2|4|Active management module temperature
1.3.6.1.4.1.1991.1.1.2.13.1.1.3.5.1|4|Management module: CPU temperature
1.3.6.1.4.1.1991.1.1.2.13.1.1.3.5.2|4|Management module: MAC 1 temperature
1.3.6.1.4.1.1991.1.1.2.13.1.1.4.1.1|2|80
1.3.6.1.4.1.1991.1.1.2.13.1.1.4.1.2|2|86
1.3.6.1.4.1.1991.1.1.2.13.1.1.4.1.3|2|72
1.3.6.1.4.1.1991.1.1.2.13.1.1.4.1.4|2|68
1.3.6.1.4.1.1991.1.1.2.13.1.1.4.2.1|2|76
1.3.6.1.4.1.1991.1.1.2.13.1.1.4.2.2|2|88
1.3.6.1.4.1.1991.1.1.2.13.1.1.4.2.3|2|72
1.3.6.1.4.1.1991.1.1.2.13.1.1.4.2.4|2|70
1.3.6.1.4.1.1991.1.1.2.13.1.1.4.2.5|2|74
1.3.6.1.4.1.1991.1.1.2.13.1.1.4.2.6|2|84
1.3.6.1.4.1.1991.1.1.2.13.1.1.4.2.7|2|70
1.3.6.1.4.1.1991.1.1.2.13.1.1.4.2.8|2|68
1.3.6.1.4.1.1991.1.1.2.13.1.1.4.3.1|2|88
1.3.6.1.4.1.1991.1.1.2.13.1.1.4.1.1|2|78
1.3.6.1.4.1.1991.1.1.2.13.1.1.4.1.2|2|82
1.3.6.1.4.1.1991.1.1.2.13.1.1.4.1.3|2|68
1.3.6.1.4.1.1991.1.1.2.13.1.1.4.1.4|2|66
1.3.6.1.4.1.1991.1.1.2.13.1.1.4.2.1|2|74
1.3.6.1.4.1.1991.1.1.2.13.1.1.4.2.2|2|86
1.3.6.1.4.1.1991.1.1.2.13.1.1.4.2.3|2|70
1.3.6.1.4.1.1991.1.1.2.13.1.1.4.2.4|2|68
1.3.6.1.4.1.1991.1.1.2.13.1.1.4.2.5|2|72
1.3.6.1.4.1.1991.1.1.2.13.1.1.4.2.6|2|82
1.3.6.1.4.1.1991.1.1.2.13.1.1.4.2.7|2|66
1.3.6.1.4.1.1991.1.1.2.13.1.1.4.2.8|2|66
1.3.6.1.4.1.1991.1.1.2.13.1.1.4.3.1|2|86
1.3.6.1.4.1.1991.1.1.2.13.1.1.4.3.2|2|96
1.3.6.1.4.1.1991.1.1.2.13.1.1.4.5.1|2|83
1.3.6.1.4.1.1991.1.1.2.13.1.1.4.5.2|2|83
1.3.6.1.4.1.1991.1.1.2.13.1.1.4.5.1|2|81
1.3.6.1.4.1.1991.1.1.2.13.1.1.4.5.2|2|81
1.3.6.1.4.1.1991.1.1.3.3.6.1.1.1|4|N/A
1.3.6.1.4.1.1991.1.1.3.3.6.1.1.2|4|N/A
1.3.6.1.4.1.1991.1.1.3.3.6.1.1.3|4|N/A
@@ -3446,7 +3495,7 @@
1.3.6.1.4.1.1991.1.1.3.3.6.1.1.24|4|N/A
1.3.6.1.4.1.1991.1.1.3.3.6.1.1.65|4|43.3554 C: Normal
1.3.6.1.4.1.1991.1.1.3.3.6.1.1.66|4|N/A
1.3.6.1.4.1.1991.1.1.3.3.6.1.1.67|4|33.7070 C: Normal
1.3.6.1.4.1.1991.1.1.3.3.6.1.1.67|4|32.8242 C: Normal
1.3.6.1.4.1.1991.1.1.3.3.6.1.1.68|4|N/A
1.3.6.1.4.1.1991.1.1.3.3.6.1.2.1|4|N/A
1.3.6.1.4.1.1991.1.1.3.3.6.1.2.2|4|N/A
@@ -3500,9 +3549,9 @@
1.3.6.1.4.1.1991.1.1.3.3.6.1.3.22|4|N/A
1.3.6.1.4.1.1991.1.1.3.3.6.1.3.23|4|N/A
1.3.6.1.4.1.1991.1.1.3.3.6.1.3.24|4|N/A
1.3.6.1.4.1.1991.1.1.3.3.6.1.3.65|4|-002.8008 dBm: Normal
1.3.6.1.4.1.1991.1.1.3.3.6.1.3.65|4|-002.8257 dBm: Normal
1.3.6.1.4.1.1991.1.1.3.3.6.1.3.66|4|N/A
1.3.6.1.4.1.1991.1.1.3.3.6.1.3.67|4|-002.9464 dBm: Normal
1.3.6.1.4.1.1991.1.1.3.3.6.1.3.67|4|-002.9013 dBm: Normal
1.3.6.1.4.1.1991.1.1.3.3.6.1.3.68|4|N/A
1.3.6.1.4.1.1991.1.1.3.3.6.1.4.1|4|N/A
1.3.6.1.4.1.1991.1.1.3.3.6.1.4.2|4|N/A
@@ -3530,7 +3579,7 @@
1.3.6.1.4.1.1991.1.1.3.3.6.1.4.24|4|N/A
1.3.6.1.4.1.1991.1.1.3.3.6.1.4.65|4|6.582 mA: Normal
1.3.6.1.4.1.1991.1.1.3.3.6.1.4.66|4|N/A
1.3.6.1.4.1.1991.1.1.3.3.6.1.4.67|4|33.212 mA: Normal
1.3.6.1.4.1.1991.1.1.3.3.6.1.4.67|4|32.942 mA: Normal
1.3.6.1.4.1.1991.1.1.3.3.6.1.4.68|4|N/A
1.3.6.1.4.1.1991.1.1.3.31.1.1.0|2|1
1.3.6.1.4.1.1991.1.1.3.31.2.2.1.2.1|2|2
@@ -3559,74 +3608,4 @@
1.3.6.1.4.1.1991.1.1.3.31.2.2.1.13.2|4|08.0.30tT311
1.3.6.1.4.1.1991.1.1.3.31.2.2.1.14.1|4|ICX64S08030t.bin
1.3.6.1.4.1.1991.1.1.3.31.2.2.1.14.2|4|ICX64S08030t.bin
1.3.6.1.4.1.1991.1.2.11.17.1.1.1.1|2|1
1.3.6.1.4.1.1991.1.2.11.17.1.1.1.2|2|2
1.3.6.1.4.1.1991.1.2.11.17.1.1.1.3|2|3
1.3.6.1.4.1.1991.1.2.11.17.1.1.1.4|2|4
1.3.6.1.4.1.1991.1.2.11.17.1.1.1.5|2|5
1.3.6.1.4.1.1991.1.2.11.17.1.1.2.1|64|172.31.31.50
1.3.6.1.4.1.1991.1.2.11.17.1.1.2.2|64|192.0.2.4
1.3.6.1.4.1.1991.1.2.11.17.1.1.2.3|64|192.0.2.5
1.3.6.1.4.1.1991.1.2.11.17.1.1.2.4|64|192.0.2.6
1.3.6.1.4.1.1991.1.2.11.17.1.1.2.5|64|192.0.2.7
1.3.6.1.4.1.1991.1.2.11.17.1.1.3.1|2|6
1.3.6.1.4.1.1991.1.2.11.17.1.1.3.2|2|2
1.3.6.1.4.1.1991.1.2.11.17.1.1.3.3|2|1
1.3.6.1.4.1.1991.1.2.11.17.1.1.3.4|2|3
1.3.6.1.4.1.1991.1.2.11.17.1.1.3.5|2|1
1.3.6.1.4.1.1991.1.2.11.17.1.1.4.1|2|37007
1.3.6.1.4.1.1991.1.2.11.17.1.1.4.2|2|5
1.3.6.1.4.1.1991.1.2.11.17.1.1.4.3|2|88245
1.3.6.1.4.1.1991.1.2.11.17.1.1.4.4|2|5
1.3.6.1.4.1.1991.1.2.11.17.1.1.4.5|2|88245
1.3.6.1.4.1.1991.1.2.11.17.1.1.5.1|2|2
1.3.6.1.4.1.1991.1.2.11.17.1.1.5.2|2|0
1.3.6.1.4.1.1991.1.2.11.17.1.1.5.3|2|0
1.3.6.1.4.1.1991.1.2.11.17.1.1.5.4|2|0
1.3.6.1.4.1.1991.1.2.11.17.1.1.5.5|2|0
1.3.6.1.4.1.1991.1.2.11.17.1.1.6.1|2|2
1.3.6.1.4.1.1991.1.2.11.17.1.1.6.2|2|0
1.3.6.1.4.1.1991.1.2.11.17.1.1.6.3|2|0
1.3.6.1.4.1.1991.1.2.11.17.1.1.6.4|2|0
1.3.6.1.4.1.1991.1.2.11.17.1.1.6.5|2|0
1.3.6.1.4.1.1991.3.5.1.1.2.1.10.1.1.4.0.0.0.0.1.4.192.0.2.5|66|65065
1.3.6.1.4.1.1991.3.5.1.1.2.1.10.1.1.4.0.0.0.0.1.4.192.0.2.7|66|4200000065
1.3.6.1.4.1.1991.3.5.1.1.2.1.10.1.1.4.172.31.31.20.1.4.172.31.31.50|66|4200000065
1.3.6.1.4.1.1991.3.5.1.1.2.1.10.1.1.4.192.0.2.5.1.4.192.0.2.4|66|65065
1.3.6.1.4.1.1991.3.5.1.1.2.1.10.1.1.4.192.0.2.5.1.4.192.0.2.6|66|4200000065
1.3.6.1.4.1.1991.3.5.1.1.2.1.10.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2.16.32.1.13.184.0.0.0.0.0.0.0.0.0.0.0.5|66|65065
1.3.6.1.4.1.1991.3.5.1.1.2.1.10.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2.16.32.1.13.184.0.0.0.0.0.0.0.0.0.0.0.7|66|4200000065
1.3.6.1.4.1.1991.3.5.1.1.2.1.10.1.2.16.32.1.13.184.38.1.0.0.0.0.0.0.0.0.0.32.2.16.32.1.13.184.38.1.0.0.0.0.0.0.0.0.0.80|66|4200000065
1.3.6.1.4.1.1991.3.5.1.1.2.1.12.1.1.4.0.0.0.1.1.4.192.0.2.5|2|1
1.3.6.1.4.1.1991.3.5.1.1.2.1.12.1.1.4.0.0.0.1.1.4.192.0.2.7|2|1
1.3.6.1.4.1.1991.3.5.1.1.2.1.12.1.1.4.0.2.5.1.1.4.192.0.2.4|2|2
1.3.6.1.4.1.1991.3.5.1.1.2.1.12.1.1.4.0.2.5.1.1.4.192.0.2.6|2|2
1.3.6.1.4.1.1991.3.5.1.1.2.1.12.1.1.4.31.31.20.1.1.4.172.31.31.50|2|2
1.3.6.1.4.1.1991.3.5.1.1.2.1.12.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2.16.32.1.13.184.0.0.0.0.0.0.0.0.0.0.0.5|2|1
1.3.6.1.4.1.1991.3.5.1.1.2.1.12.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2.16.32.1.13.184.0.0.0.0.0.0.0.0.0.0.0.7|2|1
1.3.6.1.4.1.1991.3.5.1.1.2.1.12.1.2.16.20.1.0.0.26.1.0.0.0.0.0.0.0.0.0.20.2.16.32.1.13.184.38.1.0.0.0.0.0.0.0.0.0.80|2|2
1.3.6.1.4.1.1991.3.5.1.1.2.1.13.1.1.4.0.0.0.1.1.4.192.0.2.5|2|1
1.3.6.1.4.1.1991.3.5.1.1.2.1.13.1.1.4.0.0.0.1.1.4.192.0.2.7|2|1
1.3.6.1.4.1.1991.3.5.1.1.2.1.13.1.1.4.0.2.5.1.1.4.192.0.2.4|2|2
1.3.6.1.4.1.1991.3.5.1.1.2.1.13.1.1.4.0.2.5.1.1.4.192.0.2.6|2|3
1.3.6.1.4.1.1991.3.5.1.1.2.1.13.1.1.4.31.31.20.1.1.4.172.31.31.50|2|6
1.3.6.1.4.1.1991.3.5.1.1.2.1.13.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2.16.32.1.13.184.0.0.0.0.0.0.0.0.0.0.0.5|2|1
1.3.6.1.4.1.1991.3.5.1.1.2.1.13.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2.16.32.1.13.184.0.0.0.0.0.0.0.0.0.0.0.7|2|1
1.3.6.1.4.1.1991.3.5.1.1.2.1.13.1.2.16.20.1.0.0.26.1.0.0.0.0.0.0.0.0.0.20.2.16.32.1.13.184.38.1.0.0.0.0.0.0.0.0.0.80|2|6
1.3.6.1.4.1.1991.3.5.1.1.4.1.1.1.1.4.0.0.0.1.1.4.192.0.2.5|66|88246
1.3.6.1.4.1.1991.3.5.1.1.4.1.1.1.1.4.0.0.0.1.1.4.192.0.2.7|66|88246
1.3.6.1.4.1.1991.3.5.1.1.4.1.1.1.1.4.0.2.5.1.1.4.192.0.2.4|66|88246
1.3.6.1.4.1.1991.3.5.1.1.4.1.1.1.1.4.0.2.5.1.1.4.192.0.2.6|66|88246
1.3.6.1.4.1.1991.3.5.1.1.4.1.1.1.1.4.31.31.20.1.1.4.172.31.31.50|66|37008
1.3.6.1.4.1.1991.3.5.1.1.4.1.1.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2.16.32.1.13.184.0.0.0.0.0.0.0.0.0.0.0.5|66|88246
1.3.6.1.4.1.1991.3.5.1.1.4.1.1.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2.16.32.1.13.184.0.0.0.0.0.0.0.0.0.0.0.7|66|88246
1.3.6.1.4.1.1991.3.5.1.1.4.1.1.1.2.16.20.1.0.0.26.1.0.0.0.0.0.0.0.0.0.20.2.16.32.1.13.184.38.1.0.0.0.0.0.0.0.0.0.80|66|37008
1.3.6.1.4.1.1991.3.5.1.1.4.1.2.1.1.4.0.0.0.1.1.4.192.0.2.5|66|0
1.3.6.1.4.1.1991.3.5.1.1.4.1.2.1.1.4.0.0.0.1.1.4.192.0.2.7|66|0
1.3.6.1.4.1.1991.3.5.1.1.4.1.2.1.1.4.0.2.5.1.1.4.192.0.2.4|66|0
1.3.6.1.4.1.1991.3.5.1.1.4.1.2.1.1.4.0.2.5.1.1.4.192.0.2.6|66|0
1.3.6.1.4.1.1991.3.5.1.1.4.1.2.1.1.4.31.31.20.1.1.4.172.31.31.50|66|0
1.3.6.1.4.1.1991.3.5.1.1.4.1.2.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2.16.32.1.13.184.0.0.0.0.0.0.0.0.0.0.0.5|66|0
1.3.6.1.4.1.1991.3.5.1.1.4.1.2.1.2.16.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.2.16.32.1.13.184.0.0.0.0.0.0.0.0.0.0.0.7|66|0
1.3.6.1.4.1.1991.3.5.1.1.4.1.2.1.2.16.20.1.0.0.26.1.0.0.0.0.0.0.0.0.0.20.2.16.32.1.13.184.38.1.0.0.0.0.0.0.0.0.0.80|66|0
1.3.6.1.6.3.10.2.1.3.0|2|88244
1.3.6.1.6.3.10.2.1.3.0|2|2549203