mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Mikrotik vlans discovery, v2 (#13427)
* Mikrotik vlans discovery, v2 * styleci cleanup * added Routeros entry in mkdocs.yml * fixed typo in mkdocs.yml * Better Vlan Eloquent Model * Missed one * Use new SnmpQuery code Co-authored-by: Tony Murray <murraytony@gmail.com>
This commit is contained in:
@@ -4,5 +4,14 @@ namespace App\Models;
|
|||||||
|
|
||||||
class Vlan extends DeviceRelatedModel
|
class Vlan extends DeviceRelatedModel
|
||||||
{
|
{
|
||||||
|
protected $primaryKey = 'vlan_id';
|
||||||
public $timestamps = false;
|
public $timestamps = false;
|
||||||
|
protected $fillable = [
|
||||||
|
'device_id',
|
||||||
|
'vlan_vlan',
|
||||||
|
'vlan_domain',
|
||||||
|
'vlan_name',
|
||||||
|
'vlan_type',
|
||||||
|
'vlan_mtu',
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
33
doc/Support/Device-Notes/Routeros.md
Normal file
33
doc/Support/Device-Notes/Routeros.md
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
source: doc/Support/Device-Notes/Routeros.md
|
||||||
|
path: blob/master/doc/
|
||||||
|
|
||||||
|
This is attempt to get vlans information from Mikrotik RouterOS.
|
||||||
|
|
||||||
|
# Installation
|
||||||
|
|
||||||
|
Installation is very simple. On mikrotik we need:
|
||||||
|
1. one script, named "LNMS_vlans"
|
||||||
|
2. snmp community with write permission
|
||||||
|
|
||||||
|
Copy the scripts from librenms-agent/snmp/Routeros and place in /system/scripts
|
||||||
|
Set snmp community to have WRITE permission in /snmp/community
|
||||||
|
|
||||||
|
It is strongly recomended that snmp allowed address is narrowed down to /32 because write permission could allow attack on device
|
||||||
|
|
||||||
|
Theory of operation:
|
||||||
|
|
||||||
|
Mikrotik vlan discovery plugin using ability of ROS to "fire up" a script trough SNMP
|
||||||
|
At first, LibreNMS check for existence of script, and if it present, it will be started
|
||||||
|
Sript try to gather information from:
|
||||||
|
a. /interface/bridge/vlan for tagged ports inside bridge
|
||||||
|
b. /interface/bridge/vlan for currently untagged ports inside bridge
|
||||||
|
c. /interface/bridge/port for ports PVID (untagged) inside bridge
|
||||||
|
d. /interface/vlan for plain (old style) vlans
|
||||||
|
|
||||||
|
after information is gathered, it is transmitted to LibreNMS over SNMP
|
||||||
|
protocol is:
|
||||||
|
type,vlanId,ifName <cr>
|
||||||
|
|
||||||
|
i.e:
|
||||||
|
T,254,ether1 is translated to Tagged vlan 254 on port ether1
|
||||||
|
U,100,wlan2 is translated to Untagged vlan 100 on port wlan2
|
80
includes/discovery/vlans/routeros.inc.php
Normal file
80
includes/discovery/vlans/routeros.inc.php
Normal file
@@ -0,0 +1,80 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* routeros.inc.php.
|
||||||
|
*
|
||||||
|
* LibreNMS vlan discovery module for Mikrotik RouterOS
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
*
|
||||||
|
* @author peca.nesovanovic@sattrakt.com
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Discovery module using ROS ability to start script execution through SNMP.
|
||||||
|
// This way, script called "LNMS_vlans" could start and send data about vlans on device
|
||||||
|
// data format is: type,vlanId,ifName <cr>
|
||||||
|
// i.e: T,254,ether1 is translated to: tagged vlan 254 on ether1
|
||||||
|
|
||||||
|
use App\Models\Vlan;
|
||||||
|
|
||||||
|
$scripts = SnmpQuery::walk('MIKROTIK-MIB::mtxrScriptName')->table();
|
||||||
|
$sIndex = array_flip($scripts['MIKROTIK-MIB::mtxrScriptName'] ?? [])['LNMS_vlans'] ?? null;
|
||||||
|
|
||||||
|
if (isset($sIndex)) {
|
||||||
|
echo "Mikrotik VLANs \n";
|
||||||
|
$vlanversion = 1;
|
||||||
|
$data = SnmpQuery::get('MIKROTIK-MIB::mtxrScriptRunOutput.' . $sIndex)->value();
|
||||||
|
$ifNames = array_flip($os->getCacheByIndex('ifName', 'IF-MIB'));
|
||||||
|
$oldId = 0;
|
||||||
|
|
||||||
|
foreach (preg_split("/((\r?\n)|(\r\n?))/", $data) as $line) {
|
||||||
|
[$vType, $vId, $vIf] = array_map('trim', explode(',', $line));
|
||||||
|
$vName = 'Vlan_' . $vId;
|
||||||
|
|
||||||
|
if ($oldId != $vId) {
|
||||||
|
$oldId = $vId;
|
||||||
|
|
||||||
|
//add vlan ID to $device array
|
||||||
|
$device['vlans'][1][$vId] = $vId;
|
||||||
|
|
||||||
|
//try to get existing data
|
||||||
|
$vlan = Vlan::firstOrNew([
|
||||||
|
'device_id' => $device['device_id'],
|
||||||
|
'vlan_vlan' => $vId,
|
||||||
|
], [
|
||||||
|
'vlan_domain' => 1,
|
||||||
|
'vlan_name' => $vName,
|
||||||
|
]);
|
||||||
|
|
||||||
|
if ($vlan->isDirty('vlan_name')) {
|
||||||
|
Log::event("Vlan id: $vId changed name to: $vName from " . $vlan->getOriginal('vlan_name'), $device['device_id'], 'vlan', 4);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (! $vlan->exists) {
|
||||||
|
Log::event("Vlan id: $vId: $vName added", $device['device_id'], 'vlan', 4);
|
||||||
|
}
|
||||||
|
|
||||||
|
$vlan->save();
|
||||||
|
}
|
||||||
|
|
||||||
|
//find ifIndex connected to ifName on current device
|
||||||
|
|
||||||
|
$ifIndex = $ifNames[$vIf];
|
||||||
|
d_echo("\n ifIndex from DB: $ifIndex \n");
|
||||||
|
|
||||||
|
//populate per_vlan_data
|
||||||
|
$per_vlan_data[$vId][$ifIndex]['untagged'] = $vType == 'U' ? 1 : 0;
|
||||||
|
}
|
||||||
|
}
|
@@ -193,3 +193,4 @@ nav:
|
|||||||
- Carel pCOweb: Support/Device-Notes/Carel-pCOweb-Devices.md
|
- Carel pCOweb: Support/Device-Notes/Carel-pCOweb-Devices.md
|
||||||
- Asuswrt-Merlin: Support/Device-Notes/AsuswrtMerlin.md
|
- Asuswrt-Merlin: Support/Device-Notes/AsuswrtMerlin.md
|
||||||
- OpenWRT: Support/Device-Notes/Openwrt.md
|
- OpenWRT: Support/Device-Notes/Openwrt.md
|
||||||
|
- RouterOS: Support/Device-Notes/Routeros.md
|
||||||
|
3657
tests/data/routeros_vlans.json
Normal file
3657
tests/data/routeros_vlans.json
Normal file
File diff suppressed because it is too large
Load Diff
596
tests/snmpsim/routeros_vlans.snmprec
Normal file
596
tests/snmpsim/routeros_vlans.snmprec
Normal file
@@ -0,0 +1,596 @@
|
|||||||
|
1.0.8802.1.1.2.1.4.1.1.4.0.0.6|2|4
|
||||||
|
1.0.8802.1.1.2.1.4.1.1.4.0.0.15|2|4
|
||||||
|
1.0.8802.1.1.2.1.4.1.1.4.0.0.21|2|4
|
||||||
|
1.0.8802.1.1.2.1.4.1.1.4.0.0.23|2|4
|
||||||
|
1.0.8802.1.1.2.1.4.1.1.4.0.0.28|2|4
|
||||||
|
1.0.8802.1.1.2.1.4.1.1.5.0.0.6|4|C0:06:C3:A1:3F:46
|
||||||
|
1.0.8802.1.1.2.1.4.1.1.5.0.0.15|4|00:0C:29:93:07:F1
|
||||||
|
1.0.8802.1.1.2.1.4.1.1.5.0.0.21|4|00:0C:29:93:07:19
|
||||||
|
1.0.8802.1.1.2.1.4.1.1.5.0.0.23|4|0E:01:01:00:02:53
|
||||||
|
1.0.8802.1.1.2.1.4.1.1.5.0.0.28|4|0E:FE:01:00:01:01
|
||||||
|
1.0.8802.1.1.2.1.4.1.1.6.0.0.6|2|5
|
||||||
|
1.0.8802.1.1.2.1.4.1.1.6.0.0.15|2|5
|
||||||
|
1.0.8802.1.1.2.1.4.1.1.6.0.0.21|2|5
|
||||||
|
1.0.8802.1.1.2.1.4.1.1.6.0.0.23|2|5
|
||||||
|
1.0.8802.1.1.2.1.4.1.1.6.0.0.28|2|5
|
||||||
|
1.0.8802.1.1.2.1.4.1.1.7.0.0.6|4|gigabitEthernet 1/0/7
|
||||||
|
1.0.8802.1.1.2.1.4.1.1.7.0.0.15|4|lan1
|
||||||
|
1.0.8802.1.1.2.1.4.1.1.7.0.0.21|4|lan254
|
||||||
|
1.0.8802.1.1.2.1.4.1.1.7.0.0.23|4|br-lan254
|
||||||
|
1.0.8802.1.1.2.1.4.1.1.7.0.0.28|4|br-lan254
|
||||||
|
1.3.6.1.2.1.1.1.0|4|RouterOS RB951G-2HnD
|
||||||
|
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.14988.1
|
||||||
|
1.3.6.1.2.1.1.3.0|67|70170100
|
||||||
|
1.3.6.1.2.1.1.4.0|4|<private>
|
||||||
|
1.3.6.1.2.1.1.5.0|4|<private>
|
||||||
|
1.3.6.1.2.1.1.6.0|4|<private>
|
||||||
|
1.3.6.1.2.1.2.2.1.2.1|4|ether1-trunk
|
||||||
|
1.3.6.1.2.1.2.2.1.2.2|4|ether2-test
|
||||||
|
1.3.6.1.2.1.2.2.1.2.3|4|ether3-test
|
||||||
|
1.3.6.1.2.1.2.2.1.2.4|4|ether4-test
|
||||||
|
1.3.6.1.2.1.2.2.1.2.5|4|ether5-ac200
|
||||||
|
1.3.6.1.2.1.2.2.1.2.6|4|wlan2
|
||||||
|
1.3.6.1.2.1.2.2.1.2.10|4|BR-Switch
|
||||||
|
1.3.6.1.2.1.2.2.1.2.11|4|vlan254
|
||||||
|
1.3.6.1.2.1.2.2.1.2.13|4|wlan100
|
||||||
|
1.3.6.1.2.1.2.2.1.2.15|4|wlan200
|
||||||
|
1.3.6.1.2.1.2.2.1.2.16|4|vlan22
|
||||||
|
1.3.6.1.2.1.2.2.1.2.17|4|vlan33
|
||||||
|
1.3.6.1.2.1.2.2.1.2.18|4|vlan44
|
||||||
|
1.3.6.1.2.1.2.2.1.2.19|4|vlan444
|
||||||
|
1.3.6.1.2.1.2.2.1.3.1|2|6
|
||||||
|
1.3.6.1.2.1.2.2.1.3.2|2|6
|
||||||
|
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.5|2|6
|
||||||
|
1.3.6.1.2.1.2.2.1.3.6|2|71
|
||||||
|
1.3.6.1.2.1.2.2.1.3.10|2|209
|
||||||
|
1.3.6.1.2.1.2.2.1.3.11|2|135
|
||||||
|
1.3.6.1.2.1.2.2.1.3.13|2|71
|
||||||
|
1.3.6.1.2.1.2.2.1.3.15|2|71
|
||||||
|
1.3.6.1.2.1.2.2.1.3.16|2|135
|
||||||
|
1.3.6.1.2.1.2.2.1.3.17|2|135
|
||||||
|
1.3.6.1.2.1.2.2.1.3.18|2|135
|
||||||
|
1.3.6.1.2.1.2.2.1.3.19|2|135
|
||||||
|
1.3.6.1.2.1.2.2.1.4.1|2|1500
|
||||||
|
1.3.6.1.2.1.2.2.1.4.2|2|1500
|
||||||
|
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.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.13|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.4.17|2|1500
|
||||||
|
1.3.6.1.2.1.2.2.1.4.18|2|1500
|
||||||
|
1.3.6.1.2.1.2.2.1.4.19|2|1500
|
||||||
|
1.3.6.1.2.1.2.2.1.6.1|4x|CC2DE065E507
|
||||||
|
1.3.6.1.2.1.2.2.1.6.2|4x|CC2DE065E508
|
||||||
|
1.3.6.1.2.1.2.2.1.6.3|4x|CC2DE065E509
|
||||||
|
1.3.6.1.2.1.2.2.1.6.4|4x|CC2DE065E50A
|
||||||
|
1.3.6.1.2.1.2.2.1.6.5|4x|CC2DE065E50B
|
||||||
|
1.3.6.1.2.1.2.2.1.6.6|4x|CC2DE065E50C
|
||||||
|
1.3.6.1.2.1.2.2.1.6.10|4x|CC2DE065E507
|
||||||
|
1.3.6.1.2.1.2.2.1.6.11|4x|CC2DE065E507
|
||||||
|
1.3.6.1.2.1.2.2.1.6.13|4x|CE2DE065E50C
|
||||||
|
1.3.6.1.2.1.2.2.1.6.15|4x|CE2DE065E50D
|
||||||
|
1.3.6.1.2.1.2.2.1.6.16|4x|CC2DE065E508
|
||||||
|
1.3.6.1.2.1.2.2.1.6.17|4x|CC2DE065E509
|
||||||
|
1.3.6.1.2.1.2.2.1.6.18|4x|CC2DE065E50A
|
||||||
|
1.3.6.1.2.1.2.2.1.6.19|4x|CC2DE065E50A
|
||||||
|
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.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.13|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.7.17|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.7.18|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.7.19|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|2
|
||||||
|
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|2
|
||||||
|
1.3.6.1.2.1.2.2.1.8.5|2|2
|
||||||
|
1.3.6.1.2.1.2.2.1.8.6|2|2
|
||||||
|
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.13|2|1
|
||||||
|
1.3.6.1.2.1.2.2.1.8.15|2|2
|
||||||
|
1.3.6.1.2.1.2.2.1.8.16|2|2
|
||||||
|
1.3.6.1.2.1.2.2.1.8.17|2|2
|
||||||
|
1.3.6.1.2.1.2.2.1.8.18|2|2
|
||||||
|
1.3.6.1.2.1.2.2.1.8.19|2|2
|
||||||
|
1.3.6.1.2.1.2.2.1.9.1|67|22955593
|
||||||
|
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|68557029
|
||||||
|
1.3.6.1.2.1.2.2.1.9.10|67|1407
|
||||||
|
1.3.6.1.2.1.2.2.1.9.11|67|1409
|
||||||
|
1.3.6.1.2.1.2.2.1.9.13|67|49476407
|
||||||
|
1.3.6.1.2.1.2.2.1.9.15|67|69927514
|
||||||
|
1.3.6.1.2.1.2.2.1.9.16|67|0
|
||||||
|
1.3.6.1.2.1.2.2.1.9.17|67|0
|
||||||
|
1.3.6.1.2.1.2.2.1.9.18|67|0
|
||||||
|
1.3.6.1.2.1.2.2.1.9.19|67|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.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.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.13|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|0
|
||||||
|
1.3.6.1.2.1.2.2.1.13.17|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.13.18|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.13.19|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.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.13|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|0
|
||||||
|
1.3.6.1.2.1.2.2.1.14.17|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.14.18|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.14.19|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.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.13|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.19.17|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.19.18|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.19.19|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.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.13|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|0
|
||||||
|
1.3.6.1.2.1.2.2.1.20.17|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.20.18|65|0
|
||||||
|
1.3.6.1.2.1.2.2.1.20.19|65|0
|
||||||
|
1.3.6.1.2.1.4.20.1.2.169.254.101.102|2|11
|
||||||
|
1.3.6.1.2.1.4.20.1.2.169.254.254.102|2|10
|
||||||
|
1.3.6.1.2.1.4.20.1.3.169.254.101.102|64|255.255.255.0
|
||||||
|
1.3.6.1.2.1.4.20.1.3.169.254.254.102|64|255.255.255.0
|
||||||
|
1.3.6.1.2.1.4.22.1.2.10.169.254.254.1|4x|000C299307F1
|
||||||
|
1.3.6.1.2.1.4.22.1.2.11.169.254.101.1|4x|000C29930719
|
||||||
|
1.3.6.1.2.1.4.24.3.0|66|12
|
||||||
|
1.3.6.1.2.1.17.1.1.0|4x|CC2DE065E507
|
||||||
|
1.3.6.1.2.1.17.1.4.1.2.1|2|1
|
||||||
|
1.3.6.1.2.1.17.1.4.1.2.2|2|6
|
||||||
|
1.3.6.1.2.1.17.1.4.1.2.3|2|13
|
||||||
|
1.3.6.1.2.1.17.1.4.1.2.4|2|15
|
||||||
|
1.3.6.1.2.1.17.1.4.1.2.5|2|5
|
||||||
|
1.3.6.1.2.1.17.2.1.0|2|3
|
||||||
|
1.3.6.1.2.1.17.2.2.0|2|32768
|
||||||
|
1.3.6.1.2.1.17.2.15.1.1.1|2|1
|
||||||
|
1.3.6.1.2.1.17.2.15.1.1.2|2|2
|
||||||
|
1.3.6.1.2.1.17.2.15.1.1.3|2|3
|
||||||
|
1.3.6.1.2.1.17.2.15.1.1.4|2|4
|
||||||
|
1.3.6.1.2.1.17.2.15.1.1.5|2|5
|
||||||
|
1.3.6.1.2.1.17.2.15.1.2.1|2|128
|
||||||
|
1.3.6.1.2.1.17.2.15.1.2.2|2|128
|
||||||
|
1.3.6.1.2.1.17.2.15.1.2.3|2|128
|
||||||
|
1.3.6.1.2.1.17.2.15.1.2.4|2|128
|
||||||
|
1.3.6.1.2.1.17.2.15.1.2.5|2|128
|
||||||
|
1.3.6.1.2.1.17.2.15.1.3.1|2|5
|
||||||
|
1.3.6.1.2.1.17.2.15.1.3.2|2|5
|
||||||
|
1.3.6.1.2.1.17.2.15.1.3.3|2|5
|
||||||
|
1.3.6.1.2.1.17.2.15.1.3.4|2|5
|
||||||
|
1.3.6.1.2.1.17.2.15.1.3.5|2|2
|
||||||
|
1.3.6.1.2.1.17.2.15.1.4.1|2|1
|
||||||
|
1.3.6.1.2.1.17.2.15.1.4.2|2|1
|
||||||
|
1.3.6.1.2.1.17.2.15.1.4.3|2|1
|
||||||
|
1.3.6.1.2.1.17.2.15.1.4.4|2|1
|
||||||
|
1.3.6.1.2.1.17.2.15.1.4.5|2|1
|
||||||
|
1.3.6.1.2.1.17.2.15.1.5.1|2|10
|
||||||
|
1.3.6.1.2.1.17.2.15.1.5.2|2|10
|
||||||
|
1.3.6.1.2.1.17.2.15.1.5.3|2|10
|
||||||
|
1.3.6.1.2.1.17.2.15.1.5.4|2|10
|
||||||
|
1.3.6.1.2.1.17.2.15.1.5.5|2|10
|
||||||
|
1.3.6.1.2.1.17.2.15.1.6.1|4x|6000C006C3A13F46
|
||||||
|
1.3.6.1.2.1.17.2.15.1.6.2|4x|0000000000000000
|
||||||
|
1.3.6.1.2.1.17.2.15.1.6.3|4x|0000000000000000
|
||||||
|
1.3.6.1.2.1.17.2.15.1.6.4|4x|0000000000000000
|
||||||
|
1.3.6.1.2.1.17.2.15.1.6.5|4x|0000000000000000
|
||||||
|
1.3.6.1.2.1.17.2.15.1.7.1|2|0
|
||||||
|
1.3.6.1.2.1.17.2.15.1.7.2|2|0
|
||||||
|
1.3.6.1.2.1.17.2.15.1.7.3|2|0
|
||||||
|
1.3.6.1.2.1.17.2.15.1.7.4|2|0
|
||||||
|
1.3.6.1.2.1.17.2.15.1.7.5|2|0
|
||||||
|
1.3.6.1.2.1.17.2.15.1.9.1|4x|0007
|
||||||
|
1.3.6.1.2.1.17.2.15.1.9.2|4x|0000
|
||||||
|
1.3.6.1.2.1.17.2.15.1.9.3|4x|0000
|
||||||
|
1.3.6.1.2.1.17.2.15.1.9.4|4x|0000
|
||||||
|
1.3.6.1.2.1.17.2.15.1.9.5|4x|0000
|
||||||
|
1.3.6.1.2.1.17.7.1.2.2.1.2.0.204.45.224.101.229.7|2|0
|
||||||
|
1.3.6.1.2.1.17.7.1.2.2.1.2.0.206.45.224.101.229.12|2|3
|
||||||
|
1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.12.41.147.7.241|2|1
|
||||||
|
1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.80.86.85.112.193|2|1
|
||||||
|
1.3.6.1.2.1.17.7.1.2.2.1.2.1.192.6.195.161.63.70|2|1
|
||||||
|
1.3.6.1.2.1.17.7.1.2.2.1.2.1.204.45.224.101.229.7|2|0
|
||||||
|
1.3.6.1.2.1.17.7.1.2.2.1.2.2.0.12.41.147.7.251|2|1
|
||||||
|
1.3.6.1.2.1.17.7.1.2.2.1.2.2.0.12.41.193.1.103|2|1
|
||||||
|
1.3.6.1.2.1.17.7.1.2.2.1.2.2.18.16.49.56.38.81|2|1
|
||||||
|
1.3.6.1.2.1.17.7.1.2.2.1.2.2.204.45.224.101.229.7|2|0
|
||||||
|
1.3.6.1.2.1.17.7.1.2.2.1.2.100.0.12.41.147.7.5|2|1
|
||||||
|
1.3.6.1.2.1.17.7.1.2.2.1.2.100.92.186.239.135.210.123|2|3
|
||||||
|
1.3.6.1.2.1.17.7.1.2.2.1.2.100.204.45.224.101.229.7|2|0
|
||||||
|
1.3.6.1.2.1.17.7.1.2.2.1.2.100.206.45.224.101.229.12|2|3
|
||||||
|
1.3.6.1.2.1.17.7.1.2.2.1.2.200.0.12.41.147.7.15|2|1
|
||||||
|
1.3.6.1.2.1.17.7.1.2.2.1.2.200.0.12.41.193.1.113|2|1
|
||||||
|
1.3.6.1.2.1.17.7.1.2.2.1.2.200.160.206.200.228.65.138|2|1
|
||||||
|
1.3.6.1.2.1.17.7.1.2.2.1.2.200.204.45.224.101.229.7|2|0
|
||||||
|
1.3.6.1.2.1.17.7.1.2.2.1.2.254.0.12.41.147.7.25|2|1
|
||||||
|
1.3.6.1.2.1.17.7.1.2.2.1.2.254.0.80.86.96.106.240|2|1
|
||||||
|
1.3.6.1.2.1.17.7.1.2.2.1.2.254.14.1.1.0.2.83|2|1
|
||||||
|
1.3.6.1.2.1.17.7.1.2.2.1.2.254.14.254.1.0.1.1|2|1
|
||||||
|
1.3.6.1.2.1.17.7.1.2.2.1.2.254.204.45.224.101.229.7|2|0
|
||||||
|
1.3.6.1.2.1.17.7.1.2.2.1.2.254.232.40.193.184.211.144|2|1
|
||||||
|
1.3.6.1.2.1.17.7.1.4.5.1.1.1|66|1
|
||||||
|
1.3.6.1.2.1.17.7.1.4.5.1.1.2|66|2
|
||||||
|
1.3.6.1.2.1.17.7.1.4.5.1.1.3|66|100
|
||||||
|
1.3.6.1.2.1.17.7.1.4.5.1.1.4|66|200
|
||||||
|
1.3.6.1.2.1.17.7.1.4.5.1.1.5|66|200
|
||||||
|
1.3.6.1.2.1.25.1.1.0|67|70170100
|
||||||
|
1.3.6.1.2.1.25.2.2.0|2|131072
|
||||||
|
1.3.6.1.2.1.25.2.3.1.1.65536|2|65536
|
||||||
|
1.3.6.1.2.1.25.2.3.1.1.131072|2|131072
|
||||||
|
1.3.6.1.2.1.25.2.3.1.2.65536|6|1.3.6.1.2.1.25.2.1.2
|
||||||
|
1.3.6.1.2.1.25.2.3.1.2.131072|6|1.3.6.1.2.1.25.2.1.4
|
||||||
|
1.3.6.1.2.1.25.2.3.1.3.65536|4|main memory
|
||||||
|
1.3.6.1.2.1.25.2.3.1.3.131072|4|system disk
|
||||||
|
1.3.6.1.2.1.25.2.3.1.4.65536|2|1024
|
||||||
|
1.3.6.1.2.1.25.2.3.1.4.131072|2|1024
|
||||||
|
1.3.6.1.2.1.25.2.3.1.5.65536|2|131072
|
||||||
|
1.3.6.1.2.1.25.2.3.1.5.131072|2|65536
|
||||||
|
1.3.6.1.2.1.25.2.3.1.6.65536|2|51376
|
||||||
|
1.3.6.1.2.1.25.2.3.1.6.131072|2|17600
|
||||||
|
1.3.6.1.2.1.25.2.3.1.7.65536|65|0
|
||||||
|
1.3.6.1.2.1.25.2.3.1.7.131072|65|0
|
||||||
|
1.3.6.1.2.1.25.3.2.1.1.1|2|1
|
||||||
|
1.3.6.1.2.1.25.3.2.1.2.1|6|1.3.6.1.2.1.25.3.1.3
|
||||||
|
1.3.6.1.2.1.25.3.2.1.3.1|4|
|
||||||
|
1.3.6.1.2.1.25.3.2.1.4.1|6|0.0
|
||||||
|
1.3.6.1.2.1.25.3.2.1.5.1|2|2
|
||||||
|
1.3.6.1.2.1.25.3.2.1.6.1|65|0
|
||||||
|
1.3.6.1.2.1.25.3.3.1.1.1|6|0.0
|
||||||
|
1.3.6.1.2.1.25.3.3.1.2.1|2|9
|
||||||
|
1.3.6.1.2.1.31.1.1.1.1.1|4|ether1-trunk
|
||||||
|
1.3.6.1.2.1.31.1.1.1.1.2|4|ether2-test
|
||||||
|
1.3.6.1.2.1.31.1.1.1.1.3|4|ether3-test
|
||||||
|
1.3.6.1.2.1.31.1.1.1.1.4|4|ether4-test
|
||||||
|
1.3.6.1.2.1.31.1.1.1.1.5|4|ether5-ac200
|
||||||
|
1.3.6.1.2.1.31.1.1.1.1.6|4|wlan2
|
||||||
|
1.3.6.1.2.1.31.1.1.1.1.10|4|BR-Switch
|
||||||
|
1.3.6.1.2.1.31.1.1.1.1.11|4|vlan254
|
||||||
|
1.3.6.1.2.1.31.1.1.1.1.13|4|wlan100
|
||||||
|
1.3.6.1.2.1.31.1.1.1.1.15|4|wlan200
|
||||||
|
1.3.6.1.2.1.31.1.1.1.1.16|4|vlan22
|
||||||
|
1.3.6.1.2.1.31.1.1.1.1.17|4|vlan33
|
||||||
|
1.3.6.1.2.1.31.1.1.1.1.18|4|vlan44
|
||||||
|
1.3.6.1.2.1.31.1.1.1.1.19|4|vlan444
|
||||||
|
1.3.6.1.2.1.31.1.1.1.2.1|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.2.2|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.2.3|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.2.4|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.2.5|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.2.6|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.2.10|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.2.11|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.2.13|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.2.15|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.2.16|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.2.17|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.2.18|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.2.19|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.3.1|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.3.2|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.3.3|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.3.4|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.3.5|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.3.6|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.3.10|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.3.11|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.3.13|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.3.15|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.3.16|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.3.17|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.3.18|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.3.19|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.4.1|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.4.2|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.4.3|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.4.4|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.4.5|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.4.6|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.4.10|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.4.11|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.4.13|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.4.15|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.4.16|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.4.17|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.4.18|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.4.19|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.5.1|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.5.2|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.5.3|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.5.4|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.5.5|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.5.6|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.5.10|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.5.11|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.5.13|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.5.15|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.5.16|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.5.17|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.5.18|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.5.19|65|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.6.1|70|6724263140
|
||||||
|
1.3.6.1.2.1.31.1.1.1.6.2|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.6.3|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.6.4|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.6.5|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.6.6|70|257525820
|
||||||
|
1.3.6.1.2.1.31.1.1.1.6.10|70|378290710
|
||||||
|
1.3.6.1.2.1.31.1.1.1.6.11|70|184024317
|
||||||
|
1.3.6.1.2.1.31.1.1.1.6.13|70|7464675
|
||||||
|
1.3.6.1.2.1.31.1.1.1.6.15|70|192861957
|
||||||
|
1.3.6.1.2.1.31.1.1.1.6.16|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.6.17|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.6.18|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.6.19|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.7.1|70|8130019
|
||||||
|
1.3.6.1.2.1.31.1.1.1.7.2|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.7.3|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.7.4|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.7.5|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.7.6|70|1407301
|
||||||
|
1.3.6.1.2.1.31.1.1.1.7.10|70|2782480
|
||||||
|
1.3.6.1.2.1.31.1.1.1.7.11|70|2005999
|
||||||
|
1.3.6.1.2.1.31.1.1.1.7.13|70|33777
|
||||||
|
1.3.6.1.2.1.31.1.1.1.7.15|70|1455870
|
||||||
|
1.3.6.1.2.1.31.1.1.1.7.16|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.7.17|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.7.18|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.7.19|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.8.1|70|956207
|
||||||
|
1.3.6.1.2.1.31.1.1.1.8.2|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.8.3|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.8.4|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.8.5|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.8.6|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.8.10|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.8.11|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.8.13|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.8.15|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.8.16|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.8.17|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.8.18|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.8.19|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.9.1|70|359500
|
||||||
|
1.3.6.1.2.1.31.1.1.1.9.2|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.9.3|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.9.4|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.9.5|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.9.6|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.9.10|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.9.11|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.9.13|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.9.15|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.9.16|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.9.17|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.9.18|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.9.19|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.10.1|70|2680614744
|
||||||
|
1.3.6.1.2.1.31.1.1.1.10.2|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.10.3|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.10.4|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.10.5|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.10.6|70|2674750884
|
||||||
|
1.3.6.1.2.1.31.1.1.1.10.10|70|2175795360
|
||||||
|
1.3.6.1.2.1.31.1.1.1.10.11|70|2162674043
|
||||||
|
1.3.6.1.2.1.31.1.1.1.10.13|70|37045504
|
||||||
|
1.3.6.1.2.1.31.1.1.1.10.15|70|3577965789
|
||||||
|
1.3.6.1.2.1.31.1.1.1.10.16|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.10.17|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.10.18|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.10.19|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.11.1|70|5164241
|
||||||
|
1.3.6.1.2.1.31.1.1.1.11.2|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.11.3|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.11.4|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.11.5|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.11.6|70|2547322
|
||||||
|
1.3.6.1.2.1.31.1.1.1.11.10|70|2236390
|
||||||
|
1.3.6.1.2.1.31.1.1.1.11.11|70|2213931
|
||||||
|
1.3.6.1.2.1.31.1.1.1.11.13|70|449477
|
||||||
|
1.3.6.1.2.1.31.1.1.1.11.15|70|2849249
|
||||||
|
1.3.6.1.2.1.31.1.1.1.11.16|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.11.17|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.11.18|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.11.19|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.12.1|70|75537
|
||||||
|
1.3.6.1.2.1.31.1.1.1.12.2|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.12.3|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.12.4|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.12.5|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.12.6|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.12.10|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.12.11|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.12.13|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.12.15|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.12.16|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.12.17|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.12.18|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.12.19|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.13.1|70|43169
|
||||||
|
1.3.6.1.2.1.31.1.1.1.13.2|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.13.3|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.13.4|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.13.5|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.13.6|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.13.10|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.13.11|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.13.13|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.13.15|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.13.16|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.13.17|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.13.18|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.13.19|70|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.15.1|66|1000
|
||||||
|
1.3.6.1.2.1.31.1.1.1.15.2|66|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.15.3|66|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.15.4|66|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.15.5|66|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.15.6|66|50
|
||||||
|
1.3.6.1.2.1.31.1.1.1.15.10|66|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.15.11|66|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.15.13|66|50
|
||||||
|
1.3.6.1.2.1.31.1.1.1.15.15|66|50
|
||||||
|
1.3.6.1.2.1.31.1.1.1.15.16|66|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.15.17|66|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.15.18|66|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.15.19|66|0
|
||||||
|
1.3.6.1.2.1.31.1.1.1.18.1|4|
|
||||||
|
1.3.6.1.2.1.31.1.1.1.18.2|4|
|
||||||
|
1.3.6.1.2.1.31.1.1.1.18.3|4|
|
||||||
|
1.3.6.1.2.1.31.1.1.1.18.4|4|
|
||||||
|
1.3.6.1.2.1.31.1.1.1.18.5|4|
|
||||||
|
1.3.6.1.2.1.31.1.1.1.18.6|4|
|
||||||
|
1.3.6.1.2.1.31.1.1.1.18.10|4|
|
||||||
|
1.3.6.1.2.1.31.1.1.1.18.11|4|
|
||||||
|
1.3.6.1.2.1.31.1.1.1.18.13|4|
|
||||||
|
1.3.6.1.2.1.31.1.1.1.18.15|4|
|
||||||
|
1.3.6.1.2.1.31.1.1.1.18.16|4|
|
||||||
|
1.3.6.1.2.1.31.1.1.1.18.17|4|
|
||||||
|
1.3.6.1.2.1.31.1.1.1.18.18|4|
|
||||||
|
1.3.6.1.2.1.31.1.1.1.18.19|4|
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.1.65536|2|65536
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.1.262145|2|262145
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.2.65536|4|RouterOS 7.1rc4 (testing) on RB951G-2HnD
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.2.262145|4|Linux 5.6.3 ehci_hcd RB400 EHCI
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.3.65536|6|0.0
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.3.262145|6|0.0
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.4.65536|2|0
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.4.262145|2|65536
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.5.65536|2|3
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.5.262145|2|2
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.6.65536|2|-1
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.6.262145|2|-1
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.7.65536|4|MIPS 74Kc V4.12
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.7.262145|4|1-0
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.8.65536|4|
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.8.262145|4|
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.9.65536|4|
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.9.262145|4|
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.10.65536|4|
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.10.262145|4|
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.11.65536|4|
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.11.262145|4|rb400_usb
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.12.65536|4|
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.12.262145|4|0x1d6b
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.13.65536|4|
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.13.262145|4|0x0002
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.14.65536|4|
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.14.262145|4|
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.15.65536|4|
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.15.262145|4|
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.16.65536|2|2
|
||||||
|
1.3.6.1.2.1.47.1.1.1.1.16.262145|2|2
|
||||||
|
1.3.6.1.2.1.55.1.8.1.2.10.253.0.0.1.0.1.0.0.0.0.0.0.0.0.1.2|2|64
|
||||||
|
1.3.6.1.2.1.55.1.8.1.2.10.254.128.0.0.0.0.0.0.206.45.224.255.254.101.229.7|2|64
|
||||||
|
1.3.6.1.2.1.55.1.8.1.2.11.253.0.0.1.2.84.0.0.0.0.0.0.0.0.1.2|2|64
|
||||||
|
1.3.6.1.2.1.55.1.8.1.2.11.254.128.0.0.0.0.0.0.206.45.224.255.254.101.229.7|2|64
|
||||||
|
1.3.6.1.2.1.55.1.8.1.3.10.253.0.0.1.0.1.0.0.0.0.0.0.0.0.1.2|2|2
|
||||||
|
1.3.6.1.2.1.55.1.8.1.3.10.254.128.0.0.0.0.0.0.206.45.224.255.254.101.229.7|2|1
|
||||||
|
1.3.6.1.2.1.55.1.8.1.3.11.253.0.0.1.2.84.0.0.0.0.0.0.0.0.1.2|2|2
|
||||||
|
1.3.6.1.2.1.55.1.8.1.3.11.254.128.0.0.0.0.0.0.206.45.224.255.254.101.229.7|2|1
|
||||||
|
1.3.6.1.4.1.9.9.150.1.1.1.0|66|0
|
||||||
|
1.3.6.1.4.1.2021.11.10.0|2|9
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.3.1.2.6|66|0
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.3.1.2.13|66|0
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.3.1.2.15|66|0
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.3.1.3.6|66|0
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.3.1.3.13|66|0
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.3.1.3.15|66|0
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.3.1.4.6|4|ele-guest
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.3.1.4.13|4|ele-prn
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.3.1.4.15|4|ele-lan
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.3.1.5.6|4|
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.3.1.5.13|4|
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.3.1.5.15|4|
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.3.1.6.6|65|0
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.3.1.6.13|65|1
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.3.1.6.15|65|0
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.3.1.7.6|2|2472
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.3.1.7.13|2|0
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.3.1.7.15|2|0
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.3.1.8.6|4|2472/20-eC/gn
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.3.1.8.13|4|
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.3.1.8.15|4|
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.3.1.9.6|2|-109
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.3.1.9.13|2|0
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.3.1.9.15|2|0
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.3.1.10.6|65|92
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.3.1.10.13|65|0
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.3.1.10.15|65|0
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.3.1.11.6|65|0
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.3.1.11.13|65|1
|
||||||
|
1.3.6.1.4.1.14988.1.1.1.3.1.11.15|65|0
|
||||||
|
1.3.6.1.4.1.14988.1.1.4.3.0|2|4
|
||||||
|
1.3.6.1.4.1.14988.1.1.4.4.0|4|7.1rc4
|
||||||
|
1.3.6.1.4.1.14988.1.1.6.1.0|66|0
|
||||||
|
1.3.6.1.4.1.14988.1.1.7.3.0|4|8A7008F7F185
|
||||||
|
1.3.6.1.4.1.14988.1.1.8.1.1.2.1|4|LNMS_vlans
|
||||||
|
1.3.6.1.4.1.14988.1.1.8.1.1.2.4|4|macaut
|
||||||
|
1.3.6.1.4.1.14988.1.1.11.1.1.8.6|2|1
|
||||||
|
1.3.6.1.4.1.14988.1.1.11.1.1.8.15|2|1
|
||||||
|
1.3.6.1.4.1.14988.1.1.11.1.1.8.21|2|11
|
||||||
|
1.3.6.1.4.1.14988.1.1.11.1.1.8.23|2|11
|
||||||
|
1.3.6.1.4.1.14988.1.1.11.1.1.8.28|2|11
|
||||||
|
1.3.6.1.4.1.14988.1.1.14.1.1.2.1|4|ether1-trunk
|
||||||
|
1.3.6.1.4.1.14988.1.1.14.1.1.2.2|4|ether2-test
|
||||||
|
1.3.6.1.4.1.14988.1.1.14.1.1.2.3|4|ether3-test
|
||||||
|
1.3.6.1.4.1.14988.1.1.14.1.1.2.4|4|ether4-test
|
||||||
|
1.3.6.1.4.1.14988.1.1.14.1.1.2.5|4|ether5-ac200
|
||||||
|
1.3.6.1.4.1.14988.1.1.14.1.1.2.6|4|wlan2
|
||||||
|
1.3.6.1.4.1.14988.1.1.14.1.1.2.10|4|BR-Switch
|
||||||
|
1.3.6.1.4.1.14988.1.1.14.1.1.2.11|4|vlan254
|
||||||
|
1.3.6.1.4.1.14988.1.1.14.1.1.2.13|4|wlan100
|
||||||
|
1.3.6.1.4.1.14988.1.1.14.1.1.2.15|4|wlan200
|
||||||
|
1.3.6.1.4.1.14988.1.1.14.1.1.2.16|4|vlan22
|
||||||
|
1.3.6.1.4.1.14988.1.1.14.1.1.2.17|4|vlan33
|
||||||
|
1.3.6.1.4.1.14988.1.1.14.1.1.2.18|4|vlan44
|
||||||
|
1.3.6.1.4.1.14988.1.1.14.1.1.2.19|4|vlan444
|
||||||
|
1.3.6.1.4.1.14988.1.1.18.1.1.2.1|4x|542c3235342c42522d5377697463680a542c3235342c6574686572312d7472756e6b0d0a542c322c42522d5377697463680d0a542c322c6574686572312d7472756e6b0d0a542c3130302c42522d5377697463680d0a542c3130302c6574686572312d7472756e6b0d0a542c3230302c42522d5377697463680d0a542c3230302c6574686572312d7472756e6b0d0a542c32322c6574686572322d746573740d0a542c33332c6574686572332d746573740d0a542c34342c6574686572342d746573740d0a542c3434342c6574686572342d746573740d0a552c322c776c616e320d0a552c3130302c776c616e3130300d0a552c3230302c6574686572352d61633230300d0a552c3230302c776c616e3230300d0a552c312c42522d5377697463680d0a552c312c6574686572312d7472756e6b
|
Reference in New Issue
Block a user