Support for new Lancom devices (#15779)

* Lancom SNMPrec

* Lancom test data

* Lancom MIBS

* Lancom discovery

* Lancom LX/SX support

* Lancom

* Style CI

* Delete tests/snmpsim/lcossx_gs3510xp.snmprec

This device returns all possible vlans as interfaces, so we get roughly 4k interfaces. This makes the test file too big (>25M). Deleting this device as test data

* Update Lcossx.php

* New Lancom logo

* Remove height/width attribute

* SVG

* Add files via upload
This commit is contained in:
Tozz 2024-01-30 15:03:08 +01:00 committed by GitHub
parent 133cf294b4
commit 7228dbfa23
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
26 changed files with 112880 additions and 103 deletions

295
LibreNMS/OS/Lcoslx.php Normal file
View File

@ -0,0 +1,295 @@
<?php
/**
* Lcoslx.php
*
* Lancom LCOS LX
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* @link https://www.librenms.org
*
* @copyright 2024 Rudy Broersma
* @author Rudy Broersma <tozz@kijkt.tv>
*/
namespace LibreNMS\OS;
use LibreNMS\Device\WirelessSensor;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessCapacityDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessCcqDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessFrequencyDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessNoiseFloorDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessPowerDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessRateDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessRssiDiscovery;
use LibreNMS\Interfaces\Polling\Sensors\WirelessFrequencyPolling;
use LibreNMS\OS;
use LibreNMS\Util\Mac;
class Lcoslx extends OS implements
WirelessFrequencyDiscovery,
WirelessFrequencyPolling,
WirelessCapacityDiscovery,
WirelessNoiseFloorDiscovery,
WirelessPowerDiscovery,
WirelessCcqDiscovery,
WirelessRateDiscovery,
WirelessRssiDiscovery
{
/**
* Convert String to decimal encoded string notation
*
* @param string $index
* @return string decimal encoded OID string
*/
private function strToDecOid($index)
{
$dec_index = [];
for ($i = 0, $j = strlen($index); $i < $j; $i++) {
$dec_index[] = ord($index[$i]);
}
return implode('.', $dec_index);
}
/**
* Discover wireless frequency. This is in Hz. Type is frequency.
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
*
* @return array Sensors
*/
public function discoverWirelessFrequency()
{
$data = snmpwalk_cache_oid($this->getDeviceArray(), 'lcosLXStatusWLANRadiosEntryRadioChannel', [], 'LCOS-LX-MIB');
$sensors = [];
foreach ($data as $index => $entry) {
$sensors[$index] = new WirelessSensor(
'frequency',
$this->getDeviceId(),
'.1.3.6.1.4.1.2356.13.1.3.57.1.3.' . '6.' . $this->strToDecOid($index),
'lcoslx',
$index,
"Frequency ($index)",
WirelessSensor::channelToFrequency($entry['lcosLXStatusWLANRadiosEntryRadioChannel'])
);
}
return $sensors;
}
/**
* Poll wireless frequency as MHz
* The returned array should be sensor_id => value pairs
*
* @param array $sensors Array of sensors needed to be polled
* @return array of polled data
*/
public function pollWirelessFrequency(array $sensors)
{
return $this->pollWirelessChannelAsFrequency($sensors);
}
/**
* Discover wireless capacity. This is a percent. Type is capacity.
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
*
* @return array Sensors
*/
public function discoverWirelessCapacity()
{
$data = snmpwalk_cache_oid($this->getDeviceArray(), 'lcosLXStatusWLANRadiosEntryModemLoad', [], 'LCOS-LX-MIB');
$sensors = [];
foreach ($data as $index => $entry) {
$sensors[$index] = new WirelessSensor(
'capacity',
$this->getDeviceId(),
'.1.3.6.1.4.1.2356.13.1.3.57.1.6.' . '6.' . $this->strToDecOid($index),
'lcoslx',
$index,
"Modem Load ($index)",
$entry['lcosLXStatusWLANRadiosEntryModemLoad']
);
}
return $sensors;
}
/**
* Discover wireless noise floor. This is in dBm/Hz. Type is noise-floor.
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
*
* @return array
*/
public function discoverWirelessNoiseFloor()
{
$data = snmpwalk_cache_oid($this->getDeviceArray(), 'lcosLXStatusWLANRadiosEntryNoiseLevel', [], 'LCOS-LX-MIB');
$sensors = [];
foreach ($data as $index => $entry) {
$sensors[$index] = new WirelessSensor(
'noise-floor',
$this->getDeviceId(),
'.1.3.6.1.4.1.2356.13.1.3.57.1.5.' . '6.' . $this->strToDecOid($index),
'lcoslx',
$index,
"Noise Floor ($index)",
$entry['lcosLXStatusWLANRadiosEntryNoiseLevel']
);
}
return $sensors;
}
/**
* Discover wireless tx or rx power. This is in dBm. Type is power.
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
*
* @return array
*/
public function discoverWirelessPower()
{
$data = snmpwalk_cache_oid($this->getDeviceArray(), 'lcosLXStatusWLANRadiosEntryTransmitPower', [], 'LCOS-LX-MIB');
$sensors = [];
foreach ($data as $index => $entry) {
$sensors[$index] = new WirelessSensor(
'power',
$this->getDeviceId(),
'.1.3.6.1.4.1.2356.13.1.3.57.1.7.' . '6.' . $this->strToDecOid($index),
'lcos-tx',
$index,
"Tx Power ($index)",
$entry['lcosLXStatusWLANRadiosEntryTransmitPower']
);
}
return $sensors;
}
/**
* Discover wireless client connection quality. This is a percent. Type is ccq.
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
*
* @return array Sensors
*/
public function discoverWirelessCcq()
{
$data = snmpwalk_cache_oid($this->getDeviceArray(), 'lcosLXStatusWLANStationEntryPhySignal', [], 'LCOS-LX-MIB');
$data = snmpwalk_cache_oid($this->getDeviceArray(), 'lcosLXStatusWLANStationEntryNetworkName', $data, 'LCOS-LX-MIB');
$ipv4addresses = $this->getCacheByIndex('lcosLXStatusWLANStationEntryIPv4Address', 'LCOS-LX-MIB');
$sensors = [];
foreach ($data as $index => $entry) {
$bssid = $ipv4addresses[$index];
if (isset($sensors[$bssid])) {
continue;
}
$sensors[$bssid] = new WirelessSensor(
'ccq',
$this->getDeviceId(),
'.1.3.6.1.4.1.2356.13.1.3.44.1.10.' . Mac::parse($bssid)->oid() . '.0',
'lcoslx',
$index,
'CCQ ' . $entry['lcosLXStatusWLANStationEntryNetworkName'] . " $bssid",
$entry['lcosLXStatusWLANStationEntryPhySignal']
);
}
return $sensors;
}
/**
* Discover wireless Tx rate. This is in bps. Type is rate.
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
*
* @return array
*/
public function discoverWirelessRate()
{
$data = snmpwalk_cache_oid($this->getDeviceArray(), 'lcosLXStatusWLANStationEntryEffTxRate', [], 'LCOS-LX-MIB');
$data = snmpwalk_cache_oid($this->getDeviceArray(), 'lcosLXStatusWLANStationEntryEffRxRate', $data, 'LCOS-LX-MIB');
$data = snmpwalk_cache_oid($this->getDeviceArray(), 'lcosLXStatusWLANStationEntryNetworkName', $data, 'LCOS-LX-MIB');
$ipv4addresses = $this->getCacheByIndex('lcosLXStatusWLANStationEntryIPv4Address', 'LCOS-LX-MIB');
$sensors = [];
foreach ($data as $index => $entry) {
$bssid = $ipv4addresses[$index];
if (isset($sensors[$bssid])) {
continue;
}
if (isset($entry['lcosLXStatusWLANStationEntryEffTxRate'])) {
$sensors['tx-' . $bssid] = new WirelessSensor(
'rate',
$this->getDeviceId(),
'.1.3.6.1.4.1.2356.13.1.3.32.1.50.' . Mac::parse($bssid)->oid() . '.0',
'lcos-tx',
$bssid,
'TX Rate ' . $entry['lcosLXStatusWLANStationEntryNetworkName'] . " $bssid",
$entry['lcosLXStatusWLANStationEntryEffTxRate'],
1000000
);
}
if (isset($entry['lcosLXStatusWLANStationEntryEffRxRate'])) {
$sensors['rx-' . $bssid] = new WirelessSensor(
'rate',
$this->getDeviceId(),
'.1.3.6.1.4.1.2356.13.1.3.32.1.51.' . Mac::parse($bssid)->oid() . '.0',
'lcos-rx',
$bssid,
'RX Rate ' . $entry['lcosLXStatusWLANStationEntryNetworkName'] . " $bssid",
$entry['lcosLXStatusWLANStationEntryEffTxRate'],
1000000
);
}
}
return $sensors;
}
/**
* Discover wireless RSSI (Received Signal Strength Indicator). This is in dBm. Type is rssi.
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
*
* @return array
*/
public function discoverWirelessRssi()
{
$data = snmpwalk_cache_oid($this->getDeviceArray(), 'lcosLXStatusWLANCompetingNetworksEntrySignalLevel', [], 'LCOS-LX-MIB');
$data = snmpwalk_cache_oid($this->getDeviceArray(), 'lcosLXStatusWLANCompetingNetworksEntryInterpointPeerName', $data, 'LCOS-LX-MIB');
$bssids = $this->getCacheByIndex('lcosLXStatusWLANCompetingNetworksEntryBssid', 'LCOS-LX-MIB');
$sensors = [];
foreach ($data as $index => $entry) {
$bssid = $bssids[$index];
if (isset($sensors[$bssid])) {
continue;
}
$sensors[$bssid] = new WirelessSensor(
'rssi',
$this->getDeviceId(),
'.1.3.6.1.4.1.2356.13.1.3.44.1.26.' . Mac::parse($bssid)->oid() . '.0',
'lcoslx',
$bssid,
'RSSI ' . $entry['lcosLXStatusWLANCompetingNetworksEntryInterpointPeerName'] . " $bssid",
$entry['lcosLXStatusWLANCompetingNetworksEntrySignalLevel']
);
}
return $sensors;
}
}

97
LibreNMS/OS/Lcossx.php Normal file
View File

@ -0,0 +1,97 @@
<?php
/**
* Lcossx.php
*
* LANCOM LCOS SX
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* @link https://www.librenms.org
*
* @copyright 2024 Rudy Broersma
* @author Rudy Broersma <tozz@kijkt.tv>
*/
namespace LibreNMS\OS;
use LibreNMS\Device\Processor;
use LibreNMS\Interfaces\Discovery\ProcessorDiscovery;
use LibreNMS\Interfaces\Polling\ProcessorPolling;
use LibreNMS\OS;
class Lcossx extends OS implements ProcessorDiscovery, ProcessorPolling
{
private string $procOid = '1.3.6.1.4.1.2356.14.1.1.1.24.0';
// OID string value example: 100ms:87%, 1s:49%, 10s:42%
private function convertProcessorData(array $input)
{
$data = [];
$cpuList = explode(',', reset($input)[0]);
foreach ($cpuList as $cpuPart) {
$cpuValues = explode(':', $cpuPart);
$cpuName = trim($cpuValues[0]);
$cpuPerc = str_replace('%', '', $cpuValues[1]);
$data[$cpuName] = $cpuPerc;
}
return $data;
}
public function discoverProcessors()
{
$data = snmpwalk_array_num($this->getDeviceArray(), $this->procOid);
if ($data === false) {
return [];
}
$processors = [];
$count = 0;
foreach ($this->convertProcessorData($data) as $cpuName => $cpuPerc) {
$processors[] = Processor::discover(
'lcossx',
$this->getDeviceId(),
$this->procOid,
$count,
'Processor ' . $cpuName,
1,
$cpuPerc,
100
);
$count++;
}
return $processors;
}
public function pollProcessors(array $processors)
{
$data = snmpwalk_array_num($this->getDeviceArray(), $this->procOid);
if (get_debug_type($data) != 'array') {
return [];
}
$cpuList = $this->convertProcessorData($data);
$data = [];
foreach ($processors as $processor) {
$processor_id = $processor['processor_id'];
$key = explode(' ', $processor['processor_descr'])[1];
$value = $cpuList[$key];
$data[$processor_id] = $value;
}
return $data;
}
}

110
html/images/os/lancom.svg Normal file
View File

@ -0,0 +1,110 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 405.882 144" enable-background="new 0 0 405.882 144" xml:space="preserve">
<g>
<g>
<defs>
<rect id="SVGID_1_" y="28.907" width="403.758" height="101.238"/>
</defs>
<clipPath id="SVGID_2_">
<use xlink:href="#SVGID_1_" overflow="visible"/>
</clipPath>
<polygon clip-path="url(#SVGID_2_)" fill-rule="evenodd" clip-rule="evenodd" fill="#1D1D1B" points="3.973,73.591 3.973,29.421
14.258,29.421 14.258,65.298 47.362,65.298 47.362,73.591 3.973,73.591 "/>
<path clip-path="url(#SVGID_2_)" fill-rule="evenodd" clip-rule="evenodd" fill="#1D1D1B" d="M89.62,38.013l9.501,17.918h-19.35
L89.62,38.013L89.62,38.013z M70.228,73.591l5.162-9.678h28.028l5.294,9.678h11.543l-25.339-44.17h-9.895l-25.036,44.17H70.228
L70.228,73.591z"/>
<path clip-path="url(#SVGID_2_)" fill-rule="evenodd" clip-rule="evenodd" fill="#1D1D1B" d="M133.055,73.591v-44.17h7.031
l31.153,26.031c1.041,0.871,1.995,1.693,2.818,2.43c0.782,0.783,1.521,1.561,2.216,2.387c-0.177-2.473-0.264-4.252-0.35-5.297
c-0.043-0.998-0.087-1.816-0.087-2.34V29.421h9.202v44.17h-7.031l-32.499-27.295c-0.78-0.689-1.435-1.299-2.038-1.863
c-0.565-0.562-1.131-1.129-1.648-1.736c0.17,1.387,0.259,2.689,0.346,3.861c0.042,1.215,0.083,2.297,0.083,3.168v23.865H133.055
L133.055,73.591z"/>
<path clip-path="url(#SVGID_2_)" fill-rule="evenodd" clip-rule="evenodd" fill="#1D1D1B" d="M241.572,37.271h-27.729v28.027
h27.729v-9.502l10.239,2.129v5.252c0,3.992-0.739,6.768-2.254,8.199c-1.522,1.473-4.43,2.215-8.642,2.215h-26.42
c-4.25,0-7.158-0.742-8.631-2.215c-1.525-1.432-2.26-4.207-2.26-8.199V39.831c0-3.992,0.734-6.727,2.26-8.199
c1.473-1.473,4.381-2.211,8.631-2.211h26.42c4.212,0,7.119,0.738,8.642,2.211c1.515,1.473,2.254,4.207,2.254,8.199v4.211
l-10.239,1.648V37.271L241.572,37.271z"/>
<path clip-path="url(#SVGID_2_)" fill-rule="evenodd" clip-rule="evenodd" fill="#1D1D1B" d="M280.488,37.271h33.886v28.027
h-33.886V37.271L280.488,37.271z M270.25,63.177c0,3.992,0.736,6.768,2.258,8.199c1.475,1.473,4.383,2.215,8.637,2.215h32.541
c4.293,0,7.201-0.742,8.676-2.215c1.523-1.432,2.26-4.207,2.26-8.199V39.831c0-3.992-0.736-6.727-2.26-8.199
c-1.475-1.473-4.383-2.211-8.676-2.211h-32.541c-4.254,0-7.162,0.738-8.637,2.211c-1.521,1.473-2.258,4.207-2.258,8.199V63.177
L270.25,63.177z"/>
<path clip-path="url(#SVGID_2_)" fill-rule="evenodd" clip-rule="evenodd" fill="#1D1D1B" d="M342.889,73.591v-44.17h8.282
l20.827,26.725l20.348-26.725h8.243v44.17h-9.503V46.343c0-0.566,0.049-1.215,0.092-2.043c0.084-0.781,0.174-1.691,0.299-2.688
c-0.559,1.127-1.078,2.082-1.473,2.82c-0.434,0.734-0.824,1.344-1.129,1.82l-16.618,22.043h-2.039l-16.659-22.131
c-0.609-0.865-1.127-1.646-1.564-2.383c-0.432-0.736-0.823-1.434-1.086-2.127c0.09,0.912,0.129,1.734,0.177,2.475
c0.042,0.779,0.086,1.477,0.086,2.213v27.248H342.889L342.889,73.591z"/>
<path clip-path="url(#SVGID_2_)" fill-rule="evenodd" clip-rule="evenodd" fill="#1D1D1B" d="M10.395,123.962
c-1.39,0-2.602-0.131-3.6-0.432c-1-0.262-1.91-0.652-2.822-1.086v-3.254h0.217c0.825,0.824,1.822,1.432,2.907,1.867
c1.085,0.43,2.124,0.65,3.123,0.65c1.431,0,2.517-0.264,3.253-0.869c0.737-0.609,1.086-1.387,1.086-2.385
c0-0.783-0.172-1.393-0.565-1.91c-0.391-0.479-0.994-0.826-1.817-1.088c-0.613-0.17-1.175-0.297-1.654-0.428
c-0.518-0.088-1.127-0.264-1.863-0.438c-0.696-0.174-1.303-0.391-1.824-0.697c-0.522-0.258-1-0.605-1.432-1.037
c-0.39-0.436-0.696-0.957-0.912-1.521c-0.259-0.607-0.344-1.256-0.344-2.037c0-1.561,0.607-2.904,1.863-3.947
c1.216-1.088,2.777-1.648,4.686-1.648c1.13,0,2.17,0.131,3.126,0.342c0.954,0.219,1.866,0.525,2.688,0.916v3.125H16.34
c-0.609-0.566-1.434-1.045-2.388-1.477c-0.952-0.434-1.995-0.609-3.081-0.609c-1.173,0-2.167,0.264-2.907,0.824
c-0.736,0.564-1.127,1.305-1.127,2.215c0,0.824,0.216,1.52,0.649,1.996c0.438,0.479,1.086,0.822,1.91,1.086
c0.561,0.129,1.216,0.301,2.039,0.475c0.783,0.215,1.432,0.393,1.952,0.523c1.35,0.432,2.344,1.041,2.953,1.863
c0.647,0.824,0.957,1.865,0.957,3.082c0,0.779-0.178,1.518-0.479,2.254c-0.307,0.74-0.743,1.391-1.305,1.912
c-0.648,0.561-1.344,0.996-2.126,1.301C12.605,123.831,11.61,123.962,10.395,123.962L10.395,123.962z"/>
<polygon clip-path="url(#SVGID_2_)" fill-rule="evenodd" clip-rule="evenodd" fill="#1D1D1B" points="33.607,108.993
25.713,129.083 23.02,129.083 25.665,122.923 20.33,108.993 23.02,108.993 27.014,119.839 31.003,108.993 33.607,108.993 "/>
<path clip-path="url(#SVGID_2_)" fill-rule="evenodd" clip-rule="evenodd" fill="#1D1D1B" d="M42.11,123.962
c-0.996,0-1.905-0.131-2.776-0.389c-0.822-0.262-1.56-0.52-2.125-0.824v-2.777h0.129c0.218,0.176,0.477,0.391,0.738,0.564
c0.305,0.215,0.695,0.436,1.172,0.65c0.389,0.172,0.867,0.348,1.346,0.521c0.52,0.131,1.041,0.215,1.563,0.215
c0.391,0,0.823-0.041,1.256-0.129c0.478-0.131,0.781-0.221,0.997-0.391c0.306-0.174,0.521-0.389,0.655-0.652
c0.169-0.215,0.211-0.562,0.211-0.998c0-0.605-0.129-1.041-0.474-1.346c-0.307-0.303-0.871-0.561-1.65-0.777
c-0.307-0.09-0.738-0.176-1.26-0.262c-0.473-0.088-0.951-0.217-1.386-0.346c-1.13-0.305-1.955-0.828-2.431-1.477
c-0.52-0.693-0.78-1.518-0.78-2.473c0-1.346,0.519-2.428,1.517-3.256c0.999-0.824,2.301-1.258,3.951-1.258
c0.824,0,1.646,0.131,2.471,0.305c0.827,0.217,1.519,0.475,2.082,0.783v2.645h-0.128c-0.608-0.521-1.344-0.908-2.081-1.217
c-0.782-0.26-1.565-0.43-2.343-0.43c-0.827,0-1.521,0.17-2.081,0.518c-0.526,0.35-0.827,0.869-0.827,1.564
c0,0.607,0.173,1.082,0.478,1.387c0.349,0.303,0.866,0.566,1.603,0.738c0.349,0.088,0.78,0.176,1.216,0.307
c0.435,0.08,0.914,0.168,1.43,0.297c1.087,0.262,1.909,0.738,2.431,1.348c0.565,0.65,0.827,1.521,0.827,2.604
c0,0.607-0.133,1.215-0.349,1.779c-0.263,0.564-0.65,1.043-1.128,1.475c-0.52,0.434-1.128,0.736-1.781,0.998
C43.932,123.876,43.108,123.962,42.11,123.962L42.11,123.962z"/>
<path clip-path="url(#SVGID_2_)" fill-rule="evenodd" clip-rule="evenodd" fill="#1D1D1B" d="M57.558,123.962
c-1.343,0-2.387-0.344-3.167-1.125c-0.737-0.785-1.129-1.998-1.129-3.646v-8.115h-1.65v-2.082h1.65v-4.207h2.517v4.207h4.512
v2.082h-4.512v6.988c0,0.736,0,1.301,0.043,1.736c0,0.389,0.131,0.779,0.306,1.125c0.129,0.305,0.345,0.52,0.691,0.697
c0.349,0.129,0.781,0.217,1.345,0.217c0.389,0,0.781-0.045,1.173-0.176c0.39-0.129,0.648-0.219,0.822-0.305h0.13v2.215
c-0.474,0.131-0.953,0.215-1.431,0.303C58.382,123.962,57.951,123.962,57.558,123.962L57.558,123.962z"/>
<path clip-path="url(#SVGID_2_)" fill-rule="evenodd" clip-rule="evenodd" fill="#1D1D1B" d="M66.233,114.681
c0.087-0.609,0.177-1.176,0.396-1.652c0.17-0.479,0.475-0.908,0.823-1.301c0.388-0.344,0.78-0.652,1.258-0.867
c0.478-0.174,0.997-0.303,1.689-0.303c0.654,0,1.216,0.129,1.65,0.303c0.479,0.215,0.827,0.475,1.127,0.867
c0.262,0.305,0.437,0.74,0.611,1.215c0.125,0.479,0.214,1.086,0.214,1.738H66.233L66.233,114.681z M72.614,123.876
c0.392-0.088,0.824-0.172,1.298-0.303c0.35-0.088,0.741-0.217,1.174-0.391c0.433-0.176,0.781-0.305,1.085-0.434v-2.689h-0.174
c-0.174,0.17-0.434,0.348-0.736,0.52c-0.304,0.219-0.694,0.393-1.13,0.607c-0.431,0.172-0.909,0.348-1.431,0.477
c-0.521,0.131-1.041,0.176-1.606,0.176c-1.518,0-2.69-0.436-3.557-1.35c-0.867-0.908-1.304-2.213-1.304-3.945H76.43v-1.305
c0-1.168-0.169-2.166-0.432-2.99c-0.263-0.779-0.693-1.475-1.215-2.039c-0.521-0.562-1.129-0.957-1.823-1.217
c-0.693-0.303-1.521-0.434-2.43-0.434c-1.995,0-3.642,0.738-4.901,2.127c-1.261,1.434-1.868,3.342-1.868,5.727
c0,2.43,0.653,4.295,1.953,5.6c1.255,1.299,3.079,1.949,5.422,1.949C71.749,123.962,72.223,123.962,72.614,123.876L72.614,123.876
z"/>
<path clip-path="url(#SVGID_2_)" fill-rule="evenodd" clip-rule="evenodd" fill="#1D1D1B" d="M98.039,123.659v-8.5
c0-0.656,0-1.305-0.085-1.871c-0.042-0.561-0.128-1.039-0.306-1.344c-0.172-0.348-0.431-0.609-0.736-0.781
c-0.349-0.172-0.781-0.258-1.345-0.258c-0.479,0-1.043,0.17-1.605,0.479c-0.562,0.301-1.17,0.775-1.823,1.344
c0.042,0.17,0.042,0.346,0.042,0.561c0,0.176,0.047,0.434,0.047,0.695v9.676h-2.52v-8.5c0-0.656,0-1.305-0.04-1.871
c-0.088-0.561-0.177-1.039-0.347-1.344c-0.174-0.348-0.437-0.609-0.74-0.781c-0.345-0.172-0.783-0.258-1.3-0.258
c-0.564,0-1.13,0.17-1.694,0.518c-0.565,0.348-1.173,0.736-1.69,1.256v10.98H81.38v-14.666h2.516v1.605
c0.651-0.648,1.259-1.127,1.907-1.473c0.652-0.35,1.344-0.566,2.081-0.566c0.868,0,1.653,0.217,2.302,0.609
c0.694,0.391,1.215,1.041,1.562,1.951c0.74-0.824,1.477-1.473,2.168-1.91c0.694-0.434,1.479-0.65,2.3-0.65
c0.655,0,1.217,0.131,1.737,0.305c0.521,0.217,0.953,0.52,1.344,0.953c0.392,0.432,0.695,0.998,0.911,1.695
c0.219,0.646,0.305,1.475,0.305,2.471v9.676H98.039L98.039,123.659z"/>
<path clip-path="url(#SVGID_2_)" fill-rule="evenodd" clip-rule="evenodd" fill="#1D1D1B" d="M110.624,123.962
c-1,0-1.912-0.131-2.778-0.389c-0.826-0.262-1.562-0.52-2.126-0.824v-2.777h0.129c0.216,0.176,0.479,0.391,0.783,0.564
c0.258,0.215,0.652,0.436,1.126,0.65c0.393,0.172,0.866,0.348,1.345,0.521c0.522,0.131,1.044,0.215,1.564,0.215
c0.436,0,0.826-0.041,1.258-0.129c0.479-0.131,0.782-0.221,0.997-0.391c0.306-0.174,0.523-0.389,0.692-0.652
c0.131-0.215,0.178-0.562,0.178-0.998c0-0.605-0.129-1.041-0.476-1.346c-0.31-0.303-0.87-0.561-1.652-0.777
c-0.302-0.09-0.738-0.176-1.216-0.262c-0.518-0.088-0.996-0.217-1.426-0.346c-1.134-0.305-1.957-0.828-2.432-1.477
c-0.525-0.693-0.783-1.518-0.783-2.473c0-1.346,0.521-2.428,1.521-3.256c0.997-0.824,2.297-1.258,3.991-1.258
c0.779,0,1.603,0.131,2.426,0.305c0.827,0.217,1.522,0.475,2.084,0.783v2.645h-0.127c-0.609-0.521-1.345-0.908-2.087-1.217
c-0.78-0.26-1.559-0.43-2.342-0.43c-0.825,0-1.514,0.17-2.035,0.518c-0.566,0.35-0.871,0.869-0.871,1.564
c0,0.607,0.178,1.082,0.521,1.387c0.304,0.303,0.823,0.566,1.56,0.738c0.349,0.088,0.784,0.176,1.216,0.307
c0.434,0.08,0.913,0.168,1.432,0.297c1.085,0.262,1.91,0.738,2.43,1.348c0.567,0.65,0.825,1.521,0.825,2.604
c0,0.607-0.129,1.215-0.347,1.779c-0.261,0.564-0.654,1.043-1.127,1.475c-0.521,0.434-1.085,0.736-1.781,0.998
C112.446,123.876,111.621,123.962,110.624,123.962L110.624,123.962z"/>
<path clip-path="url(#SVGID_2_)" fill-rule="evenodd" clip-rule="evenodd" fill="#2581C4" d="M4.58,85.216
c-1.953,0-3.512,1.566-3.512,3.518c0,1.91,1.559,3.469,3.512,3.469h395.447c1.909,0,3.47-1.559,3.47-3.469
c0-1.951-1.561-3.518-3.47-3.518H4.58L4.58,85.216z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -0,0 +1,13 @@
mib: LCOS-LX-MIB
modules:
mempools:
data:
-
total: LCOS-LX-MIB::lcosLXStatusHardwareInfoTotalMemoryKbytes
free: LCOS-LX-MIB::lcosLXStatusHardwareInfoFreeMemoryKbytes
precision: 1024
os:
version:
- LCOS-LX-MIB::lcosLXStatusHardwareInfoSWVersion.0
serial:
- LCOS-LX-MIB::lcosLXStatusHardwareInfoSerialNumber.0

View File

@ -0,0 +1,100 @@
mib: LCOS-SX-GENERAL-MIB:LCOS-SX-MIB
modules:
mempools:
data:
-
total: LCOS-SX-MIB::lcsSystemInfoMemory.0
free: LCOS-SX-MIB::lcsSystemInfoFreeMemory.0
descr: 'Main Memory'
precision: 1048576
os:
hardware:
- LCOS-SX-MIB::lcsSystemInfoModelName.0
- .1.3.6.1.4.1.2356.16.1.1.1.1.3.0
version:
- LCOS-SX-MIB::lcsSystemInfoFirmwareVersion.0
- .1.3.6.1.4.1.2356.16.1.1.1.1.13.0
serial:
- LCOS-SX-MIB::lcsSystemInfoSeriesNumber.0
- .1.3.6.1.4.1.2356.16.1.1.1.1.4.0
sensors:
power:
data:
-
oid: lcsPoe
value: lcsPoeStatusTotalPowerRequested
num_oid: '.1.3.6.1.4.1.2356.14.2.13.1.2.1.2.{{ $index }}'
index: 'lcsPoeStatusTotalPowerRequested.{{ $index }}'
group: "PoE"
descr: "PoE Budget Requested - ID {{ $index }}"
-
oid: lcsPoe
value: lcsPoeStatusTotalPowerAllocated
num_oid: '.1.3.6.1.4.1.2356.14.2.13.1.2.1.3.{{ $index }}'
index: 'lcsPoeStatusTotalPowerAllocated.{{ $index }}'
group: "PoE"
descr: "PoE Budget Allocated - ID {{ $index }}"
-
oid: lcsPoe
value: lcsPoeStatusTotalPowerUsed
num_oid: '.1.3.6.1.4.1.2356.14.2.13.1.2.1.4.{{ $index }}'
index: 'lcsPoeStatusTotalPowerUsed.{{ $index }}'
group: "PoE"
descr: "PoE Budget Consumed - ID {{ $index }}"
state:
data:
-
oid: LcsMonitoringFansTableEntry
num_oid: '.1.3.6.1.4.1.2356.100.1.1.3.1.5.{{ $index }}'
descr: lcsMonitoringFanDescription
value: lcsMonitoringFanState
states:
- { value: 1, descr: notpresent, graph: 1, generic: 0 }
- { value: 2, descr: operational, graph: 1, generic: 0 }
- { value: 3, descr: failed, graph: 1, generic: 2 }
- { value: 4, descr: powering, graph: 1, generic: 0 }
- { value: 5, descr: nopower, graph: 1, generic: 2 }
- { value: 6, descr: notpowering, graph: 1, generic: 2 }
- { value: 7, descr: incompatible, graph: 1, generic: 1 }
- { value: 8, descr: warning, graph: 1, generic: 1 }
- { value: 9, descr: present, graph: 1, generic: 0 }
-
oid: lcsMonitoringPSUTable
num_oid: '.1.3.6.1.4.1.2356.100.1.1.4.1.5.{{ $index }}'
index: 'fgHwSensorEntIndex.{{ $index }}'
descr: lcsMonitoringPSUDescription
value: lcsMonitoringPSUState
states:
- { value: 1, descr: notpresent, graph: 1, generic: 0 }
- { value: 2, descr: operational, graph: 1, generic: 0 }
- { value: 3, descr: failed, graph: 1, generic: 2 }
- { value: 4, descr: powering, graph: 1, generic: 0 }
- { value: 5, descr: nopower, graph: 1, generic: 2 }
- { value: 6, descr: notpowering, graph: 1, generic: 2 }
- { value: 7, descr: incompatible, graph: 1, generic: 1 }
- { value: 8, descr: warning, graph: 1, generic: 1 }
- { value: 9, descr: present, graph: 1, generic: 0 }
temperature:
data:
-
oid: lcsMonitoringTempSensorsTable
num_oid: '.1.3.6.1.4.1.2356.100.1.1.1.1.6.{{ $index }}'
descr: lcsMonitoringTempSensorDescription
value: lcsMonitoringTempSensorTemperature
-
oid: lcsSystemInfoTemperatureSensor1
num_oid: '.1.3.6.1.4.1.2356.14.1.1.1.22.{{ $index }}'
descr: 'Temperature sensor 1'
value: lcsSystemInfoTemperatureSensor1
-
oid: lcsSystemInfoTemperatureSensor2
num_oid: '.1.3.6.1.4.1.2356.14.1.1.1.23.{{ $index }}'
descr: 'Temperature sensor 2'
value: lcsSystemInfoTemperatureSensor2
fanspeed:
data:
-
oid: LcsMonitoringFansTableEntry
num_oid: '.1.3.6.1.4.1.2356.100.1.1.3.1.6.{{ $index }}'
descr: lcsMonitoringFanDescription
value: lcsMonitoringFanSpeed

View File

@ -0,0 +1,14 @@
os: lcoslx
text: 'Lancom Systems LCOS LX'
type: wireless
icon: lancom
mib_dir: lancom
empty_ifdescr: true
ifname: true
over:
- { graph: device_bits, text: 'Device Traffic' }
- { graph: device_mempool, text: 'Memory Usage' }
discovery:
-
sysObjectID:
- .1.3.6.1.4.1.2356.13.8.

View File

@ -0,0 +1,16 @@
os: lcossx
text: 'Lancom Systems LCOS SX'
type: network
icon: lancom
mib_dir: lancom
empty_ifdescr: true
ifname: true
over:
- { graph: device_bits, text: 'Device Traffic' }
discovery:
-
sysObjectID:
- .1.3.6.1.4.1.2356.14.8.
- .1.3.6.1.4.1.2356.16.8.

6627
mibs/lancom/LCOS-LX-MIB Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,689 @@
LCOS-SX-GENERAL-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Unsigned32,
Integer32, Counter64, Gauge32, enterprises FROM SNMPv2-SMI
DisplayString, TEXTUAL-CONVENTION FROM SNMPv2-TC;
lcosSXGeneral MODULE-IDENTITY
LAST-UPDATED "202006230000Z"
ORGANIZATION "LANCOM Systems GmbH"
CONTACT-INFO
"
Adenauerstrasse 20 / B2
52146 Wuerselen
Germany
Phone: +49 (0)2405 49 93 6 0
Fax: +49 (0)2405 49 93 6 99
E-Mail: info@lancom.de"
DESCRIPTION
"Management information base definitions"
REVISION "202006230000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { enterprises lancom-systems(2356) 100 }
MonitoringSensorType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Sensor type values."
SYNTAX INTEGER {
fixed(1),
removable(2),
fixedAC(3),
removableDC(4),
fixedDC(5),
removableAC(6)
}
MonitoringModuleStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Module (fan, PSU) status values."
SYNTAX INTEGER {
notpresent(1),
operational(2),
failed(3),
powering(4),
nopower(5),
notpowering(6),
incompatible(7),
warning(8),
present(9)
}
MonitoringTempSensorStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Temperatur sensor status values."
SYNTAX INTEGER {
low(0),
normal(1),
warning(2),
critical(3),
shutdown(4),
notpresent(5),
notoperational(6)
}
-- =============================================================================
-- {NODE} 1.3.6.1.4.1.2356.100.0
lcsNotificationGrp OBJECT IDENTIFIER ::= { lcosSXGeneral 0 }
-- =============================================================================
lcsTraps OBJECT IDENTIFIER ::= { lcsNotificationGrp 1 }
lcsTrapsTemperatureStateChange NOTIFICATION-TYPE
OBJECTS {
lcsMonitoringTempUnitIndex,
lcsNotificationTemperatureStatusCurrent,
lcsNotificationTemperatureStatusPrevious
}
STATUS current
DESCRIPTION
"Trap is sent when the system temperature crosses a threshold.
To avoid rapid flapping between states, a hysteresis may
be applied."
::= { lcsTraps 100 }
lcsTrapsFanStateChange NOTIFICATION-TYPE
OBJECTS {
lcsMonitoringFanIndex,
lcsNotificationStateChangeEvent
}
STATUS current
DESCRIPTION
"Trap is sent when fan state change happens."
::= { lcsTraps 101 }
lcsTrapsPSUStateChange NOTIFICATION-TYPE
OBJECTS {
lcsMonitoringPSUIndex,
lcsNotificationStateChangeEvent
}
STATUS current
DESCRIPTION
"Trap is sent when Power Supply state change happens."
::= { lcsTraps 102 }
-- =============================================================================
lcsNotificationVars OBJECT IDENTIFIER ::= { lcsNotificationGrp 2 }
lcsNotificationStateChangeEvent OBJECT-TYPE
SYNTAX INTEGER {
insertion(1),
removal(2),
becomeoperational(3),
failure(4),
losepower(5)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"This event describes state change events of a fan or power supply.
insertion - hot-pluggable fan or power supply was inserted
removal - hot-pluggable fan or power supply was removed
becomeoperational - fan or power supply became operational after failure state
failure - fan or power supply failure happened
losepower - a power supply was operational, but the power to it has been disconnected or has failed"
::= { lcsNotificationVars 100 }
lcsNotificationTemperatureStatusCurrent OBJECT-TYPE
SYNTAX MonitoringTempSensorStatus
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The current status of the temperature sensor."
::= { lcsNotificationVars 101 }
lcsNotificationTemperatureStatusPrevious OBJECT-TYPE
SYNTAX MonitoringTempSensorStatus
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The previous status of the temperatur sensor, i.e. before this events triggered."
::= { lcsNotificationVars 102 }
-- =============================================================================
-- {NODE} 1.3.6.1.4.1.2356.100.1
lcsStatus OBJECT IDENTIFIER ::= { lcosSXGeneral 1 }
-- =============================================================================
lcsMonitoring OBJECT IDENTIFIER ::= { lcsStatus 1 }
-- lcsMonitoringTempSensorsTable
lcsMonitoringTempSensorsTable OBJECT-TYPE
SYNTAX SEQUENCE OF LcsMonitoringTempSensorsTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of temperature sensors on the device."
::= { lcsMonitoring 1 }
lcsMonitoringTempSensorsTableEntry OBJECT-TYPE
SYNTAX LcsMonitoringTempSensorsTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Temperature sensor entry."
INDEX { lcsMonitoringTempSensorUnitIndex, lcsMonitoringTempSensorIndex }
::= { lcsMonitoringTempSensorsTable 1 }
LcsMonitoringTempSensorsTableEntry ::= SEQUENCE {
lcsMonitoringTempSensorUnitIndex Unsigned32,
lcsMonitoringTempSensorIndex Unsigned32,
lcsMonitoringTempSensorDescription DisplayString,
lcsMonitoringTempSensorType MonitoringSensorType,
lcsMonitoringTempSensorState MonitoringTempSensorStatus,
lcsMonitoringTempSensorTemperature Integer32
}
lcsMonitoringTempSensorUnitIndex OBJECT-TYPE
SYNTAX Unsigned32 (0..12)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Device stacking unit index where the sensor is on, 1 if device is not
capable of stacking."
::= { lcsMonitoringTempSensorsTableEntry 1 }
lcsMonitoringTempSensorIndex OBJECT-TYPE
SYNTAX Unsigned32 (0..15)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index of the temperature sensor on the device, repeating for multiple
stacking units."
::= { lcsMonitoringTempSensorsTableEntry 2 }
lcsMonitoringTempSensorDescription OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description of the temperature sensor."
::= { lcsMonitoringTempSensorsTableEntry 3 }
lcsMonitoringTempSensorType OBJECT-TYPE
SYNTAX MonitoringSensorType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of the temperature sensor. Usually fixed(1)."
::= { lcsMonitoringTempSensorsTableEntry 4 }
lcsMonitoringTempSensorState OBJECT-TYPE
SYNTAX MonitoringTempSensorStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"State of the temperature sensor."
::= { lcsMonitoringTempSensorsTableEntry 5 }
lcsMonitoringTempSensorTemperature OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Temperature measured by the temperature sensor."
::= { lcsMonitoringTempSensorsTableEntry 6 }
-- lcsMonitoringTempUnitTable
lcsMonitoringTempUnitTable OBJECT-TYPE
SYNTAX SEQUENCE OF LcsMonitoringTempUnitEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of temperature state per unit."
::= { lcsMonitoring 2 }
lcsMonitoringTempUnitEntry OBJECT-TYPE
SYNTAX LcsMonitoringTempUnitEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Unit temperatur state entry."
INDEX { lcsMonitoringTempUnitIndex }
::= { lcsMonitoringTempUnitTable 1 }
LcsMonitoringTempUnitEntry ::= SEQUENCE {
lcsMonitoringTempUnitIndex Unsigned32,
lcsMonitoringTempUnitState MonitoringTempSensorStatus,
lcsMonitoringTempUnitTemperature Integer32
}
lcsMonitoringTempUnitIndex OBJECT-TYPE
SYNTAX Unsigned32 (1..12)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Unit index of the unit, 1 if device is not capable of stacking."
::= { lcsMonitoringTempUnitEntry 1 }
lcsMonitoringTempUnitState OBJECT-TYPE
SYNTAX MonitoringTempSensorStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The temperature state of the unit."
::= { lcsMonitoringTempUnitEntry 2 }
lcsMonitoringTempUnitTemperature OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The highest temperature currently reported by any sensor on the unit."
::= { lcsMonitoringTempUnitEntry 3 }
-- lcsMonitoringFansTable
lcsMonitoringFansTable OBJECT-TYPE
SYNTAX SEQUENCE OF LcsMonitoringFansTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of fans on the device."
::= { lcsMonitoring 3 }
lcsMonitoringFansTableEntry OBJECT-TYPE
SYNTAX LcsMonitoringFansTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Fan entry."
INDEX { lcsMonitoringFanUnitIndex, lcsMonitoringFanIndex }
::= { lcsMonitoringFansTable 1 }
LcsMonitoringFansTableEntry ::= SEQUENCE {
lcsMonitoringFanUnitIndex Unsigned32,
lcsMonitoringFanIndex Unsigned32,
lcsMonitoringFanDescription DisplayString,
lcsMonitoringFanType MonitoringSensorType,
lcsMonitoringFanState MonitoringModuleStatus,
lcsMonitoringFanTemperature Integer32
}
lcsMonitoringFanUnitIndex OBJECT-TYPE
SYNTAX Unsigned32 (0..12)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Device stacking unit index where the fan is on, 1 if device is not
capable of stacking."
::= { lcsMonitoringFansTableEntry 1 }
lcsMonitoringFanIndex OBJECT-TYPE
SYNTAX Unsigned32 (0..15)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index of the fan on the device, repeating for multiple
stacking units."
::= { lcsMonitoringFansTableEntry 2 }
lcsMonitoringFanDescription OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description of the fan."
::= { lcsMonitoringFansTableEntry 3 }
lcsMonitoringFanType OBJECT-TYPE
SYNTAX MonitoringSensorType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of the fan. Usually fixed(1) oder removable(2)."
::= { lcsMonitoringFansTableEntry 4 }
lcsMonitoringFanState OBJECT-TYPE
SYNTAX MonitoringModuleStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"State of the fan."
::= { lcsMonitoringFansTableEntry 5 }
lcsMonitoringFanSpeed OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Speed of the fan in RPM."
::= { lcsMonitoringFansTableEntry 6 }
-- lcsMonitoringPSUTable
lcsMonitoringPSUTable OBJECT-TYPE
SYNTAX SEQUENCE OF LcsMonitoringPSUTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of power supply units on the device."
::= { lcsMonitoring 4 }
lcsMonitoringPSUTableEntry OBJECT-TYPE
SYNTAX LcsMonitoringPSUTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Power supply unit entry."
INDEX { lcsMonitoringPSUUnitIndex, lcsMonitoringPSUIndex }
::= { lcsMonitoringPSUTable 1 }
LcsMonitoringPSUTableEntry ::= SEQUENCE {
lcsMonitoringPSUUnitIndex Unsigned32,
lcsMonitoringPSUIndex Unsigned32,
lcsMonitoringPSUDescription DisplayString,
lcsMonitoringPSUType MonitoringSensorType,
lcsMonitoringPSUState MonitoringModuleStatus
}
lcsMonitoringPSUUnitIndex OBJECT-TYPE
SYNTAX Unsigned32 (0..12)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Device stacking unit index where the PSU is on, 1 if device is not
capable of stacking."
::= { lcsMonitoringPSUTableEntry 1 }
lcsMonitoringPSUIndex OBJECT-TYPE
SYNTAX Unsigned32 (0..15)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index of the PSU on the device, repeating for multiple
stacking units."
::= { lcsMonitoringPSUTableEntry 2 }
lcsMonitoringPSUDescription OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Description of the PSU."
::= { lcsMonitoringPSUTableEntry 3 }
lcsMonitoringPSUType OBJECT-TYPE
SYNTAX MonitoringSensorType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of the PSU."
::= { lcsMonitoringPSUTableEntry 4 }
lcsMonitoringPSUState OBJECT-TYPE
SYNTAX MonitoringModuleStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"State of the PSU."
::= { lcsMonitoringPSUTableEntry 5 }
-- =============================================================================
-- {NODE} 1.3.6.1.4.1.2356.100.2
lcsConfiguration OBJECT IDENTIFIER ::= { lcosSXGeneral 2 }
-- =============================================================================
lcsLMC OBJECT IDENTIFIER ::= { lcsConfiguration 1500 }
LMCStatus ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Management, Monitoring and Control Status."
SYNTAX INTEGER {
unpaired(0),
paired(1),
disabled(2),
disabledByWLC(3),
operating(4),
httpProtocolError(5),
httpConnectionError(6),
dnsError(7),
memoryError(8),
notYet(9),
redirect(10),
authenticationError(11),
error(12),
certificateStorageError(13),
pairedAndClaimed(14),
certificateError(15),
deactivatedNoActivationCode(16)
}
lcsLMCOperating OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"LMC Operating Switch
0:Disable
1:Enable
2:Try"
::= { lcsLMC 1 }
lcsLMCConfigViaDHCP OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Enables LMC configuration via DHCP option 43
0:Disable
1:Enable"
::= { lcsLMC 2 }
lcsLMCDomain OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"LMC Domain for example cloud.lancom.de"
::= { lcsLMC 3 }
lcsLMCAutoRenew OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Renew DHCP lease early when connection to LMC is not possible
0:Disabled
1:Enabled"
::= { lcsLMC 4 }
lcsLMCRolloutProjectID OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"LMC Project rollout information string"
::= { lcsLMC 5 }
lcsLMCRolloutLocationID OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"LMC Location rollout information string"
::= { lcsLMC 6 }
lcsLMCRolloutRole OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"LMC Role rollout information string"
::= { lcsLMC 7 }
lcsLMCZeroTouchSupport OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Support for Zero Touch
0:No
1:Yes"
::= { lcsLMC 50 }
lcsLMCPairingTokenPresent OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Paring Token present
0:No
1:Yes"
::= { lcsLMC 51 }
lcsLMCManagementStatus OBJECT-TYPE
SYNTAX LMCStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Management status"
::= { lcsLMC 53 }
lcsLMCControlStatus OBJECT-TYPE
SYNTAX LMCStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Control status"
::= { lcsLMC 54 }
lcsLMCMonitoringStatus OBJECT-TYPE
SYNTAX LMCStatus
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Monitoring status"
::= { lcsLMC 55 }
lcsLMCConfigModified OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Configuration modified by LMC
0:No
1:Yes"
::= { lcsLMC 57 }
lcsLMCDeviceID OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Device ID"
::= { lcsLMC 58 }
lcsLMCStackingStatus OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"0:NotSupported
1:StackingDisabled
2:StackingConfigured
3:StackingActive
4:StackingUnitConfigurationActive"
::= { lcsLMC 59 }
lcsLMCStatusRTT OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Heartbeat round trip time"
::= { lcsLMC 100 }
-- lcsLMCTransportStatusTable
lcsLMCTransportStatusTable OBJECT-TYPE
SYNTAX SEQUENCE OF LcsLMCTransportStatusTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Transport status"
::= { lcsLMC 101 }
lcsLMCTransportStatusTableEntry OBJECT-TYPE
SYNTAX LcsLMCTransportStatusTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Transport number"
INDEX { lcsLMCTransportStatusTransportNumberIndex }
::= { lcsLMCTransportStatusTable 1 }
LcsLMCTransportStatusTableEntry ::= SEQUENCE {
lcsLMCTransportStatusTransportNumberIndex Integer32,
lcsLMCTransportStatusServiceName DisplayString,
lcsLMCTransportStatusHttpRequests Counter64,
lcsLMCTransportStatusHttpRequestsErrors Counter64,
lcsLMCTransportStatusTXBytes Counter64,
lcsLMCTransportStatusRXBytes Counter64
}
lcsLMCTransportStatusTransportNumberIndex OBJECT-TYPE
SYNTAX Integer32 (0..2147483647)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Transport status index"
::= { lcsLMCTransportStatusTableEntry 1 }
lcsLMCTransportStatusServiceName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Service name"
::= { lcsLMCTransportStatusTableEntry 2 }
lcsLMCTransportStatusHttpRequests OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Http requests"
::= { lcsLMCTransportStatusTableEntry 3 }
lcsLMCTransportStatusHttpRequestsErrors OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of Http request errors"
::= { lcsLMCTransportStatusTableEntry 4 }
lcsLMCTransportStatusTXBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of transmitted bytes"
::= { lcsLMCTransportStatusTableEntry 5 }
lcsLMCTransportStatusRXBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received bytes"
::= { lcsLMCTransportStatusTableEntry 7 }
END

25956
mibs/lancom/LCOS-SX-MIB Normal file

File diff suppressed because it is too large Load Diff

23
tests/data/lcos_1.json Normal file
View File

@ -0,0 +1,23 @@
{
"os": {
"discovery": {
"devices": [
{
"sysName": null,
"sysObjectID": ".1.3.6.1.4.1.2356.11.8.103",
"sysDescr": "LANCOM L-322agn dual Wireless 9.20.0566 / 13.05.2016 4002568618100376",
"sysContact": null,
"version": null,
"hardware": null,
"features": null,
"location": null,
"os": "lcos",
"type": "wireless",
"serial": null,
"icon": "lancom.svg"
}
]
},
"poller": "matches discovery"
}
}

View File

@ -14,7 +14,7 @@
"os": "lcos",
"type": "wireless",
"serial": "4002024918100043",
"icon": "lancom.png"
"icon": "lancom.svg"
}
]
},
@ -11137,8 +11137,8 @@
"ifName": "WLC-TUNNEL-1",
"portName": null,
"ifIndex": 27,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -11237,8 +11237,8 @@
"ifName": "WLC-TUNNEL-2",
"portName": null,
"ifIndex": 28,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -11337,8 +11337,8 @@
"ifName": "WLC-TUNNEL-3",
"portName": null,
"ifIndex": 29,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -11437,8 +11437,8 @@
"ifName": "WLC-TUNNEL-4",
"portName": null,
"ifIndex": 30,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -11537,8 +11537,8 @@
"ifName": "WLC-TUNNEL-5",
"portName": null,
"ifIndex": 31,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -11637,8 +11637,8 @@
"ifName": "WLC-TUNNEL-6",
"portName": null,
"ifIndex": 32,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -11737,8 +11737,8 @@
"ifName": "WLC-TUNNEL-7",
"portName": null,
"ifIndex": 33,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -11837,8 +11837,8 @@
"ifName": "WLC-TUNNEL-8",
"portName": null,
"ifIndex": 34,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -11937,8 +11937,8 @@
"ifName": "WLC-TUNNEL-9",
"portName": null,
"ifIndex": 35,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -12037,8 +12037,8 @@
"ifName": "WLC-TUNNEL-10",
"portName": null,
"ifIndex": 36,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -12137,8 +12137,8 @@
"ifName": "WLC-TUNNEL-11",
"portName": null,
"ifIndex": 37,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -12237,8 +12237,8 @@
"ifName": "WLC-TUNNEL-12",
"portName": null,
"ifIndex": 38,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -12337,8 +12337,8 @@
"ifName": "WLC-TUNNEL-13",
"portName": null,
"ifIndex": 39,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -12437,8 +12437,8 @@
"ifName": "WLC-TUNNEL-14",
"portName": null,
"ifIndex": 40,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -12537,8 +12537,8 @@
"ifName": "WLC-TUNNEL-15",
"portName": null,
"ifIndex": 41,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -12637,8 +12637,8 @@
"ifName": "WLC-TUNNEL-16",
"portName": null,
"ifIndex": 42,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -12737,8 +12737,8 @@
"ifName": "WLC-TUNNEL-17",
"portName": null,
"ifIndex": 43,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -12837,8 +12837,8 @@
"ifName": "WLC-TUNNEL-18",
"portName": null,
"ifIndex": 44,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -12937,8 +12937,8 @@
"ifName": "WLC-TUNNEL-19",
"portName": null,
"ifIndex": 45,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -13037,8 +13037,8 @@
"ifName": "WLC-TUNNEL-20",
"portName": null,
"ifIndex": 46,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -13137,8 +13137,8 @@
"ifName": "WLC-TUNNEL-21",
"portName": null,
"ifIndex": 47,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -13237,8 +13237,8 @@
"ifName": "WLC-TUNNEL-22",
"portName": null,
"ifIndex": 48,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -13337,8 +13337,8 @@
"ifName": "WLC-TUNNEL-23",
"portName": null,
"ifIndex": 49,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -13437,8 +13437,8 @@
"ifName": "WLC-TUNNEL-24",
"portName": null,
"ifIndex": 50,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -13537,8 +13537,8 @@
"ifName": "WLC-TUNNEL-25",
"portName": null,
"ifIndex": 51,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -13637,8 +13637,8 @@
"ifName": "WLC-TUNNEL-26",
"portName": null,
"ifIndex": 52,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -13737,8 +13737,8 @@
"ifName": "WLC-TUNNEL-27",
"portName": null,
"ifIndex": 53,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -13837,8 +13837,8 @@
"ifName": "WLC-TUNNEL-28",
"portName": null,
"ifIndex": 54,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -13937,8 +13937,8 @@
"ifName": "WLC-TUNNEL-29",
"portName": null,
"ifIndex": 55,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -14037,8 +14037,8 @@
"ifName": "WLC-TUNNEL-30",
"portName": null,
"ifIndex": 56,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -14137,8 +14137,8 @@
"ifName": "WLC-TUNNEL-31",
"portName": null,
"ifIndex": 57,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -14237,8 +14237,8 @@
"ifName": "WLC-TUNNEL-32",
"portName": null,
"ifIndex": 58,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -14337,8 +14337,8 @@
"ifName": "WLC-TUNNEL-AUTOWDS",
"portName": null,
"ifIndex": 59,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -15237,8 +15237,8 @@
"ifName": "GRE-TUNNEL-1",
"portName": null,
"ifIndex": 68,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -15337,8 +15337,8 @@
"ifName": "GRE-TUNNEL-2",
"portName": null,
"ifIndex": 69,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -15437,8 +15437,8 @@
"ifName": "GRE-TUNNEL-3",
"portName": null,
"ifIndex": 70,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -15537,8 +15537,8 @@
"ifName": "GRE-TUNNEL-4",
"portName": null,
"ifIndex": 71,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -15637,8 +15637,8 @@
"ifName": "GRE-TUNNEL-5",
"portName": null,
"ifIndex": 72,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -15737,8 +15737,8 @@
"ifName": "GRE-TUNNEL-6",
"portName": null,
"ifIndex": 73,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -15837,8 +15837,8 @@
"ifName": "GRE-TUNNEL-7",
"portName": null,
"ifIndex": 74,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -15937,8 +15937,8 @@
"ifName": "GRE-TUNNEL-8",
"portName": null,
"ifIndex": 75,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -16037,8 +16037,8 @@
"ifName": "BRG-1",
"portName": null,
"ifIndex": 76,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "up",
"ifOperStatus_prev": "up",
@ -16137,8 +16137,8 @@
"ifName": "BRG-2",
"portName": null,
"ifIndex": 77,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "lowerLayerDown",
"ifOperStatus_prev": "lowerLayerDown",
@ -16237,8 +16237,8 @@
"ifName": "BRG-3",
"portName": null,
"ifIndex": 78,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "lowerLayerDown",
"ifOperStatus_prev": "lowerLayerDown",
@ -16337,8 +16337,8 @@
"ifName": "BRG-4",
"portName": null,
"ifIndex": 79,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "lowerLayerDown",
"ifOperStatus_prev": "lowerLayerDown",
@ -16437,8 +16437,8 @@
"ifName": "BRG-5",
"portName": null,
"ifIndex": 80,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "lowerLayerDown",
"ifOperStatus_prev": "lowerLayerDown",
@ -16537,8 +16537,8 @@
"ifName": "BRG-6",
"portName": null,
"ifIndex": 81,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "lowerLayerDown",
"ifOperStatus_prev": "lowerLayerDown",
@ -16637,8 +16637,8 @@
"ifName": "BRG-7",
"portName": null,
"ifIndex": 82,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "lowerLayerDown",
"ifOperStatus_prev": "lowerLayerDown",
@ -16737,8 +16737,8 @@
"ifName": "BRG-8",
"portName": null,
"ifIndex": 83,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "lowerLayerDown",
"ifOperStatus_prev": "lowerLayerDown",
@ -16837,8 +16837,8 @@
"ifName": "DSL-CH-1",
"portName": null,
"ifIndex": 85,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "false",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",
@ -16937,8 +16937,8 @@
"ifName": "SER-1",
"portName": null,
"ifIndex": 86,
"ifSpeed": 0,
"ifSpeed_prev": null,
"ifSpeed": null,
"ifSpeed_prev": 0,
"ifConnectorPresent": "true",
"ifOperStatus": "down",
"ifOperStatus_prev": "down",

29032
tests/data/lcos_oap1700b.json Normal file

File diff suppressed because it is too large Load Diff

2422
tests/data/lcoslx_lw500.json Normal file

File diff suppressed because it is too large Load Diff

3022
tests/data/lcoslx_lw600.json Normal file

File diff suppressed because it is too large Load Diff

3422
tests/data/lcoslx_ow602.json Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

15393
tests/data/lcossx_xs5110f.json Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,239 @@
1.3.6.1.2.1.1.1.0|4|Linux HB-B11-A1122 4.4.60 #0 SMP PREEMPT (LCOS-LX: 5.36.0069) 2022-04-20 22:38:11+02:00 armv7l
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.2356.13.8.0.1
1.3.6.1.2.1.1.4.0|4|<private>
1.3.6.1.2.1.1.6.0|4|<private>
1.3.6.1.2.1.2.2.1.1.1|2|1
1.3.6.1.2.1.2.2.1.1.2|2|2
1.3.6.1.2.1.2.2.1.1.3|2|3
1.3.6.1.2.1.2.2.1.1.4|2|4
1.3.6.1.2.1.2.2.1.1.5|2|5
1.3.6.1.2.1.2.2.1.1.6|2|6
1.3.6.1.2.1.2.2.1.1.7|2|7
1.3.6.1.2.1.2.2.1.1.8|2|8
1.3.6.1.2.1.2.2.1.1.9|2|9
1.3.6.1.2.1.2.2.1.1.10|2|10
1.3.6.1.2.1.2.2.1.2.1|4|lo
1.3.6.1.2.1.2.2.1.2.2|4|miireg
1.3.6.1.2.1.2.2.1.2.3|4|eth0
1.3.6.1.2.1.2.2.1.2.4|4|wifi0
1.3.6.1.2.1.2.2.1.2.5|4|wifi1
1.3.6.1.2.1.2.2.1.2.6|4|br-lan
1.3.6.1.2.1.2.2.1.2.7|4|br-lan-100
1.3.6.1.2.1.2.2.1.2.8|4|eth0.100
1.3.6.1.2.1.2.2.1.2.9|4|ath0
1.3.6.1.2.1.2.2.1.2.10|4|ath1
1.3.6.1.2.1.2.2.1.3.1|2|24
1.3.6.1.2.1.2.2.1.3.2|2|1
1.3.6.1.2.1.2.2.1.3.3|2|6
1.3.6.1.2.1.2.2.1.3.4|2|1
1.3.6.1.2.1.2.2.1.3.5|2|1
1.3.6.1.2.1.2.2.1.3.6|2|6
1.3.6.1.2.1.2.2.1.3.7|2|6
1.3.6.1.2.1.2.2.1.3.8|2|6
1.3.6.1.2.1.2.2.1.3.9|2|6
1.3.6.1.2.1.2.2.1.3.10|2|6
1.3.6.1.2.1.2.2.1.4.1|2|65536
1.3.6.1.2.1.2.2.1.4.2|2|0
1.3.6.1.2.1.2.2.1.4.3|2|1500
1.3.6.1.2.1.2.2.1.4.4|2|1500
1.3.6.1.2.1.2.2.1.4.5|2|1500
1.3.6.1.2.1.2.2.1.4.6|2|1500
1.3.6.1.2.1.2.2.1.4.7|2|1500
1.3.6.1.2.1.2.2.1.4.8|2|1500
1.3.6.1.2.1.2.2.1.4.9|2|1500
1.3.6.1.2.1.2.2.1.4.10|2|1500
1.3.6.1.2.1.2.2.1.5.1|66|10000000
1.3.6.1.2.1.2.2.1.5.2|66|0
1.3.6.1.2.1.2.2.1.5.3|66|1000000000
1.3.6.1.2.1.2.2.1.5.4|66|0
1.3.6.1.2.1.2.2.1.5.5|66|0
1.3.6.1.2.1.2.2.1.5.6|66|0
1.3.6.1.2.1.2.2.1.5.7|66|0
1.3.6.1.2.1.2.2.1.5.8|66|1000000000
1.3.6.1.2.1.2.2.1.5.9|66|0
1.3.6.1.2.1.2.2.1.5.10|66|0
1.3.6.1.2.1.2.2.1.6.1|4|
1.3.6.1.2.1.2.2.1.6.2|4|
1.3.6.1.2.1.2.2.1.6.3|4x|00a0577f495d
1.3.6.1.2.1.2.2.1.6.4|4x|00a0577f495f
1.3.6.1.2.1.2.2.1.6.5|4x|00a0577f4960
1.3.6.1.2.1.2.2.1.6.6|4x|00a0577f495d
1.3.6.1.2.1.2.2.1.6.7|4x|00a0577f495d
1.3.6.1.2.1.2.2.1.6.8|4x|00a0577f495d
1.3.6.1.2.1.2.2.1.6.9|4x|00a0577f495f
1.3.6.1.2.1.2.2.1.6.10|4x|00a0577f4960
1.3.6.1.2.1.2.2.1.7.1|2|1
1.3.6.1.2.1.2.2.1.7.2|2|1
1.3.6.1.2.1.2.2.1.7.3|2|1
1.3.6.1.2.1.2.2.1.7.4|2|1
1.3.6.1.2.1.2.2.1.7.5|2|1
1.3.6.1.2.1.2.2.1.7.6|2|1
1.3.6.1.2.1.2.2.1.7.7|2|1
1.3.6.1.2.1.2.2.1.7.8|2|1
1.3.6.1.2.1.2.2.1.7.9|2|1
1.3.6.1.2.1.2.2.1.7.10|2|1
1.3.6.1.2.1.2.2.1.8.1|2|1
1.3.6.1.2.1.2.2.1.8.2|2|1
1.3.6.1.2.1.2.2.1.8.3|2|1
1.3.6.1.2.1.2.2.1.8.4|2|1
1.3.6.1.2.1.2.2.1.8.5|2|1
1.3.6.1.2.1.2.2.1.8.6|2|1
1.3.6.1.2.1.2.2.1.8.7|2|1
1.3.6.1.2.1.2.2.1.8.8|2|1
1.3.6.1.2.1.2.2.1.8.9|2|1
1.3.6.1.2.1.2.2.1.8.10|2|1
1.3.6.1.2.1.2.2.1.9.1|67|0
1.3.6.1.2.1.2.2.1.9.2|67|0
1.3.6.1.2.1.2.2.1.9.3|67|0
1.3.6.1.2.1.2.2.1.9.4|67|0
1.3.6.1.2.1.2.2.1.9.5|67|0
1.3.6.1.2.1.2.2.1.9.6|67|0
1.3.6.1.2.1.2.2.1.9.7|67|0
1.3.6.1.2.1.2.2.1.9.8|67|0
1.3.6.1.2.1.2.2.1.9.9|67|0
1.3.6.1.2.1.2.2.1.9.10|67|0
1.3.6.1.2.1.2.2.1.10.1|65|31592
1.3.6.1.2.1.2.2.1.10.2|65|0
1.3.6.1.2.1.2.2.1.10.3|65|320051385
1.3.6.1.2.1.2.2.1.10.4|65|37300306
1.3.6.1.2.1.2.2.1.10.5|65|62214352
1.3.6.1.2.1.2.2.1.10.6|65|409753015
1.3.6.1.2.1.2.2.1.10.7|65|111754737
1.3.6.1.2.1.2.2.1.10.8|65|396014904
1.3.6.1.2.1.2.2.1.10.9|65|37334532
1.3.6.1.2.1.2.2.1.10.10|65|62220731
1.3.6.1.2.1.2.2.1.11.1|65|376
1.3.6.1.2.1.2.2.1.11.2|65|0
1.3.6.1.2.1.2.2.1.11.3|65|882508438
1.3.6.1.2.1.2.2.1.11.4|65|210256
1.3.6.1.2.1.2.2.1.11.5|65|71605
1.3.6.1.2.1.2.2.1.11.6|65|880255376
1.3.6.1.2.1.2.2.1.11.7|65|1197997
1.3.6.1.2.1.2.2.1.11.8|65|1203304
1.3.6.1.2.1.2.2.1.11.9|65|210492
1.3.6.1.2.1.2.2.1.11.10|65|71627
1.3.6.1.2.1.2.2.1.12.1|65|0
1.3.6.1.2.1.2.2.1.12.2|65|0
1.3.6.1.2.1.2.2.1.12.3|65|0
1.3.6.1.2.1.2.2.1.12.4|65|0
1.3.6.1.2.1.2.2.1.12.5|65|0
1.3.6.1.2.1.2.2.1.12.6|65|0
1.3.6.1.2.1.2.2.1.12.7|65|0
1.3.6.1.2.1.2.2.1.12.8|65|350187
1.3.6.1.2.1.2.2.1.12.9|65|0
1.3.6.1.2.1.2.2.1.12.10|65|0
1.3.6.1.2.1.2.2.1.13.1|65|0
1.3.6.1.2.1.2.2.1.13.2|65|0
1.3.6.1.2.1.2.2.1.13.3|65|131187
1.3.6.1.2.1.2.2.1.13.4|65|0
1.3.6.1.2.1.2.2.1.13.5|65|0
1.3.6.1.2.1.2.2.1.13.6|65|0
1.3.6.1.2.1.2.2.1.13.7|65|0
1.3.6.1.2.1.2.2.1.13.8|65|0
1.3.6.1.2.1.2.2.1.13.9|65|55
1.3.6.1.2.1.2.2.1.13.10|65|0
1.3.6.1.2.1.2.2.1.14.1|65|0
1.3.6.1.2.1.2.2.1.14.2|65|0
1.3.6.1.2.1.2.2.1.14.3|65|0
1.3.6.1.2.1.2.2.1.14.4|65|0
1.3.6.1.2.1.2.2.1.14.5|65|0
1.3.6.1.2.1.2.2.1.14.6|65|0
1.3.6.1.2.1.2.2.1.14.7|65|0
1.3.6.1.2.1.2.2.1.14.8|65|0
1.3.6.1.2.1.2.2.1.14.9|65|55
1.3.6.1.2.1.2.2.1.14.10|65|0
1.3.6.1.2.1.2.2.1.15.1|65|0
1.3.6.1.2.1.2.2.1.15.2|65|0
1.3.6.1.2.1.2.2.1.15.3|65|0
1.3.6.1.2.1.2.2.1.15.4|65|0
1.3.6.1.2.1.2.2.1.15.5|65|0
1.3.6.1.2.1.2.2.1.15.6|65|0
1.3.6.1.2.1.2.2.1.15.7|65|0
1.3.6.1.2.1.2.2.1.15.8|65|0
1.3.6.1.2.1.2.2.1.15.9|65|0
1.3.6.1.2.1.2.2.1.15.10|65|0
1.3.6.1.2.1.2.2.1.16.1|65|31592
1.3.6.1.2.1.2.2.1.16.2|65|0
1.3.6.1.2.1.2.2.1.16.3|65|507893987
1.3.6.1.2.1.2.2.1.16.4|65|224073750
1.3.6.1.2.1.2.2.1.16.5|65|72549384
1.3.6.1.2.1.2.2.1.16.6|65|326819106
1.3.6.1.2.1.2.2.1.16.7|65|11116
1.3.6.1.2.1.2.2.1.16.8|65|99453672
1.3.6.1.2.1.2.2.1.16.9|65|203587411
1.3.6.1.2.1.2.2.1.16.10|65|62939320
1.3.6.1.2.1.2.2.1.17.1|65|376
1.3.6.1.2.1.2.2.1.17.2|65|0
1.3.6.1.2.1.2.2.1.17.3|65|3015165
1.3.6.1.2.1.2.2.1.17.4|65|343923
1.3.6.1.2.1.2.2.1.17.5|65|81416
1.3.6.1.2.1.2.2.1.17.6|65|2329457
1.3.6.1.2.1.2.2.1.17.7|65|280
1.3.6.1.2.1.2.2.1.17.8|65|281638
1.3.6.1.2.1.2.2.1.17.9|65|302649
1.3.6.1.2.1.2.2.1.17.10|65|69569
1.3.6.1.2.1.2.2.1.18.1|65|0
1.3.6.1.2.1.2.2.1.18.2|65|0
1.3.6.1.2.1.2.2.1.18.3|65|0
1.3.6.1.2.1.2.2.1.18.4|65|0
1.3.6.1.2.1.2.2.1.18.5|65|0
1.3.6.1.2.1.2.2.1.18.6|65|0
1.3.6.1.2.1.2.2.1.18.7|65|0
1.3.6.1.2.1.2.2.1.18.8|65|0
1.3.6.1.2.1.2.2.1.18.9|65|0
1.3.6.1.2.1.2.2.1.18.10|65|0
1.3.6.1.2.1.2.2.1.19.1|65|0
1.3.6.1.2.1.2.2.1.19.2|65|0
1.3.6.1.2.1.2.2.1.19.3|65|0
1.3.6.1.2.1.2.2.1.19.4|65|0
1.3.6.1.2.1.2.2.1.19.5|65|0
1.3.6.1.2.1.2.2.1.19.6|65|0
1.3.6.1.2.1.2.2.1.19.7|65|0
1.3.6.1.2.1.2.2.1.19.8|65|0
1.3.6.1.2.1.2.2.1.19.9|65|0
1.3.6.1.2.1.2.2.1.19.10|65|0
1.3.6.1.2.1.2.2.1.20.1|65|0
1.3.6.1.2.1.2.2.1.20.2|65|0
1.3.6.1.2.1.2.2.1.20.3|65|0
1.3.6.1.2.1.2.2.1.20.4|65|0
1.3.6.1.2.1.2.2.1.20.5|65|0
1.3.6.1.2.1.2.2.1.20.6|65|0
1.3.6.1.2.1.2.2.1.20.7|65|0
1.3.6.1.2.1.2.2.1.20.8|65|0
1.3.6.1.2.1.2.2.1.20.9|65|857
1.3.6.1.2.1.2.2.1.20.10|65|51
1.3.6.1.2.1.2.2.1.21.1|66|0
1.3.6.1.2.1.2.2.1.21.2|66|0
1.3.6.1.2.1.2.2.1.21.3|66|0
1.3.6.1.2.1.2.2.1.21.4|66|0
1.3.6.1.2.1.2.2.1.21.5|66|0
1.3.6.1.2.1.2.2.1.21.6|66|0
1.3.6.1.2.1.2.2.1.21.7|66|0
1.3.6.1.2.1.2.2.1.21.8|66|0
1.3.6.1.2.1.2.2.1.21.9|66|0
1.3.6.1.2.1.2.2.1.21.10|66|0
1.3.6.1.2.1.2.2.1.22.1|6|0.0
1.3.6.1.2.1.2.2.1.22.2|6|0.0
1.3.6.1.2.1.2.2.1.22.3|6|0.0
1.3.6.1.2.1.2.2.1.22.4|6|0.0
1.3.6.1.2.1.2.2.1.22.5|6|0.0
1.3.6.1.2.1.2.2.1.22.6|6|0.0
1.3.6.1.2.1.2.2.1.22.7|6|0.0
1.3.6.1.2.1.2.2.1.22.8|6|0.0
1.3.6.1.2.1.2.2.1.22.9|6|0.0
1.3.6.1.2.1.2.2.1.22.10|6|0.0
1.3.6.1.2.1.4.20.1.2.10.18.0.194|2|6
1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|1
1.3.6.1.2.1.4.20.1.3.10.18.0.194|64|255.255.252.0
1.3.6.1.4.1.2356.13.1.3.57.1.3.6.87.76.65.78.45.49|66|1
1.3.6.1.4.1.2356.13.1.3.57.1.3.6.87.76.65.78.45.50|66|44
1.3.6.1.4.1.2356.13.1.3.57.1.5.6.87.76.65.78.45.49|2|-95
1.3.6.1.4.1.2356.13.1.3.57.1.5.6.87.76.65.78.45.50|2|-95
1.3.6.1.4.1.2356.13.1.3.57.1.6.6.87.76.65.78.45.49|66|9
1.3.6.1.4.1.2356.13.1.3.57.1.6.6.87.76.65.78.45.50|66|0
1.3.6.1.4.1.2356.13.1.3.57.1.7.6.87.76.65.78.45.49|2|17
1.3.6.1.4.1.2356.13.1.3.57.1.7.6.87.76.65.78.45.50|2|18
1.3.6.1.4.1.2356.13.1.47.4.0|66|248060
1.3.6.1.4.1.2356.13.1.47.5.0|66|98080
1.3.6.1.4.1.2356.13.1.47.7.0|4|4006148037100536
1.3.6.1.4.1.2356.13.1.47.9.0|4|5.36.0069Rel / 20.04.2022

View File

@ -0,0 +1,305 @@
1.3.6.1.2.1.1.1.0|4|Linux HB-ASK-AP01 4.4.60 #0 SMP PREEMPT (LCOS-LX: 6.12.0024) 2023-07-12 19:58:22+02:00 aarch64
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.2356.13.8.0.4
1.3.6.1.2.1.1.4.0|4|<private>
1.3.6.1.2.1.1.6.0|4|<private>
1.3.6.1.2.1.2.2.1.1.1|2|1
1.3.6.1.2.1.2.2.1.1.2|2|2
1.3.6.1.2.1.2.2.1.1.3|2|3
1.3.6.1.2.1.2.2.1.1.5|2|5
1.3.6.1.2.1.2.2.1.1.6|2|6
1.3.6.1.2.1.2.2.1.1.7|2|7
1.3.6.1.2.1.2.2.1.1.8|2|8
1.3.6.1.2.1.2.2.1.1.9|2|9
1.3.6.1.2.1.2.2.1.1.10|2|10
1.3.6.1.2.1.2.2.1.1.11|2|11
1.3.6.1.2.1.2.2.1.1.12|2|12
1.3.6.1.2.1.2.2.1.1.13|2|13
1.3.6.1.2.1.2.2.1.1.14|2|14
1.3.6.1.2.1.2.2.1.2.1|4|lo
1.3.6.1.2.1.2.2.1.2.2|4|miireg
1.3.6.1.2.1.2.2.1.2.3|4|eth0
1.3.6.1.2.1.2.2.1.2.5|4|wifi0
1.3.6.1.2.1.2.2.1.2.6|4|wifi1
1.3.6.1.2.1.2.2.1.2.7|4|soc0
1.3.6.1.2.1.2.2.1.2.8|4|br-lan
1.3.6.1.2.1.2.2.1.2.9|4|br-lan-100
1.3.6.1.2.1.2.2.1.2.10|4|ath0
1.3.6.1.2.1.2.2.1.2.11|4|ath1
1.3.6.1.2.1.2.2.1.2.12|4|eth0.100
1.3.6.1.2.1.2.2.1.2.13|4|ath8
1.3.6.1.2.1.2.2.1.2.14|4|ath9
1.3.6.1.2.1.2.2.1.3.1|2|24
1.3.6.1.2.1.2.2.1.3.2|2|1
1.3.6.1.2.1.2.2.1.3.3|2|6
1.3.6.1.2.1.2.2.1.3.5|2|1
1.3.6.1.2.1.2.2.1.3.6|2|1
1.3.6.1.2.1.2.2.1.3.7|2|1
1.3.6.1.2.1.2.2.1.3.8|2|6
1.3.6.1.2.1.2.2.1.3.9|2|6
1.3.6.1.2.1.2.2.1.3.10|2|6
1.3.6.1.2.1.2.2.1.3.11|2|6
1.3.6.1.2.1.2.2.1.3.12|2|6
1.3.6.1.2.1.2.2.1.3.13|2|6
1.3.6.1.2.1.2.2.1.3.14|2|6
1.3.6.1.2.1.2.2.1.4.1|2|65536
1.3.6.1.2.1.2.2.1.4.2|2|0
1.3.6.1.2.1.2.2.1.4.3|2|1500
1.3.6.1.2.1.2.2.1.4.5|2|1500
1.3.6.1.2.1.2.2.1.4.6|2|1500
1.3.6.1.2.1.2.2.1.4.7|2|0
1.3.6.1.2.1.2.2.1.4.8|2|1500
1.3.6.1.2.1.2.2.1.4.9|2|1500
1.3.6.1.2.1.2.2.1.4.10|2|1500
1.3.6.1.2.1.2.2.1.4.11|2|1500
1.3.6.1.2.1.2.2.1.4.12|2|1500
1.3.6.1.2.1.2.2.1.4.13|2|1500
1.3.6.1.2.1.2.2.1.4.14|2|1500
1.3.6.1.2.1.2.2.1.5.1|66|10000000
1.3.6.1.2.1.2.2.1.5.2|66|0
1.3.6.1.2.1.2.2.1.5.3|66|1000000000
1.3.6.1.2.1.2.2.1.5.5|66|0
1.3.6.1.2.1.2.2.1.5.6|66|0
1.3.6.1.2.1.2.2.1.5.7|66|0
1.3.6.1.2.1.2.2.1.5.8|66|0
1.3.6.1.2.1.2.2.1.5.9|66|0
1.3.6.1.2.1.2.2.1.5.10|66|0
1.3.6.1.2.1.2.2.1.5.11|66|0
1.3.6.1.2.1.2.2.1.5.12|66|1000000000
1.3.6.1.2.1.2.2.1.5.13|66|0
1.3.6.1.2.1.2.2.1.5.14|66|0
1.3.6.1.2.1.2.2.1.6.1|4|
1.3.6.1.2.1.2.2.1.6.2|4|
1.3.6.1.2.1.2.2.1.6.3|4x|00a057790275
1.3.6.1.2.1.2.2.1.6.5|4x|00a057790276
1.3.6.1.2.1.2.2.1.6.6|4x|00a057790277
1.3.6.1.2.1.2.2.1.6.7|4|
1.3.6.1.2.1.2.2.1.6.8|4x|00a057790275
1.3.6.1.2.1.2.2.1.6.9|4x|00a057790275
1.3.6.1.2.1.2.2.1.6.10|4x|00a057790277
1.3.6.1.2.1.2.2.1.6.11|4x|06a057790277
1.3.6.1.2.1.2.2.1.6.12|4x|00a057790275
1.3.6.1.2.1.2.2.1.6.13|4x|00a057790276
1.3.6.1.2.1.2.2.1.6.14|4x|06a057790276
1.3.6.1.2.1.2.2.1.7.1|2|1
1.3.6.1.2.1.2.2.1.7.2|2|1
1.3.6.1.2.1.2.2.1.7.3|2|1
1.3.6.1.2.1.2.2.1.7.5|2|1
1.3.6.1.2.1.2.2.1.7.6|2|1
1.3.6.1.2.1.2.2.1.7.7|2|1
1.3.6.1.2.1.2.2.1.7.8|2|1
1.3.6.1.2.1.2.2.1.7.9|2|1
1.3.6.1.2.1.2.2.1.7.10|2|1
1.3.6.1.2.1.2.2.1.7.11|2|1
1.3.6.1.2.1.2.2.1.7.12|2|1
1.3.6.1.2.1.2.2.1.7.13|2|1
1.3.6.1.2.1.2.2.1.7.14|2|1
1.3.6.1.2.1.2.2.1.8.1|2|1
1.3.6.1.2.1.2.2.1.8.2|2|1
1.3.6.1.2.1.2.2.1.8.3|2|1
1.3.6.1.2.1.2.2.1.8.5|2|1
1.3.6.1.2.1.2.2.1.8.6|2|1
1.3.6.1.2.1.2.2.1.8.7|2|1
1.3.6.1.2.1.2.2.1.8.8|2|1
1.3.6.1.2.1.2.2.1.8.9|2|1
1.3.6.1.2.1.2.2.1.8.10|2|1
1.3.6.1.2.1.2.2.1.8.11|2|1
1.3.6.1.2.1.2.2.1.8.12|2|1
1.3.6.1.2.1.2.2.1.8.13|2|1
1.3.6.1.2.1.2.2.1.8.14|2|1
1.3.6.1.2.1.2.2.1.9.1|67|0
1.3.6.1.2.1.2.2.1.9.2|67|0
1.3.6.1.2.1.2.2.1.9.3|67|0
1.3.6.1.2.1.2.2.1.9.5|67|0
1.3.6.1.2.1.2.2.1.9.6|67|0
1.3.6.1.2.1.2.2.1.9.7|67|0
1.3.6.1.2.1.2.2.1.9.8|67|0
1.3.6.1.2.1.2.2.1.9.9|67|0
1.3.6.1.2.1.2.2.1.9.10|67|0
1.3.6.1.2.1.2.2.1.9.11|67|0
1.3.6.1.2.1.2.2.1.9.12|67|0
1.3.6.1.2.1.2.2.1.9.13|67|0
1.3.6.1.2.1.2.2.1.9.14|67|0
1.3.6.1.2.1.2.2.1.10.1|65|33608
1.3.6.1.2.1.2.2.1.10.2|65|0
1.3.6.1.2.1.2.2.1.10.3|65|3394787711
1.3.6.1.2.1.2.2.1.10.5|65|282003428
1.3.6.1.2.1.2.2.1.10.6|65|642562331
1.3.6.1.2.1.2.2.1.10.7|65|0
1.3.6.1.2.1.2.2.1.10.8|65|2695391370
1.3.6.1.2.1.2.2.1.10.9|65|113657727
1.3.6.1.2.1.2.2.1.10.10|65|1830
1.3.6.1.2.1.2.2.1.10.11|65|642358259
1.3.6.1.2.1.2.2.1.10.12|65|4154409991
1.3.6.1.2.1.2.2.1.10.13|65|3839
1.3.6.1.2.1.2.2.1.10.14|65|281859899
1.3.6.1.2.1.2.2.1.11.1|65|400
1.3.6.1.2.1.2.2.1.11.2|65|0
1.3.6.1.2.1.2.2.1.11.3|65|837546254
1.3.6.1.2.1.2.2.1.11.5|65|1665951
1.3.6.1.2.1.2.2.1.11.6|65|2387505
1.3.6.1.2.1.2.2.1.11.7|65|0
1.3.6.1.2.1.2.2.1.11.8|65|918757841
1.3.6.1.2.1.2.2.1.11.9|65|1218051
1.3.6.1.2.1.2.2.1.11.10|65|35
1.3.6.1.2.1.2.2.1.11.11|65|2385618
1.3.6.1.2.1.2.2.1.11.12|65|11842741
1.3.6.1.2.1.2.2.1.11.13|65|31
1.3.6.1.2.1.2.2.1.11.14|65|1664444
1.3.6.1.2.1.2.2.1.12.1|65|0
1.3.6.1.2.1.2.2.1.12.2|65|0
1.3.6.1.2.1.2.2.1.12.3|65|109976667
1.3.6.1.2.1.2.2.1.12.5|65|0
1.3.6.1.2.1.2.2.1.12.6|65|0
1.3.6.1.2.1.2.2.1.12.7|65|0
1.3.6.1.2.1.2.2.1.12.8|65|0
1.3.6.1.2.1.2.2.1.12.9|65|0
1.3.6.1.2.1.2.2.1.12.10|65|0
1.3.6.1.2.1.2.2.1.12.11|65|0
1.3.6.1.2.1.2.2.1.12.12|65|337714
1.3.6.1.2.1.2.2.1.12.13|65|0
1.3.6.1.2.1.2.2.1.12.14|65|0
1.3.6.1.2.1.2.2.1.13.1|65|0
1.3.6.1.2.1.2.2.1.13.2|65|0
1.3.6.1.2.1.2.2.1.13.3|65|131050
1.3.6.1.2.1.2.2.1.13.5|65|0
1.3.6.1.2.1.2.2.1.13.6|65|0
1.3.6.1.2.1.2.2.1.13.7|65|0
1.3.6.1.2.1.2.2.1.13.8|65|92
1.3.6.1.2.1.2.2.1.13.9|65|0
1.3.6.1.2.1.2.2.1.13.10|65|0
1.3.6.1.2.1.2.2.1.13.11|65|192
1.3.6.1.2.1.2.2.1.13.12|65|0
1.3.6.1.2.1.2.2.1.13.13|65|0
1.3.6.1.2.1.2.2.1.13.14|65|136
1.3.6.1.2.1.2.2.1.14.1|65|0
1.3.6.1.2.1.2.2.1.14.2|65|0
1.3.6.1.2.1.2.2.1.14.3|65|0
1.3.6.1.2.1.2.2.1.14.5|65|88489
1.3.6.1.2.1.2.2.1.14.6|65|145735
1.3.6.1.2.1.2.2.1.14.7|65|0
1.3.6.1.2.1.2.2.1.14.8|65|0
1.3.6.1.2.1.2.2.1.14.9|65|0
1.3.6.1.2.1.2.2.1.14.10|65|0
1.3.6.1.2.1.2.2.1.14.11|65|192
1.3.6.1.2.1.2.2.1.14.12|65|0
1.3.6.1.2.1.2.2.1.14.13|65|0
1.3.6.1.2.1.2.2.1.14.14|65|136
1.3.6.1.2.1.2.2.1.15.1|65|0
1.3.6.1.2.1.2.2.1.15.2|65|0
1.3.6.1.2.1.2.2.1.15.3|65|0
1.3.6.1.2.1.2.2.1.15.5|65|0
1.3.6.1.2.1.2.2.1.15.6|65|0
1.3.6.1.2.1.2.2.1.15.7|65|0
1.3.6.1.2.1.2.2.1.15.8|65|0
1.3.6.1.2.1.2.2.1.15.9|65|0
1.3.6.1.2.1.2.2.1.15.10|65|0
1.3.6.1.2.1.2.2.1.15.11|65|0
1.3.6.1.2.1.2.2.1.15.12|65|0
1.3.6.1.2.1.2.2.1.15.13|65|0
1.3.6.1.2.1.2.2.1.15.14|65|0
1.3.6.1.2.1.2.2.1.16.1|65|33608
1.3.6.1.2.1.2.2.1.16.2|65|0
1.3.6.1.2.1.2.2.1.16.3|65|1498852422
1.3.6.1.2.1.2.2.1.16.5|65|2212626704
1.3.6.1.2.1.2.2.1.16.6|65|2437673329
1.3.6.1.2.1.2.2.1.16.7|65|0
1.3.6.1.2.1.2.2.1.16.8|65|362101926
1.3.6.1.2.1.2.2.1.16.9|65|4642
1.3.6.1.2.1.2.2.1.16.10|65|116101
1.3.6.1.2.1.2.2.1.16.11|65|420179310
1.3.6.1.2.1.2.2.1.16.12|65|923341160
1.3.6.1.2.1.2.2.1.16.13|65|5793
1.3.6.1.2.1.2.2.1.16.14|65|4189951018
1.3.6.1.2.1.2.2.1.17.1|65|400
1.3.6.1.2.1.2.2.1.17.2|65|0
1.3.6.1.2.1.2.2.1.17.3|65|7366873
1.3.6.1.2.1.2.2.1.17.5|65|7274889
1.3.6.1.2.1.2.2.1.17.6|65|8274829
1.3.6.1.2.1.2.2.1.17.7|65|0
1.3.6.1.2.1.2.2.1.17.8|65|2498685
1.3.6.1.2.1.2.2.1.17.9|65|31
1.3.6.1.2.1.2.2.1.17.10|65|878
1.3.6.1.2.1.2.2.1.17.11|65|12568899
1.3.6.1.2.1.2.2.1.17.12|65|4032427
1.3.6.1.2.1.2.2.1.17.13|65|41
1.3.6.1.2.1.2.2.1.17.14|65|10158114
1.3.6.1.2.1.2.2.1.18.1|65|0
1.3.6.1.2.1.2.2.1.18.2|65|0
1.3.6.1.2.1.2.2.1.18.3|65|0
1.3.6.1.2.1.2.2.1.18.5|65|0
1.3.6.1.2.1.2.2.1.18.6|65|0
1.3.6.1.2.1.2.2.1.18.7|65|0
1.3.6.1.2.1.2.2.1.18.8|65|0
1.3.6.1.2.1.2.2.1.18.9|65|0
1.3.6.1.2.1.2.2.1.18.10|65|0
1.3.6.1.2.1.2.2.1.18.11|65|0
1.3.6.1.2.1.2.2.1.18.12|65|0
1.3.6.1.2.1.2.2.1.18.13|65|0
1.3.6.1.2.1.2.2.1.18.14|65|0
1.3.6.1.2.1.2.2.1.19.1|65|0
1.3.6.1.2.1.2.2.1.19.2|65|0
1.3.6.1.2.1.2.2.1.19.3|65|0
1.3.6.1.2.1.2.2.1.19.5|65|542
1.3.6.1.2.1.2.2.1.19.6|65|1903
1.3.6.1.2.1.2.2.1.19.7|65|0
1.3.6.1.2.1.2.2.1.19.8|65|0
1.3.6.1.2.1.2.2.1.19.9|65|0
1.3.6.1.2.1.2.2.1.19.10|65|0
1.3.6.1.2.1.2.2.1.19.11|65|0
1.3.6.1.2.1.2.2.1.19.12|65|0
1.3.6.1.2.1.2.2.1.19.13|65|0
1.3.6.1.2.1.2.2.1.19.14|65|0
1.3.6.1.2.1.2.2.1.20.1|65|0
1.3.6.1.2.1.2.2.1.20.2|65|0
1.3.6.1.2.1.2.2.1.20.3|65|0
1.3.6.1.2.1.2.2.1.20.5|65|542
1.3.6.1.2.1.2.2.1.20.6|65|1903
1.3.6.1.2.1.2.2.1.20.7|65|0
1.3.6.1.2.1.2.2.1.20.8|65|0
1.3.6.1.2.1.2.2.1.20.9|65|0
1.3.6.1.2.1.2.2.1.20.10|65|3
1.3.6.1.2.1.2.2.1.20.11|65|1900
1.3.6.1.2.1.2.2.1.20.12|65|0
1.3.6.1.2.1.2.2.1.20.13|65|1
1.3.6.1.2.1.2.2.1.20.14|65|541
1.3.6.1.2.1.2.2.1.21.1|66|0
1.3.6.1.2.1.2.2.1.21.2|66|0
1.3.6.1.2.1.2.2.1.21.3|66|0
1.3.6.1.2.1.2.2.1.21.5|66|0
1.3.6.1.2.1.2.2.1.21.6|66|0
1.3.6.1.2.1.2.2.1.21.7|66|0
1.3.6.1.2.1.2.2.1.21.8|66|0
1.3.6.1.2.1.2.2.1.21.9|66|0
1.3.6.1.2.1.2.2.1.21.10|66|0
1.3.6.1.2.1.2.2.1.21.11|66|0
1.3.6.1.2.1.2.2.1.21.12|66|0
1.3.6.1.2.1.2.2.1.21.13|66|0
1.3.6.1.2.1.2.2.1.21.14|66|0
1.3.6.1.2.1.2.2.1.22.1|6|0.0
1.3.6.1.2.1.2.2.1.22.2|6|0.0
1.3.6.1.2.1.2.2.1.22.3|6|0.0
1.3.6.1.2.1.2.2.1.22.5|6|0.0
1.3.6.1.2.1.2.2.1.22.6|6|0.0
1.3.6.1.2.1.2.2.1.22.7|6|0.0
1.3.6.1.2.1.2.2.1.22.8|6|0.0
1.3.6.1.2.1.2.2.1.22.9|6|0.0
1.3.6.1.2.1.2.2.1.22.10|6|0.0
1.3.6.1.2.1.2.2.1.22.11|6|0.0
1.3.6.1.2.1.2.2.1.22.12|6|0.0
1.3.6.1.2.1.2.2.1.22.13|6|0.0
1.3.6.1.2.1.2.2.1.22.14|6|0.0
1.3.6.1.2.1.4.20.1.2.10.18.0.158|2|8
1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|1
1.3.6.1.2.1.4.20.1.3.10.18.0.158|64|255.255.252.0
1.3.6.1.4.1.2356.13.1.3.57.1.3.6.87.76.65.78.45.49|66|1
1.3.6.1.4.1.2356.13.1.3.57.1.3.6.87.76.65.78.45.50|66|48
1.3.6.1.4.1.2356.13.1.3.57.1.5.6.87.76.65.78.45.49|2|-100
1.3.6.1.4.1.2356.13.1.3.57.1.5.6.87.76.65.78.45.50|2|-88
1.3.6.1.4.1.2356.13.1.3.57.1.6.6.87.76.65.78.45.49|66|14
1.3.6.1.4.1.2356.13.1.3.57.1.6.6.87.76.65.78.45.50|66|3
1.3.6.1.4.1.2356.13.1.3.57.1.7.6.87.76.65.78.45.49|2|14
1.3.6.1.4.1.2356.13.1.3.57.1.7.6.87.76.65.78.45.50|2|15
1.3.6.1.4.1.2356.13.1.47.4.0|66|407056
1.3.6.1.4.1.2356.13.1.47.5.0|66|156124
1.3.6.1.4.1.2356.13.1.47.7.0|4|4006187737100649
1.3.6.1.4.1.2356.13.1.47.9.0|4|6.12.0024Rel / 12.07.2023

View File

@ -0,0 +1,349 @@
1.3.6.1.2.1.1.1.0|4|Linux HB-MOS-OA01 4.4.60 #0 SMP PREEMPT (LCOS-LX: 6.10.0042) 2023-04-01 15:31:19+02:00 aarch64
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.2356.13.8.0.5
1.3.6.1.2.1.1.4.0|4|<private>
1.3.6.1.2.1.1.6.0|4|<private>
1.3.6.1.2.1.2.2.1.1.1|2|1
1.3.6.1.2.1.2.2.1.1.2|2|2
1.3.6.1.2.1.2.2.1.1.3|2|3
1.3.6.1.2.1.2.2.1.1.4|2|4
1.3.6.1.2.1.2.2.1.1.6|2|6
1.3.6.1.2.1.2.2.1.1.7|2|7
1.3.6.1.2.1.2.2.1.1.8|2|8
1.3.6.1.2.1.2.2.1.1.9|2|9
1.3.6.1.2.1.2.2.1.1.10|2|10
1.3.6.1.2.1.2.2.1.1.11|2|11
1.3.6.1.2.1.2.2.1.1.12|2|12
1.3.6.1.2.1.2.2.1.1.13|2|13
1.3.6.1.2.1.2.2.1.1.14|2|14
1.3.6.1.2.1.2.2.1.1.15|2|15
1.3.6.1.2.1.2.2.1.1.16|2|16
1.3.6.1.2.1.2.2.1.2.1|4|lo
1.3.6.1.2.1.2.2.1.2.2|4|miireg
1.3.6.1.2.1.2.2.1.2.3|4|eth0
1.3.6.1.2.1.2.2.1.2.4|4|eth1
1.3.6.1.2.1.2.2.1.2.6|4|wifi0
1.3.6.1.2.1.2.2.1.2.7|4|wifi1
1.3.6.1.2.1.2.2.1.2.8|4|soc0
1.3.6.1.2.1.2.2.1.2.9|4|br-lan
1.3.6.1.2.1.2.2.1.2.10|4|br-lan-100
1.3.6.1.2.1.2.2.1.2.11|4|ath0
1.3.6.1.2.1.2.2.1.2.12|4|eth0.100
1.3.6.1.2.1.2.2.1.2.13|4|eth1.100
1.3.6.1.2.1.2.2.1.2.14|4|ath1
1.3.6.1.2.1.2.2.1.2.15|4|ath16
1.3.6.1.2.1.2.2.1.2.16|4|ath17
1.3.6.1.2.1.2.2.1.3.1|2|24
1.3.6.1.2.1.2.2.1.3.2|2|1
1.3.6.1.2.1.2.2.1.3.3|2|6
1.3.6.1.2.1.2.2.1.3.4|2|6
1.3.6.1.2.1.2.2.1.3.6|2|1
1.3.6.1.2.1.2.2.1.3.7|2|1
1.3.6.1.2.1.2.2.1.3.8|2|1
1.3.6.1.2.1.2.2.1.3.9|2|6
1.3.6.1.2.1.2.2.1.3.10|2|6
1.3.6.1.2.1.2.2.1.3.11|2|6
1.3.6.1.2.1.2.2.1.3.12|2|6
1.3.6.1.2.1.2.2.1.3.13|2|6
1.3.6.1.2.1.2.2.1.3.14|2|6
1.3.6.1.2.1.2.2.1.3.15|2|6
1.3.6.1.2.1.2.2.1.3.16|2|6
1.3.6.1.2.1.2.2.1.4.1|2|65536
1.3.6.1.2.1.2.2.1.4.2|2|0
1.3.6.1.2.1.2.2.1.4.3|2|1500
1.3.6.1.2.1.2.2.1.4.4|2|1500
1.3.6.1.2.1.2.2.1.4.6|2|1500
1.3.6.1.2.1.2.2.1.4.7|2|1500
1.3.6.1.2.1.2.2.1.4.8|2|0
1.3.6.1.2.1.2.2.1.4.9|2|1500
1.3.6.1.2.1.2.2.1.4.10|2|1500
1.3.6.1.2.1.2.2.1.4.11|2|1500
1.3.6.1.2.1.2.2.1.4.12|2|1500
1.3.6.1.2.1.2.2.1.4.13|2|1500
1.3.6.1.2.1.2.2.1.4.14|2|1500
1.3.6.1.2.1.2.2.1.4.15|2|1500
1.3.6.1.2.1.2.2.1.4.16|2|1500
1.3.6.1.2.1.2.2.1.5.1|66|10000000
1.3.6.1.2.1.2.2.1.5.2|66|0
1.3.6.1.2.1.2.2.1.5.3|66|10000000
1.3.6.1.2.1.2.2.1.5.4|66|1000000000
1.3.6.1.2.1.2.2.1.5.6|66|0
1.3.6.1.2.1.2.2.1.5.7|66|0
1.3.6.1.2.1.2.2.1.5.8|66|0
1.3.6.1.2.1.2.2.1.5.9|66|0
1.3.6.1.2.1.2.2.1.5.10|66|0
1.3.6.1.2.1.2.2.1.5.11|66|0
1.3.6.1.2.1.2.2.1.5.12|66|10000000
1.3.6.1.2.1.2.2.1.5.13|66|1000000000
1.3.6.1.2.1.2.2.1.5.14|66|0
1.3.6.1.2.1.2.2.1.5.15|66|0
1.3.6.1.2.1.2.2.1.5.16|66|0
1.3.6.1.2.1.2.2.1.6.1|4|
1.3.6.1.2.1.2.2.1.6.2|4|
1.3.6.1.2.1.2.2.1.6.3|4x|00a05788ca07
1.3.6.1.2.1.2.2.1.6.4|4x|00a05788ca08
1.3.6.1.2.1.2.2.1.6.6|4x|00a05788ca09
1.3.6.1.2.1.2.2.1.6.7|4x|00a05788ca0a
1.3.6.1.2.1.2.2.1.6.8|4|
1.3.6.1.2.1.2.2.1.6.9|4x|00a05788ca07
1.3.6.1.2.1.2.2.1.6.10|4x|00a05788ca07
1.3.6.1.2.1.2.2.1.6.11|4x|00a05788ca0a
1.3.6.1.2.1.2.2.1.6.12|4x|00a05788ca07
1.3.6.1.2.1.2.2.1.6.13|4x|00a05788ca08
1.3.6.1.2.1.2.2.1.6.14|4x|06a05788ca0a
1.3.6.1.2.1.2.2.1.6.15|4x|00a05788ca09
1.3.6.1.2.1.2.2.1.6.16|4x|06a05788ca09
1.3.6.1.2.1.2.2.1.7.1|2|1
1.3.6.1.2.1.2.2.1.7.2|2|1
1.3.6.1.2.1.2.2.1.7.3|2|1
1.3.6.1.2.1.2.2.1.7.4|2|1
1.3.6.1.2.1.2.2.1.7.6|2|1
1.3.6.1.2.1.2.2.1.7.7|2|1
1.3.6.1.2.1.2.2.1.7.8|2|1
1.3.6.1.2.1.2.2.1.7.9|2|1
1.3.6.1.2.1.2.2.1.7.10|2|1
1.3.6.1.2.1.2.2.1.7.11|2|1
1.3.6.1.2.1.2.2.1.7.12|2|1
1.3.6.1.2.1.2.2.1.7.13|2|1
1.3.6.1.2.1.2.2.1.7.14|2|1
1.3.6.1.2.1.2.2.1.7.15|2|1
1.3.6.1.2.1.2.2.1.7.16|2|1
1.3.6.1.2.1.2.2.1.8.1|2|1
1.3.6.1.2.1.2.2.1.8.2|2|1
1.3.6.1.2.1.2.2.1.8.3|2|2
1.3.6.1.2.1.2.2.1.8.4|2|1
1.3.6.1.2.1.2.2.1.8.6|2|1
1.3.6.1.2.1.2.2.1.8.7|2|1
1.3.6.1.2.1.2.2.1.8.8|2|1
1.3.6.1.2.1.2.2.1.8.9|2|1
1.3.6.1.2.1.2.2.1.8.10|2|1
1.3.6.1.2.1.2.2.1.8.11|2|1
1.3.6.1.2.1.2.2.1.8.12|2|2
1.3.6.1.2.1.2.2.1.8.13|2|1
1.3.6.1.2.1.2.2.1.8.14|2|1
1.3.6.1.2.1.2.2.1.8.15|2|1
1.3.6.1.2.1.2.2.1.8.16|2|1
1.3.6.1.2.1.2.2.1.9.1|67|0
1.3.6.1.2.1.2.2.1.9.2|67|0
1.3.6.1.2.1.2.2.1.9.3|67|0
1.3.6.1.2.1.2.2.1.9.4|67|0
1.3.6.1.2.1.2.2.1.9.6|67|0
1.3.6.1.2.1.2.2.1.9.7|67|0
1.3.6.1.2.1.2.2.1.9.8|67|0
1.3.6.1.2.1.2.2.1.9.9|67|0
1.3.6.1.2.1.2.2.1.9.10|67|0
1.3.6.1.2.1.2.2.1.9.11|67|0
1.3.6.1.2.1.2.2.1.9.12|67|0
1.3.6.1.2.1.2.2.1.9.13|67|0
1.3.6.1.2.1.2.2.1.9.14|67|0
1.3.6.1.2.1.2.2.1.9.15|67|0
1.3.6.1.2.1.2.2.1.9.16|67|0
1.3.6.1.2.1.2.2.1.10.1|65|504688
1.3.6.1.2.1.2.2.1.10.2|65|0
1.3.6.1.2.1.2.2.1.10.3|65|0
1.3.6.1.2.1.2.2.1.10.4|65|2902932346
1.3.6.1.2.1.2.2.1.10.6|65|230650542
1.3.6.1.2.1.2.2.1.10.7|65|372015293
1.3.6.1.2.1.2.2.1.10.8|65|0
1.3.6.1.2.1.2.2.1.10.9|65|605816512
1.3.6.1.2.1.2.2.1.10.10|65|306930242
1.3.6.1.2.1.2.2.1.10.11|65|568132
1.3.6.1.2.1.2.2.1.10.12|65|0
1.3.6.1.2.1.2.2.1.10.13|65|3892279340
1.3.6.1.2.1.2.2.1.10.14|65|370497715
1.3.6.1.2.1.2.2.1.10.15|65|712938
1.3.6.1.2.1.2.2.1.10.16|65|229790242
1.3.6.1.2.1.2.2.1.11.1|65|5905
1.3.6.1.2.1.2.2.1.11.2|65|0
1.3.6.1.2.1.2.2.1.11.3|65|0
1.3.6.1.2.1.2.2.1.11.4|65|1153819406
1.3.6.1.2.1.2.2.1.11.6|65|1076601
1.3.6.1.2.1.2.2.1.11.7|65|1247639
1.3.6.1.2.1.2.2.1.11.8|65|0
1.3.6.1.2.1.2.2.1.11.9|65|1262087474
1.3.6.1.2.1.2.2.1.11.10|65|2985843
1.3.6.1.2.1.2.2.1.11.11|65|2533
1.3.6.1.2.1.2.2.1.11.12|65|0
1.3.6.1.2.1.2.2.1.11.13|65|8672370
1.3.6.1.2.1.2.2.1.11.14|65|1241094
1.3.6.1.2.1.2.2.1.11.15|65|3397
1.3.6.1.2.1.2.2.1.11.16|65|1072239
1.3.6.1.2.1.2.2.1.12.1|65|0
1.3.6.1.2.1.2.2.1.12.2|65|0
1.3.6.1.2.1.2.2.1.12.3|65|0
1.3.6.1.2.1.2.2.1.12.4|65|136905708
1.3.6.1.2.1.2.2.1.12.6|65|0
1.3.6.1.2.1.2.2.1.12.7|65|0
1.3.6.1.2.1.2.2.1.12.8|65|0
1.3.6.1.2.1.2.2.1.12.9|65|0
1.3.6.1.2.1.2.2.1.12.10|65|0
1.3.6.1.2.1.2.2.1.12.11|65|0
1.3.6.1.2.1.2.2.1.12.12|65|0
1.3.6.1.2.1.2.2.1.12.13|65|992771
1.3.6.1.2.1.2.2.1.12.14|65|0
1.3.6.1.2.1.2.2.1.12.15|65|0
1.3.6.1.2.1.2.2.1.12.16|65|0
1.3.6.1.2.1.2.2.1.13.1|65|0
1.3.6.1.2.1.2.2.1.13.2|65|0
1.3.6.1.2.1.2.2.1.13.3|65|0
1.3.6.1.2.1.2.2.1.13.4|65|210685
1.3.6.1.2.1.2.2.1.13.6|65|0
1.3.6.1.2.1.2.2.1.13.7|65|0
1.3.6.1.2.1.2.2.1.13.8|65|0
1.3.6.1.2.1.2.2.1.13.9|65|0
1.3.6.1.2.1.2.2.1.13.10|65|0
1.3.6.1.2.1.2.2.1.13.11|65|0
1.3.6.1.2.1.2.2.1.13.12|65|0
1.3.6.1.2.1.2.2.1.13.13|65|0
1.3.6.1.2.1.2.2.1.13.14|65|460
1.3.6.1.2.1.2.2.1.13.15|65|0
1.3.6.1.2.1.2.2.1.13.16|65|89
1.3.6.1.2.1.2.2.1.14.1|65|0
1.3.6.1.2.1.2.2.1.14.2|65|0
1.3.6.1.2.1.2.2.1.14.3|65|0
1.3.6.1.2.1.2.2.1.14.4|65|0
1.3.6.1.2.1.2.2.1.14.6|65|74941
1.3.6.1.2.1.2.2.1.14.7|65|152524
1.3.6.1.2.1.2.2.1.14.8|65|0
1.3.6.1.2.1.2.2.1.14.9|65|0
1.3.6.1.2.1.2.2.1.14.10|65|0
1.3.6.1.2.1.2.2.1.14.11|65|0
1.3.6.1.2.1.2.2.1.14.12|65|0
1.3.6.1.2.1.2.2.1.14.13|65|0
1.3.6.1.2.1.2.2.1.14.14|65|460
1.3.6.1.2.1.2.2.1.14.15|65|0
1.3.6.1.2.1.2.2.1.14.16|65|89
1.3.6.1.2.1.2.2.1.15.1|65|0
1.3.6.1.2.1.2.2.1.15.2|65|0
1.3.6.1.2.1.2.2.1.15.3|65|0
1.3.6.1.2.1.2.2.1.15.4|65|0
1.3.6.1.2.1.2.2.1.15.6|65|0
1.3.6.1.2.1.2.2.1.15.7|65|0
1.3.6.1.2.1.2.2.1.15.8|65|0
1.3.6.1.2.1.2.2.1.15.9|65|0
1.3.6.1.2.1.2.2.1.15.10|65|0
1.3.6.1.2.1.2.2.1.15.11|65|0
1.3.6.1.2.1.2.2.1.15.12|65|0
1.3.6.1.2.1.2.2.1.15.13|65|0
1.3.6.1.2.1.2.2.1.15.14|65|0
1.3.6.1.2.1.2.2.1.15.15|65|0
1.3.6.1.2.1.2.2.1.15.16|65|0
1.3.6.1.2.1.2.2.1.16.1|65|504688
1.3.6.1.2.1.2.2.1.16.2|65|0
1.3.6.1.2.1.2.2.1.16.3|65|0
1.3.6.1.2.1.2.2.1.16.4|65|1496346051
1.3.6.1.2.1.2.2.1.16.6|65|623547546
1.3.6.1.2.1.2.2.1.16.7|65|4290740807
1.3.6.1.2.1.2.2.1.16.8|65|0
1.3.6.1.2.1.2.2.1.16.9|65|591604065
1.3.6.1.2.1.2.2.1.16.10|65|9034
1.3.6.1.2.1.2.2.1.16.11|65|2478650
1.3.6.1.2.1.2.2.1.16.12|65|0
1.3.6.1.2.1.2.2.1.16.13|65|600593654
1.3.6.1.2.1.2.2.1.16.14|65|3245667585
1.3.6.1.2.1.2.2.1.16.15|65|4433817
1.3.6.1.2.1.2.2.1.16.16|65|150759089
1.3.6.1.2.1.2.2.1.17.1|65|5905
1.3.6.1.2.1.2.2.1.17.2|65|0
1.3.6.1.2.1.2.2.1.17.3|65|0
1.3.6.1.2.1.2.2.1.17.4|65|7654431
1.3.6.1.2.1.2.2.1.17.6|65|9080099
1.3.6.1.2.1.2.2.1.17.7|65|8801216
1.3.6.1.2.1.2.2.1.17.8|65|0
1.3.6.1.2.1.2.2.1.17.9|65|4029456
1.3.6.1.2.1.2.2.1.17.10|65|58
1.3.6.1.2.1.2.2.1.17.11|65|12159
1.3.6.1.2.1.2.2.1.17.12|65|0
1.3.6.1.2.1.2.2.1.17.13|65|2307166
1.3.6.1.2.1.2.2.1.17.14|65|7141167
1.3.6.1.2.1.2.2.1.17.15|65|22915
1.3.6.1.2.1.2.2.1.17.16|65|7251593
1.3.6.1.2.1.2.2.1.18.1|65|0
1.3.6.1.2.1.2.2.1.18.2|65|0
1.3.6.1.2.1.2.2.1.18.3|65|0
1.3.6.1.2.1.2.2.1.18.4|65|0
1.3.6.1.2.1.2.2.1.18.6|65|0
1.3.6.1.2.1.2.2.1.18.7|65|0
1.3.6.1.2.1.2.2.1.18.8|65|0
1.3.6.1.2.1.2.2.1.18.9|65|0
1.3.6.1.2.1.2.2.1.18.10|65|0
1.3.6.1.2.1.2.2.1.18.11|65|0
1.3.6.1.2.1.2.2.1.18.12|65|0
1.3.6.1.2.1.2.2.1.18.13|65|0
1.3.6.1.2.1.2.2.1.18.14|65|0
1.3.6.1.2.1.2.2.1.18.15|65|0
1.3.6.1.2.1.2.2.1.18.16|65|0
1.3.6.1.2.1.2.2.1.19.1|65|0
1.3.6.1.2.1.2.2.1.19.2|65|0
1.3.6.1.2.1.2.2.1.19.3|65|0
1.3.6.1.2.1.2.2.1.19.4|65|0
1.3.6.1.2.1.2.2.1.19.6|65|3058
1.3.6.1.2.1.2.2.1.19.7|65|23313
1.3.6.1.2.1.2.2.1.19.8|65|0
1.3.6.1.2.1.2.2.1.19.9|65|0
1.3.6.1.2.1.2.2.1.19.10|65|0
1.3.6.1.2.1.2.2.1.19.11|65|0
1.3.6.1.2.1.2.2.1.19.12|65|0
1.3.6.1.2.1.2.2.1.19.13|65|0
1.3.6.1.2.1.2.2.1.19.14|65|0
1.3.6.1.2.1.2.2.1.19.15|65|0
1.3.6.1.2.1.2.2.1.19.16|65|0
1.3.6.1.2.1.2.2.1.20.1|65|0
1.3.6.1.2.1.2.2.1.20.2|65|0
1.3.6.1.2.1.2.2.1.20.3|65|0
1.3.6.1.2.1.2.2.1.20.4|65|0
1.3.6.1.2.1.2.2.1.20.6|65|3058
1.3.6.1.2.1.2.2.1.20.7|65|23313
1.3.6.1.2.1.2.2.1.20.8|65|0
1.3.6.1.2.1.2.2.1.20.9|65|0
1.3.6.1.2.1.2.2.1.20.10|65|0
1.3.6.1.2.1.2.2.1.20.11|65|63
1.3.6.1.2.1.2.2.1.20.12|65|0
1.3.6.1.2.1.2.2.1.20.13|65|0
1.3.6.1.2.1.2.2.1.20.14|65|23250
1.3.6.1.2.1.2.2.1.20.15|65|115
1.3.6.1.2.1.2.2.1.20.16|65|2943
1.3.6.1.2.1.2.2.1.21.1|66|0
1.3.6.1.2.1.2.2.1.21.2|66|0
1.3.6.1.2.1.2.2.1.21.3|66|0
1.3.6.1.2.1.2.2.1.21.4|66|0
1.3.6.1.2.1.2.2.1.21.6|66|0
1.3.6.1.2.1.2.2.1.21.7|66|0
1.3.6.1.2.1.2.2.1.21.8|66|0
1.3.6.1.2.1.2.2.1.21.9|66|0
1.3.6.1.2.1.2.2.1.21.10|66|0
1.3.6.1.2.1.2.2.1.21.11|66|0
1.3.6.1.2.1.2.2.1.21.12|66|0
1.3.6.1.2.1.2.2.1.21.13|66|0
1.3.6.1.2.1.2.2.1.21.14|66|0
1.3.6.1.2.1.2.2.1.21.15|66|0
1.3.6.1.2.1.2.2.1.21.16|66|0
1.3.6.1.2.1.2.2.1.22.1|6|0.0
1.3.6.1.2.1.2.2.1.22.2|6|0.0
1.3.6.1.2.1.2.2.1.22.3|6|0.0
1.3.6.1.2.1.2.2.1.22.4|6|0.0
1.3.6.1.2.1.2.2.1.22.6|6|0.0
1.3.6.1.2.1.2.2.1.22.7|6|0.0
1.3.6.1.2.1.2.2.1.22.8|6|0.0
1.3.6.1.2.1.2.2.1.22.9|6|0.0
1.3.6.1.2.1.2.2.1.22.10|6|0.0
1.3.6.1.2.1.2.2.1.22.11|6|0.0
1.3.6.1.2.1.2.2.1.22.12|6|0.0
1.3.6.1.2.1.2.2.1.22.13|6|0.0
1.3.6.1.2.1.2.2.1.22.14|6|0.0
1.3.6.1.2.1.2.2.1.22.15|6|0.0
1.3.6.1.2.1.2.2.1.22.16|6|0.0
1.3.6.1.2.1.4.20.1.2.10.18.0.149|2|9
1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|1
1.3.6.1.2.1.4.20.1.3.10.18.0.149|64|255.255.252.0
1.3.6.1.4.1.2356.13.1.3.57.1.3.6.87.76.65.78.45.49|66|3
1.3.6.1.4.1.2356.13.1.3.57.1.3.6.87.76.65.78.45.50|66|132
1.3.6.1.4.1.2356.13.1.3.57.1.5.6.87.76.65.78.45.49|2|-90
1.3.6.1.4.1.2356.13.1.3.57.1.5.6.87.76.65.78.45.50|2|-95
1.3.6.1.4.1.2356.13.1.3.57.1.6.6.87.76.65.78.45.49|66|18
1.3.6.1.4.1.2356.13.1.3.57.1.6.6.87.76.65.78.45.50|66|9
1.3.6.1.4.1.2356.13.1.3.57.1.7.6.87.76.65.78.45.49|2|15
1.3.6.1.4.1.2356.13.1.3.57.1.7.6.87.76.65.78.45.50|2|21
1.3.6.1.4.1.2356.13.1.47.4.0|66|896592
1.3.6.1.4.1.2356.13.1.47.5.0|66|579928
1.3.6.1.4.1.2356.13.1.47.7.0|4|4006527440100124
1.3.6.1.4.1.2356.13.1.47.9.0|4|6.10.0042RU1 / 01.04.2023

View File

@ -0,0 +1,352 @@
1.3.6.1.2.1.1.1.0|4|Linux HB-MBO-AP01 4.4.60 #0 SMP PREEMPT (LCOS-LX: 6.10.0042) 2023-04-01 14:15:27+02:00 aarch64
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.2356.13.8.0.10
1.3.6.1.2.1.1.4.0|4|<private>
1.3.6.1.2.1.1.6.0|4|<private>
1.3.6.1.2.1.2.2.1.1.1|2|1
1.3.6.1.2.1.2.2.1.1.2|2|2
1.3.6.1.2.1.2.2.1.1.3|2|3
1.3.6.1.2.1.2.2.1.1.4|2|4
1.3.6.1.2.1.2.2.1.1.6|2|6
1.3.6.1.2.1.2.2.1.1.7|2|7
1.3.6.1.2.1.2.2.1.1.8|2|8
1.3.6.1.2.1.2.2.1.1.9|2|9
1.3.6.1.2.1.2.2.1.1.10|2|10
1.3.6.1.2.1.2.2.1.1.11|2|11
1.3.6.1.2.1.2.2.1.1.12|2|12
1.3.6.1.2.1.2.2.1.1.13|2|13
1.3.6.1.2.1.2.2.1.1.14|2|14
1.3.6.1.2.1.2.2.1.1.15|2|15
1.3.6.1.2.1.2.2.1.1.16|2|16
1.3.6.1.2.1.2.2.1.2.1|4|lo
1.3.6.1.2.1.2.2.1.2.2|4|miireg
1.3.6.1.2.1.2.2.1.2.3|4|eth0
1.3.6.1.2.1.2.2.1.2.4|4|eth1
1.3.6.1.2.1.2.2.1.2.6|4|wifi0
1.3.6.1.2.1.2.2.1.2.7|4|wifi1
1.3.6.1.2.1.2.2.1.2.8|4|soc0
1.3.6.1.2.1.2.2.1.2.9|4|br-lan
1.3.6.1.2.1.2.2.1.2.10|4|br-lan-100
1.3.6.1.2.1.2.2.1.2.11|4|ath0
1.3.6.1.2.1.2.2.1.2.12|4|ath1
1.3.6.1.2.1.2.2.1.2.13|4|ath16
1.3.6.1.2.1.2.2.1.2.14|4|eth0.100
1.3.6.1.2.1.2.2.1.2.15|4|eth1.100
1.3.6.1.2.1.2.2.1.2.16|4|ath17
1.3.6.1.2.1.2.2.1.3.1|2|24
1.3.6.1.2.1.2.2.1.3.2|2|1
1.3.6.1.2.1.2.2.1.3.3|2|6
1.3.6.1.2.1.2.2.1.3.4|2|6
1.3.6.1.2.1.2.2.1.3.6|2|1
1.3.6.1.2.1.2.2.1.3.7|2|1
1.3.6.1.2.1.2.2.1.3.8|2|1
1.3.6.1.2.1.2.2.1.3.9|2|6
1.3.6.1.2.1.2.2.1.3.10|2|6
1.3.6.1.2.1.2.2.1.3.11|2|6
1.3.6.1.2.1.2.2.1.3.12|2|6
1.3.6.1.2.1.2.2.1.3.13|2|6
1.3.6.1.2.1.2.2.1.3.14|2|6
1.3.6.1.2.1.2.2.1.3.15|2|6
1.3.6.1.2.1.2.2.1.3.16|2|6
1.3.6.1.2.1.2.2.1.4.1|2|65536
1.3.6.1.2.1.2.2.1.4.2|2|0
1.3.6.1.2.1.2.2.1.4.3|2|1500
1.3.6.1.2.1.2.2.1.4.4|2|1500
1.3.6.1.2.1.2.2.1.4.6|2|1500
1.3.6.1.2.1.2.2.1.4.7|2|1500
1.3.6.1.2.1.2.2.1.4.8|2|0
1.3.6.1.2.1.2.2.1.4.9|2|1500
1.3.6.1.2.1.2.2.1.4.10|2|1500
1.3.6.1.2.1.2.2.1.4.11|2|1500
1.3.6.1.2.1.2.2.1.4.12|2|1500
1.3.6.1.2.1.2.2.1.4.13|2|1500
1.3.6.1.2.1.2.2.1.4.14|2|1500
1.3.6.1.2.1.2.2.1.4.15|2|1500
1.3.6.1.2.1.2.2.1.4.16|2|1500
1.3.6.1.2.1.2.2.1.5.1|66|10000000
1.3.6.1.2.1.2.2.1.5.2|66|0
1.3.6.1.2.1.2.2.1.5.3|66|10000000
1.3.6.1.2.1.2.2.1.5.4|66|1000000000
1.3.6.1.2.1.2.2.1.5.6|66|0
1.3.6.1.2.1.2.2.1.5.7|66|0
1.3.6.1.2.1.2.2.1.5.8|66|0
1.3.6.1.2.1.2.2.1.5.9|66|0
1.3.6.1.2.1.2.2.1.5.10|66|0
1.3.6.1.2.1.2.2.1.5.11|66|0
1.3.6.1.2.1.2.2.1.5.12|66|0
1.3.6.1.2.1.2.2.1.5.13|66|0
1.3.6.1.2.1.2.2.1.5.14|66|10000000
1.3.6.1.2.1.2.2.1.5.15|66|1000000000
1.3.6.1.2.1.2.2.1.5.16|66|0
1.3.6.1.2.1.2.2.1.6.1|4|
1.3.6.1.2.1.2.2.1.6.2|4|
1.3.6.1.2.1.2.2.1.6.3|4x|00a0578072b1
1.3.6.1.2.1.2.2.1.6.4|4x|00a0578072b2
1.3.6.1.2.1.2.2.1.6.6|4x|00a0578072b3
1.3.6.1.2.1.2.2.1.6.7|4x|00a0578072b4
1.3.6.1.2.1.2.2.1.6.8|4|
1.3.6.1.2.1.2.2.1.6.9|4x|00a0578072b1
1.3.6.1.2.1.2.2.1.6.10|4x|00a0578072b1
1.3.6.1.2.1.2.2.1.6.11|4x|00a0578072b4
1.3.6.1.2.1.2.2.1.6.12|4x|06a0578072b4
1.3.6.1.2.1.2.2.1.6.13|4x|00a0578072b3
1.3.6.1.2.1.2.2.1.6.14|4x|00a0578072b1
1.3.6.1.2.1.2.2.1.6.15|4x|00a0578072b2
1.3.6.1.2.1.2.2.1.6.16|4x|06a0578072b3
1.3.6.1.2.1.2.2.1.7.1|2|1
1.3.6.1.2.1.2.2.1.7.2|2|1
1.3.6.1.2.1.2.2.1.7.3|2|1
1.3.6.1.2.1.2.2.1.7.4|2|1
1.3.6.1.2.1.2.2.1.7.6|2|1
1.3.6.1.2.1.2.2.1.7.7|2|1
1.3.6.1.2.1.2.2.1.7.8|2|1
1.3.6.1.2.1.2.2.1.7.9|2|1
1.3.6.1.2.1.2.2.1.7.10|2|1
1.3.6.1.2.1.2.2.1.7.11|2|1
1.3.6.1.2.1.2.2.1.7.12|2|1
1.3.6.1.2.1.2.2.1.7.13|2|1
1.3.6.1.2.1.2.2.1.7.14|2|1
1.3.6.1.2.1.2.2.1.7.15|2|1
1.3.6.1.2.1.2.2.1.7.16|2|1
1.3.6.1.2.1.2.2.1.8.1|2|1
1.3.6.1.2.1.2.2.1.8.2|2|1
1.3.6.1.2.1.2.2.1.8.3|2|2
1.3.6.1.2.1.2.2.1.8.4|2|1
1.3.6.1.2.1.2.2.1.8.6|2|1
1.3.6.1.2.1.2.2.1.8.7|2|1
1.3.6.1.2.1.2.2.1.8.8|2|1
1.3.6.1.2.1.2.2.1.8.9|2|1
1.3.6.1.2.1.2.2.1.8.10|2|1
1.3.6.1.2.1.2.2.1.8.11|2|1
1.3.6.1.2.1.2.2.1.8.12|2|1
1.3.6.1.2.1.2.2.1.8.13|2|1
1.3.6.1.2.1.2.2.1.8.14|2|2
1.3.6.1.2.1.2.2.1.8.15|2|1
1.3.6.1.2.1.2.2.1.8.16|2|1
1.3.6.1.2.1.2.2.1.9.1|67|0
1.3.6.1.2.1.2.2.1.9.2|67|0
1.3.6.1.2.1.2.2.1.9.3|67|0
1.3.6.1.2.1.2.2.1.9.4|67|0
1.3.6.1.2.1.2.2.1.9.6|67|0
1.3.6.1.2.1.2.2.1.9.7|67|0
1.3.6.1.2.1.2.2.1.9.8|67|0
1.3.6.1.2.1.2.2.1.9.9|67|0
1.3.6.1.2.1.2.2.1.9.10|67|0
1.3.6.1.2.1.2.2.1.9.11|67|0
1.3.6.1.2.1.2.2.1.9.12|67|0
1.3.6.1.2.1.2.2.1.9.13|67|0
1.3.6.1.2.1.2.2.1.9.14|67|0
1.3.6.1.2.1.2.2.1.9.15|67|0
1.3.6.1.2.1.2.2.1.9.16|67|0
1.3.6.1.2.1.2.2.1.10.1|65|3776
1.3.6.1.2.1.2.2.1.10.2|65|0
1.3.6.1.2.1.2.2.1.10.3|65|0
1.3.6.1.2.1.2.2.1.10.4|65|2847125959
1.3.6.1.2.1.2.2.1.10.6|65|131408710
1.3.6.1.2.1.2.2.1.10.7|65|4577168
1.3.6.1.2.1.2.2.1.10.8|65|0
1.3.6.1.2.1.2.2.1.10.9|65|934784531
1.3.6.1.2.1.2.2.1.10.10|65|53978093
1.3.6.1.2.1.2.2.1.10.11|65|46741
1.3.6.1.2.1.2.2.1.10.12|65|4508327
1.3.6.1.2.1.2.2.1.10.13|65|158159
1.3.6.1.2.1.2.2.1.10.14|65|0
1.3.6.1.2.1.2.2.1.10.15|65|1493967419
1.3.6.1.2.1.2.2.1.10.16|65|131141581
1.3.6.1.2.1.2.2.1.11.1|65|26
1.3.6.1.2.1.2.2.1.11.2|65|0
1.3.6.1.2.1.2.2.1.11.3|65|0
1.3.6.1.2.1.2.2.1.11.4|65|228244571
1.3.6.1.2.1.2.2.1.11.6|65|518823
1.3.6.1.2.1.2.2.1.11.7|65|25250
1.3.6.1.2.1.2.2.1.11.8|65|0
1.3.6.1.2.1.2.2.1.11.9|65|256871914
1.3.6.1.2.1.2.2.1.11.10|65|641694
1.3.6.1.2.1.2.2.1.11.11|65|277
1.3.6.1.2.1.2.2.1.11.12|65|24837
1.3.6.1.2.1.2.2.1.11.13|65|1006
1.3.6.1.2.1.2.2.1.11.14|65|0
1.3.6.1.2.1.2.2.1.11.15|65|1734688
1.3.6.1.2.1.2.2.1.11.16|65|517048
1.3.6.1.2.1.2.2.1.12.1|65|0
1.3.6.1.2.1.2.2.1.12.2|65|0
1.3.6.1.2.1.2.2.1.12.3|65|0
1.3.6.1.2.1.2.2.1.12.4|65|30518517
1.3.6.1.2.1.2.2.1.12.6|65|0
1.3.6.1.2.1.2.2.1.12.7|65|0
1.3.6.1.2.1.2.2.1.12.8|65|0
1.3.6.1.2.1.2.2.1.12.9|65|0
1.3.6.1.2.1.2.2.1.12.10|65|0
1.3.6.1.2.1.2.2.1.12.11|65|0
1.3.6.1.2.1.2.2.1.12.12|65|0
1.3.6.1.2.1.2.2.1.12.13|65|0
1.3.6.1.2.1.2.2.1.12.14|65|0
1.3.6.1.2.1.2.2.1.12.15|65|132356
1.3.6.1.2.1.2.2.1.12.16|65|0
1.3.6.1.2.1.2.2.1.13.1|65|0
1.3.6.1.2.1.2.2.1.13.2|65|0
1.3.6.1.2.1.2.2.1.13.3|65|0
1.3.6.1.2.1.2.2.1.13.4|65|0
1.3.6.1.2.1.2.2.1.13.6|65|0
1.3.6.1.2.1.2.2.1.13.7|65|0
1.3.6.1.2.1.2.2.1.13.8|65|0
1.3.6.1.2.1.2.2.1.13.9|65|134
1.3.6.1.2.1.2.2.1.13.10|65|0
1.3.6.1.2.1.2.2.1.13.11|65|0
1.3.6.1.2.1.2.2.1.13.12|65|21
1.3.6.1.2.1.2.2.1.13.13|65|0
1.3.6.1.2.1.2.2.1.13.14|65|0
1.3.6.1.2.1.2.2.1.13.15|65|0
1.3.6.1.2.1.2.2.1.13.16|65|34
1.3.6.1.2.1.2.2.1.14.1|65|0
1.3.6.1.2.1.2.2.1.14.2|65|0
1.3.6.1.2.1.2.2.1.14.3|65|0
1.3.6.1.2.1.2.2.1.14.4|65|0
1.3.6.1.2.1.2.2.1.14.6|65|45599
1.3.6.1.2.1.2.2.1.14.7|65|2718
1.3.6.1.2.1.2.2.1.14.8|65|0
1.3.6.1.2.1.2.2.1.14.9|65|0
1.3.6.1.2.1.2.2.1.14.10|65|0
1.3.6.1.2.1.2.2.1.14.11|65|0
1.3.6.1.2.1.2.2.1.14.12|65|21
1.3.6.1.2.1.2.2.1.14.13|65|0
1.3.6.1.2.1.2.2.1.14.14|65|0
1.3.6.1.2.1.2.2.1.14.15|65|0
1.3.6.1.2.1.2.2.1.14.16|65|34
1.3.6.1.2.1.2.2.1.15.1|65|0
1.3.6.1.2.1.2.2.1.15.2|65|0
1.3.6.1.2.1.2.2.1.15.3|65|0
1.3.6.1.2.1.2.2.1.15.4|65|0
1.3.6.1.2.1.2.2.1.15.6|65|0
1.3.6.1.2.1.2.2.1.15.7|65|0
1.3.6.1.2.1.2.2.1.15.8|65|0
1.3.6.1.2.1.2.2.1.15.9|65|0
1.3.6.1.2.1.2.2.1.15.10|65|0
1.3.6.1.2.1.2.2.1.15.11|65|0
1.3.6.1.2.1.2.2.1.15.12|65|0
1.3.6.1.2.1.2.2.1.15.13|65|0
1.3.6.1.2.1.2.2.1.15.14|65|0
1.3.6.1.2.1.2.2.1.15.15|65|0
1.3.6.1.2.1.2.2.1.15.16|65|0
1.3.6.1.2.1.2.2.1.16.1|65|3776
1.3.6.1.2.1.2.2.1.16.2|65|0
1.3.6.1.2.1.2.2.1.16.3|65|0
1.3.6.1.2.1.2.2.1.16.4|65|309213689
1.3.6.1.2.1.2.2.1.16.6|65|1514650609
1.3.6.1.2.1.2.2.1.16.7|65|181230996
1.3.6.1.2.1.2.2.1.16.8|65|0
1.3.6.1.2.1.2.2.1.16.9|65|105230022
1.3.6.1.2.1.2.2.1.16.10|65|3666
1.3.6.1.2.1.2.2.1.16.11|65|170794
1.3.6.1.2.1.2.2.1.16.12|65|125888639
1.3.6.1.2.1.2.2.1.16.13|65|1118567
1.3.6.1.2.1.2.2.1.16.14|65|0
1.3.6.1.2.1.2.2.1.16.15|65|135562378
1.3.6.1.2.1.2.2.1.16.16|65|2852344976
1.3.6.1.2.1.2.2.1.17.1|65|26
1.3.6.1.2.1.2.2.1.17.2|65|0
1.3.6.1.2.1.2.2.1.17.3|65|0
1.3.6.1.2.1.2.2.1.17.4|65|1326230
1.3.6.1.2.1.2.2.1.17.6|65|2411440
1.3.6.1.2.1.2.2.1.17.7|65|1289556
1.3.6.1.2.1.2.2.1.17.8|65|0
1.3.6.1.2.1.2.2.1.17.9|65|522261
1.3.6.1.2.1.2.2.1.17.10|65|25
1.3.6.1.2.1.2.2.1.17.11|65|479
1.3.6.1.2.1.2.2.1.17.12|65|123089
1.3.6.1.2.1.2.2.1.17.13|65|5891
1.3.6.1.2.1.2.2.1.17.14|65|0
1.3.6.1.2.1.2.2.1.17.15|65|539627
1.3.6.1.2.1.2.2.1.17.16|65|2531254
1.3.6.1.2.1.2.2.1.18.1|65|0
1.3.6.1.2.1.2.2.1.18.2|65|0
1.3.6.1.2.1.2.2.1.18.3|65|0
1.3.6.1.2.1.2.2.1.18.4|65|0
1.3.6.1.2.1.2.2.1.18.6|65|0
1.3.6.1.2.1.2.2.1.18.7|65|0
1.3.6.1.2.1.2.2.1.18.8|65|0
1.3.6.1.2.1.2.2.1.18.9|65|0
1.3.6.1.2.1.2.2.1.18.10|65|0
1.3.6.1.2.1.2.2.1.18.11|65|0
1.3.6.1.2.1.2.2.1.18.12|65|0
1.3.6.1.2.1.2.2.1.18.13|65|0
1.3.6.1.2.1.2.2.1.18.14|65|0
1.3.6.1.2.1.2.2.1.18.15|65|0
1.3.6.1.2.1.2.2.1.18.16|65|0
1.3.6.1.2.1.2.2.1.19.1|65|0
1.3.6.1.2.1.2.2.1.19.2|65|0
1.3.6.1.2.1.2.2.1.19.3|65|0
1.3.6.1.2.1.2.2.1.19.4|65|0
1.3.6.1.2.1.2.2.1.19.6|65|2474
1.3.6.1.2.1.2.2.1.19.7|65|416
1.3.6.1.2.1.2.2.1.19.8|65|0
1.3.6.1.2.1.2.2.1.19.9|65|0
1.3.6.1.2.1.2.2.1.19.10|65|0
1.3.6.1.2.1.2.2.1.19.11|65|0
1.3.6.1.2.1.2.2.1.19.12|65|0
1.3.6.1.2.1.2.2.1.19.13|65|0
1.3.6.1.2.1.2.2.1.19.14|65|0
1.3.6.1.2.1.2.2.1.19.15|65|0
1.3.6.1.2.1.2.2.1.19.16|65|0
1.3.6.1.2.1.2.2.1.20.1|65|0
1.3.6.1.2.1.2.2.1.20.2|65|0
1.3.6.1.2.1.2.2.1.20.3|65|0
1.3.6.1.2.1.2.2.1.20.4|65|0
1.3.6.1.2.1.2.2.1.20.6|65|2474
1.3.6.1.2.1.2.2.1.20.7|65|416
1.3.6.1.2.1.2.2.1.20.8|65|0
1.3.6.1.2.1.2.2.1.20.9|65|0
1.3.6.1.2.1.2.2.1.20.10|65|0
1.3.6.1.2.1.2.2.1.20.11|65|0
1.3.6.1.2.1.2.2.1.20.12|65|416
1.3.6.1.2.1.2.2.1.20.13|65|48
1.3.6.1.2.1.2.2.1.20.14|65|0
1.3.6.1.2.1.2.2.1.20.15|65|0
1.3.6.1.2.1.2.2.1.20.16|65|2426
1.3.6.1.2.1.2.2.1.21.1|66|0
1.3.6.1.2.1.2.2.1.21.2|66|0
1.3.6.1.2.1.2.2.1.21.3|66|0
1.3.6.1.2.1.2.2.1.21.4|66|0
1.3.6.1.2.1.2.2.1.21.6|66|0
1.3.6.1.2.1.2.2.1.21.7|66|0
1.3.6.1.2.1.2.2.1.21.8|66|0
1.3.6.1.2.1.2.2.1.21.9|66|0
1.3.6.1.2.1.2.2.1.21.10|66|0
1.3.6.1.2.1.2.2.1.21.11|66|0
1.3.6.1.2.1.2.2.1.21.12|66|0
1.3.6.1.2.1.2.2.1.21.13|66|0
1.3.6.1.2.1.2.2.1.21.14|66|0
1.3.6.1.2.1.2.2.1.21.15|66|0
1.3.6.1.2.1.2.2.1.21.16|66|0
1.3.6.1.2.1.2.2.1.22.1|6|0.0
1.3.6.1.2.1.2.2.1.22.2|6|0.0
1.3.6.1.2.1.2.2.1.22.3|6|0.0
1.3.6.1.2.1.2.2.1.22.4|6|0.0
1.3.6.1.2.1.2.2.1.22.6|6|0.0
1.3.6.1.2.1.2.2.1.22.7|6|0.0
1.3.6.1.2.1.2.2.1.22.8|6|0.0
1.3.6.1.2.1.2.2.1.22.9|6|0.0
1.3.6.1.2.1.2.2.1.22.10|6|0.0
1.3.6.1.2.1.2.2.1.22.11|6|0.0
1.3.6.1.2.1.2.2.1.22.12|6|0.0
1.3.6.1.2.1.2.2.1.22.13|6|0.0
1.3.6.1.2.1.2.2.1.22.14|6|0.0
1.3.6.1.2.1.2.2.1.22.15|6|0.0
1.3.6.1.2.1.2.2.1.22.16|6|0.0
1.3.6.1.2.1.4.20.1.2.10.18.0.138|2|9
1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|1
1.3.6.1.2.1.4.20.1.3.10.18.0.138|64|255.255.252.0
1.3.6.1.4.1.2356.13.1.3.32.1.27.250.39.223.121.22.38|64|10.100.0.102
1.3.6.1.4.1.2356.13.1.3.32.1.51.250.39.223.121.22.38|66|6
1.3.6.1.4.1.2356.13.1.3.32.1.98.250.39.223.121.22.38|4|HBM
1.3.6.1.4.1.2356.13.1.3.57.1.3.6.87.76.65.78.45.49|66|11
1.3.6.1.4.1.2356.13.1.3.57.1.3.6.87.76.65.78.45.50|66|100
1.3.6.1.4.1.2356.13.1.3.57.1.5.6.87.76.65.78.45.49|2|-93
1.3.6.1.4.1.2356.13.1.3.57.1.5.6.87.76.65.78.45.50|2|-93
1.3.6.1.4.1.2356.13.1.3.57.1.6.6.87.76.65.78.45.49|66|36
1.3.6.1.4.1.2356.13.1.3.57.1.6.6.87.76.65.78.45.50|66|3
1.3.6.1.4.1.2356.13.1.3.57.1.7.6.87.76.65.78.45.49|2|10
1.3.6.1.4.1.2356.13.1.3.57.1.7.6.87.76.65.78.45.50|2|20
1.3.6.1.4.1.2356.13.1.47.4.0|66|809616
1.3.6.1.4.1.2356.13.1.47.5.0|66|525288
1.3.6.1.4.1.2356.13.1.47.7.0|4|4006393416100241
1.3.6.1.4.1.2356.13.1.47.9.0|4|6.10.0042RU1 / 01.04.2023

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff