mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Added Moxa switching ifAlias/portName mapping (#14633)
* WIP: Added Moxa switching ifAlias/portName mapping * style fixes
This commit is contained in:
@@ -42,6 +42,11 @@ if ($device['os'] == 'luminato') {
|
||||
require base_path('includes/discovery/ports/luminato.inc.php');
|
||||
}
|
||||
|
||||
//Moxa Etherdevice portName mapping
|
||||
if ($device['os'] == 'moxa-etherdevice') {
|
||||
require base_path('includes/discovery/ports/moxa-etherdevice.inc.php');
|
||||
}
|
||||
|
||||
// End Building SNMP Cache Array
|
||||
d_echo($port_stats);
|
||||
|
||||
|
22
includes/discovery/ports/moxa-etherdevice.inc.php
Normal file
22
includes/discovery/ports/moxa-etherdevice.inc.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
/*
|
||||
* 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. Please see LICENSE.txt at the top level of
|
||||
* the source code distribution for details.
|
||||
* @author rhinoau
|
||||
*/
|
||||
|
||||
//portName OID is based on each device model/MIB
|
||||
$oid = $device['sysObjectID'] . '.1.9.1.1.7';
|
||||
|
||||
$port_names = snmpwalk_cache_oid($device, $oid, $port_names);
|
||||
|
||||
foreach ($port_names as $oid => $value) {
|
||||
if (! empty($value['iso'])) {
|
||||
// determine index
|
||||
$index = end(explode('.', $oid));
|
||||
$port_stats[$index]['ifAlias'] = $value['iso'];
|
||||
}
|
||||
}
|
22
includes/polling/ports/os/moxa-etherdevice.inc.php
Normal file
22
includes/polling/ports/os/moxa-etherdevice.inc.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
/*
|
||||
* 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. Please see LICENSE.txt at the top level of
|
||||
* the source code distribution for details.
|
||||
* @author rhinoau
|
||||
*/
|
||||
|
||||
//portName OID is based on each device model/MIB
|
||||
$oid = $device['sysObjectID'] . '.1.9.1.1.7';
|
||||
|
||||
$port_names = snmpwalk_cache_oid($device, $oid, $port_names);
|
||||
|
||||
foreach ($port_names as $oid => $value) {
|
||||
if (! empty($value['iso'])) {
|
||||
// determine index
|
||||
$index = end(explode('.', $oid));
|
||||
$port_stats[$index]['ifAlias'] = $value['iso'];
|
||||
}
|
||||
}
|
@@ -44,7 +44,7 @@
|
||||
"ifDuplex": null,
|
||||
"ifMtu": null,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ethernet Port G1",
|
||||
"ifAlias": "port_G1_name",
|
||||
"ifPhysAddress": null,
|
||||
"ifHardType": null,
|
||||
"ifLastChange": 0,
|
||||
@@ -149,7 +149,7 @@
|
||||
"ifDuplex": null,
|
||||
"ifMtu": null,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ethernet Port G2",
|
||||
"ifAlias": "port_G2_name",
|
||||
"ifPhysAddress": null,
|
||||
"ifHardType": null,
|
||||
"ifLastChange": 0,
|
||||
@@ -254,7 +254,7 @@
|
||||
"ifDuplex": null,
|
||||
"ifMtu": null,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ethernet Port G3",
|
||||
"ifAlias": "port_G3_name",
|
||||
"ifPhysAddress": null,
|
||||
"ifHardType": null,
|
||||
"ifLastChange": 0,
|
||||
@@ -359,7 +359,7 @@
|
||||
"ifDuplex": null,
|
||||
"ifMtu": null,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ethernet Port G4",
|
||||
"ifAlias": "port_G4_name",
|
||||
"ifPhysAddress": null,
|
||||
"ifHardType": null,
|
||||
"ifLastChange": 0,
|
||||
@@ -1938,7 +1938,7 @@
|
||||
"ifDuplex": "unknown",
|
||||
"ifMtu": 1536,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ethernet Port G1",
|
||||
"ifAlias": "port_G1_name",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifHardType": null,
|
||||
"ifLastChange": 80587,
|
||||
@@ -2043,7 +2043,7 @@
|
||||
"ifDuplex": "unknown",
|
||||
"ifMtu": 1536,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ethernet Port G2",
|
||||
"ifAlias": "port_G2_name",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifHardType": null,
|
||||
"ifLastChange": 0,
|
||||
@@ -2148,7 +2148,7 @@
|
||||
"ifDuplex": "unknown",
|
||||
"ifMtu": 1536,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ethernet Port G3",
|
||||
"ifAlias": "port_G3_name",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifHardType": null,
|
||||
"ifLastChange": 0,
|
||||
@@ -2253,7 +2253,7 @@
|
||||
"ifDuplex": "unknown",
|
||||
"ifMtu": 1536,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ethernet Port G4",
|
||||
"ifAlias": "port_G4_name",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifHardType": null,
|
||||
"ifLastChange": 0,
|
||||
@@ -3619,7 +3619,7 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Management Port of EtherDevice Server",
|
||||
"ifPhysAddress": "0090e8af13a8",
|
||||
"ifPhysAddress": "0090e8af1234",
|
||||
"ifHardType": null,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "",
|
||||
@@ -3906,6 +3906,31 @@
|
||||
"rrd_type": "GAUGE",
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "dbm",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.8691.7.71.1.10.11.1.7.13",
|
||||
"sensor_index": "fiberTxPower.13",
|
||||
"sensor_type": "moxa-etherdevice",
|
||||
"sensor_descr": "Ethernet Port G13 SFP module Transmit Power",
|
||||
"group": null,
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": -5.9,
|
||||
"sensor_limit": -3,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": -9,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"rrd_type": "GAUGE",
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "dbm",
|
||||
@@ -4006,6 +4031,31 @@
|
||||
"rrd_type": "GAUGE",
|
||||
"state_name": "powerInputStatus"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "temperature",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.8691.7.71.1.10.11.1.5.13",
|
||||
"sensor_index": "fiberTemperature.13",
|
||||
"sensor_type": "moxa-etherdevice",
|
||||
"sensor_descr": "Ethernet Port G13 SFP module temperature",
|
||||
"group": null,
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": 43.3,
|
||||
"sensor_limit": 85,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": -40,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"rrd_type": "GAUGE",
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "temperature",
|
||||
@@ -4056,6 +4106,31 @@
|
||||
"rrd_type": "GAUGE",
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "voltage",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.8691.7.71.1.10.11.1.4.13",
|
||||
"sensor_index": "fiberVoltage.13",
|
||||
"sensor_type": "moxa-etherdevice",
|
||||
"sensor_descr": "Ethernet Port G13 SFP module Supply Voltage",
|
||||
"group": null,
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": 3.4,
|
||||
"sensor_limit": 3.47,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": 3.13,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"rrd_type": "GAUGE",
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "voltage",
|
||||
@@ -4135,6 +4210,41 @@
|
||||
"vlan_name": "VLAN 1",
|
||||
"vlan_type": null,
|
||||
"vlan_mtu": null
|
||||
},
|
||||
{
|
||||
"vlan_vlan": 96,
|
||||
"vlan_domain": 1,
|
||||
"vlan_name": "VLAN 96",
|
||||
"vlan_type": null,
|
||||
"vlan_mtu": null
|
||||
},
|
||||
{
|
||||
"vlan_vlan": 99,
|
||||
"vlan_domain": 1,
|
||||
"vlan_name": "VLAN 99",
|
||||
"vlan_type": null,
|
||||
"vlan_mtu": null
|
||||
},
|
||||
{
|
||||
"vlan_vlan": 416,
|
||||
"vlan_domain": 1,
|
||||
"vlan_name": "VLAN 416",
|
||||
"vlan_type": null,
|
||||
"vlan_mtu": null
|
||||
},
|
||||
{
|
||||
"vlan_vlan": 516,
|
||||
"vlan_domain": 1,
|
||||
"vlan_name": "VLAN 516",
|
||||
"vlan_type": null,
|
||||
"vlan_mtu": null
|
||||
},
|
||||
{
|
||||
"vlan_vlan": 939,
|
||||
"vlan_domain": 1,
|
||||
"vlan_name": "VLAN 939",
|
||||
"vlan_type": null,
|
||||
"vlan_mtu": null
|
||||
}
|
||||
],
|
||||
"ports_vlans": [
|
||||
|
@@ -44,7 +44,7 @@
|
||||
"ifDuplex": null,
|
||||
"ifMtu": null,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ethernet Port 1",
|
||||
"ifAlias": "prt_1_name",
|
||||
"ifPhysAddress": null,
|
||||
"ifHardType": null,
|
||||
"ifLastChange": 0,
|
||||
@@ -149,7 +149,7 @@
|
||||
"ifDuplex": null,
|
||||
"ifMtu": null,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ethernet Port 2",
|
||||
"ifAlias": "prt_2_name",
|
||||
"ifPhysAddress": null,
|
||||
"ifHardType": null,
|
||||
"ifLastChange": 0,
|
||||
@@ -464,7 +464,7 @@
|
||||
"ifDuplex": null,
|
||||
"ifMtu": null,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ethernet Port G1",
|
||||
"ifAlias": "pr1_G1_name",
|
||||
"ifPhysAddress": null,
|
||||
"ifHardType": null,
|
||||
"ifLastChange": 0,
|
||||
@@ -888,7 +888,7 @@
|
||||
"ifDuplex": "unknown",
|
||||
"ifMtu": 9712,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ethernet Port 1",
|
||||
"ifAlias": "prt_1_name",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifHardType": null,
|
||||
"ifLastChange": 3650288,
|
||||
@@ -993,7 +993,7 @@
|
||||
"ifDuplex": "unknown",
|
||||
"ifMtu": 9712,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ethernet Port 2",
|
||||
"ifAlias": "prt_2_name",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifHardType": null,
|
||||
"ifLastChange": 0,
|
||||
@@ -1308,7 +1308,7 @@
|
||||
"ifDuplex": "unknown",
|
||||
"ifMtu": 9712,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "Ethernet Port G1",
|
||||
"ifAlias": "pr1_G1_name",
|
||||
"ifPhysAddress": "000000000000",
|
||||
"ifHardType": null,
|
||||
"ifLastChange": 7496441,
|
||||
@@ -1831,6 +1831,31 @@
|
||||
"rrd_type": "GAUGE",
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "dbm",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.8691.7.162.1.10.11.1.7.6",
|
||||
"sensor_index": "fiberTxPower.6",
|
||||
"sensor_type": "moxa-etherdevice",
|
||||
"sensor_descr": "Ethernet Port G2 SFP module Transmit Power",
|
||||
"group": null,
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": -5.8,
|
||||
"sensor_limit": -3,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": -9,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"rrd_type": "GAUGE",
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "power",
|
||||
@@ -2006,6 +2031,31 @@
|
||||
"rrd_type": "GAUGE",
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "temperature",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.8691.7.162.1.10.11.1.5.6",
|
||||
"sensor_index": "fiberTemperature.6",
|
||||
"sensor_type": "moxa-etherdevice",
|
||||
"sensor_descr": "Ethernet Port G2 SFP module temperature",
|
||||
"group": null,
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": 40.1,
|
||||
"sensor_limit": 85,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": -40,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"rrd_type": "GAUGE",
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "voltage",
|
||||
@@ -2030,6 +2080,31 @@
|
||||
"user_func": null,
|
||||
"rrd_type": "GAUGE",
|
||||
"state_name": null
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "voltage",
|
||||
"poller_type": "snmp",
|
||||
"sensor_oid": ".1.3.6.1.4.1.8691.7.162.1.10.11.1.4.6",
|
||||
"sensor_index": "fiberVoltage.6",
|
||||
"sensor_type": "moxa-etherdevice",
|
||||
"sensor_descr": "Ethernet Port G2 SFP module Supply Voltage",
|
||||
"group": null,
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": 3.4,
|
||||
"sensor_limit": 3.47,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": 3.13,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_prev": null,
|
||||
"user_func": null,
|
||||
"rrd_type": "GAUGE",
|
||||
"state_name": null
|
||||
}
|
||||
],
|
||||
"state_indexes": [
|
||||
|
@@ -15,14 +15,23 @@
|
||||
1.0.8802.1.1.2.1.3.7.1.3.15|4|15
|
||||
1.0.8802.1.1.2.1.3.7.1.3.16|4|16
|
||||
1.0.8802.1.1.2.1.4.1.1.4.85.1.1|2|4
|
||||
1.0.8802.1.1.2.1.4.1.1.4.105.1.1|2|4
|
||||
1.0.8802.1.1.2.1.4.1.1.5.85.1.1|4x|A0CEC8CE1234
|
||||
1.0.8802.1.1.2.1.4.1.1.5.105.1.1|4x|A0CEC8CE5678
|
||||
1.0.8802.1.1.2.1.4.1.1.6.85.1.1|2|3
|
||||
1.0.8802.1.1.2.1.4.1.1.6.105.1.1|2|3
|
||||
1.0.8802.1.1.2.1.4.1.1.7.85.1.1|4x|A0CEC8CE1234
|
||||
1.0.8802.1.1.2.1.4.1.1.7.105.1.1|4x|A0CEC8CE5678
|
||||
1.0.8802.1.1.2.1.4.1.1.8.85.1.1|4|
|
||||
1.0.8802.1.1.2.1.4.1.1.8.105.1.1|4|
|
||||
1.0.8802.1.1.2.1.4.1.1.9.85.1.1|4|
|
||||
1.0.8802.1.1.2.1.4.1.1.9.105.1.1|4|
|
||||
1.0.8802.1.1.2.1.4.1.1.10.85.1.1|4|
|
||||
1.0.8802.1.1.2.1.4.1.1.10.105.1.1|4|
|
||||
1.0.8802.1.1.2.1.4.1.1.11.85.1.1|4|00
|
||||
1.0.8802.1.1.2.1.4.1.1.11.105.1.1|4|00
|
||||
1.0.8802.1.1.2.1.4.1.1.12.85.1.1|4|00
|
||||
1.0.8802.1.1.2.1.4.1.1.12.105.1.1|4|00
|
||||
1.3.6.1.2.1.1.1.0|4|EDS-G516E
|
||||
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.8691.7.71
|
||||
1.3.6.1.2.1.1.3.0|67|100344
|
||||
@@ -99,7 +108,7 @@
|
||||
1.3.6.1.2.1.2.2.1.6.14|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.15|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.16|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.129|4x|0090E8AF13A8
|
||||
1.3.6.1.2.1.2.2.1.6.129|4x|0090E8AF1234
|
||||
1.3.6.1.2.1.2.2.1.6.130|4x|000000000000
|
||||
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
|
||||
@@ -638,6 +647,11 @@
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.5.10489.1|4x|FFFF
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.5.10495.1|4x|FFFF
|
||||
1.3.6.1.2.1.17.7.1.4.3.1.1.1|4|
|
||||
1.3.6.1.2.1.17.7.1.4.3.1.1.96|4|
|
||||
1.3.6.1.2.1.17.7.1.4.3.1.1.99|4|
|
||||
1.3.6.1.2.1.17.7.1.4.3.1.1.416|4|
|
||||
1.3.6.1.2.1.17.7.1.4.3.1.1.516|4|
|
||||
1.3.6.1.2.1.17.7.1.4.3.1.1.939|4|
|
||||
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|1
|
||||
1.3.6.1.2.1.17.7.1.4.5.1.1.3|66|1
|
||||
@@ -896,14 +910,34 @@
|
||||
1.3.6.1.2.1.31.1.1.1.17.16|2|1
|
||||
1.3.6.1.4.1.8691.7.71.1.2.0|4|EDS-G516E-T
|
||||
1.3.6.1.4.1.8691.7.71.1.4.0|4|V6.2 build 20080519
|
||||
1.3.6.1.4.1.8691.7.71.1.9.1.1.7.1|4|port_G1_name
|
||||
1.3.6.1.4.1.8691.7.71.1.9.1.1.7.2|4|port_G2_name
|
||||
1.3.6.1.4.1.8691.7.71.1.9.1.1.7.3|4|port_G3_name
|
||||
1.3.6.1.4.1.8691.7.71.1.9.1.1.7.4|4|port_G4_name
|
||||
1.3.6.1.4.1.8691.7.71.1.9.1.1.7.5|4|
|
||||
1.3.6.1.4.1.8691.7.71.1.9.1.1.7.6|4|
|
||||
1.3.6.1.4.1.8691.7.71.1.9.1.1.7.7|4|
|
||||
1.3.6.1.4.1.8691.7.71.1.9.1.1.7.8|4|
|
||||
1.3.6.1.4.1.8691.7.71.1.9.1.1.7.9|4|
|
||||
1.3.6.1.4.1.8691.7.71.1.9.1.1.7.10|4|
|
||||
1.3.6.1.4.1.8691.7.71.1.9.1.1.7.11|4|
|
||||
1.3.6.1.4.1.8691.7.71.1.9.1.1.7.12|4|
|
||||
1.3.6.1.4.1.8691.7.71.1.9.1.1.7.13|4|
|
||||
1.3.6.1.4.1.8691.7.71.1.9.1.1.7.14|4|
|
||||
1.3.6.1.4.1.8691.7.71.1.9.1.1.7.15|4|
|
||||
1.3.6.1.4.1.8691.7.71.1.9.1.1.7.16|4|
|
||||
1.3.6.1.4.1.8691.7.71.1.10.1.0|2|1
|
||||
1.3.6.1.4.1.8691.7.71.1.10.2.0|2|0
|
||||
1.3.6.1.4.1.8691.7.71.1.10.11.1.4.13|4|3.4
|
||||
1.3.6.1.4.1.8691.7.71.1.10.11.1.4.15|4|3.4
|
||||
1.3.6.1.4.1.8691.7.71.1.10.11.1.4.16|4|3.4
|
||||
1.3.6.1.4.1.8691.7.71.1.10.11.1.5.13|4|43.3
|
||||
1.3.6.1.4.1.8691.7.71.1.10.11.1.5.15|4|39.4
|
||||
1.3.6.1.4.1.8691.7.71.1.10.11.1.5.16|4|38.7
|
||||
1.3.6.1.4.1.8691.7.71.1.10.11.1.7.13|4|-5.9
|
||||
1.3.6.1.4.1.8691.7.71.1.10.11.1.7.15|4|-5.2
|
||||
1.3.6.1.4.1.8691.7.71.1.10.11.1.7.16|4|-5.9
|
||||
1.3.6.1.4.1.8691.7.71.1.10.11.1.9.13|4|--
|
||||
1.3.6.1.4.1.8691.7.71.1.10.11.1.9.15|4|-5.7
|
||||
1.3.6.1.4.1.8691.7.71.1.10.11.1.9.16|4|--
|
||||
1.3.6.1.4.1.8691.7.71.1.54.0|2|17
|
||||
|
@@ -137,6 +137,7 @@
|
||||
1.3.6.1.2.1.4.20.1.3.127.0.0.1|64|255.0.0.0
|
||||
1.3.6.1.2.1.4.20.1.3.192.168.127.253|64|255.255.255.0
|
||||
1.3.6.1.2.1.4.22.1.2.1.192.168.127.2|4x|A0CEC8CE1234
|
||||
1.3.6.1.2.1.4.22.1.2.1.192.168.127.250|4x|A0CEC8CE22B8
|
||||
1.3.6.1.2.1.5.1.0|65|464
|
||||
1.3.6.1.2.1.5.2.0|65|0
|
||||
1.3.6.1.2.1.5.3.0|65|0
|
||||
@@ -298,6 +299,15 @@
|
||||
1.3.6.1.2.1.17.2.15.1.10.6|2|0
|
||||
1.3.6.1.2.1.17.7.1.1.1.0|2|1
|
||||
1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.144.232.168.18.150|2|4
|
||||
1.3.6.1.2.1.17.7.1.2.2.1.2.1.0.144.232.170.94.158|2|10
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.3.3822.1|66|1
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.3.3831.1|66|1
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.3.3840.1|66|1
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.3.3848.1|66|1
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.3.3857.1|66|1
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.3.3866.1|66|1
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.3.3869.1|66|1
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.3.3881.1|66|1
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.3.5327.1|66|1
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.3.5336.1|66|1
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.3.5345.1|66|1
|
||||
@@ -306,6 +316,14 @@
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.3.5371.1|66|1
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.3.5374.1|66|1
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.3.5387.1|66|1
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.4.3822.1|4x|80
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.4.3831.1|4x|C0
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.4.3840.1|4x|E0
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.4.3848.1|4x|F0
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.4.3857.1|4x|F8
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.4.3866.1|4x|FC
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.4.3869.1|4x|FC
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.4.3881.1|4x|FC
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.4.5327.1|4x|80
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.4.5336.1|4x|C0
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.4.5345.1|4x|E0
|
||||
@@ -314,6 +332,14 @@
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.4.5371.1|4x|FC
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.4.5374.1|4x|FC
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.4.5387.1|4x|FC
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.5.3822.1|4x|80
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.5.3831.1|4x|C0
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.5.3840.1|4x|E0
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.5.3848.1|4x|F0
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.5.3857.1|4x|F8
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.5.3866.1|4x|FC
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.5.3869.1|4x|FC
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.5.3881.1|4x|FC
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.5.5327.1|4x|80
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.5.5336.1|4x|C0
|
||||
1.3.6.1.2.1.17.7.1.4.2.1.5.5345.1|4x|E0
|
||||
@@ -421,12 +447,22 @@
|
||||
1.3.6.1.2.1.31.1.1.1.17.6|2|1
|
||||
1.3.6.1.4.1.8691.7.162.1.2.0|4|EDS-P506E-4PoE-2GTXSFP-T
|
||||
1.3.6.1.4.1.8691.7.162.1.4.0|4|V5.7 build 21071517
|
||||
1.3.6.1.4.1.8691.7.162.1.9.1.1.7.1|4|prt_1_name
|
||||
1.3.6.1.4.1.8691.7.162.1.9.1.1.7.2|4|prt_2_name
|
||||
1.3.6.1.4.1.8691.7.162.1.9.1.1.7.3|4|
|
||||
1.3.6.1.4.1.8691.7.162.1.9.1.1.7.4|4|
|
||||
1.3.6.1.4.1.8691.7.162.1.9.1.1.7.5|4|pr1_G1_name
|
||||
1.3.6.1.4.1.8691.7.162.1.9.1.1.7.6|4|
|
||||
1.3.6.1.4.1.8691.7.162.1.10.1.0|2|0
|
||||
1.3.6.1.4.1.8691.7.162.1.10.2.0|2|1
|
||||
1.3.6.1.4.1.8691.7.162.1.10.11.1.4.5|4|3.4
|
||||
1.3.6.1.4.1.8691.7.162.1.10.11.1.4.6|4|3.4
|
||||
1.3.6.1.4.1.8691.7.162.1.10.11.1.5.5|4|56.2
|
||||
1.3.6.1.4.1.8691.7.162.1.10.11.1.5.6|4|40.1
|
||||
1.3.6.1.4.1.8691.7.162.1.10.11.1.7.5|4|-5.2
|
||||
1.3.6.1.4.1.8691.7.162.1.10.11.1.7.6|4|-5.8
|
||||
1.3.6.1.4.1.8691.7.162.1.10.11.1.9.5|4|-5.4
|
||||
1.3.6.1.4.1.8691.7.162.1.10.11.1.9.6|4|--
|
||||
1.3.6.1.4.1.8691.7.162.1.40.6.1.2.1|2|-1
|
||||
1.3.6.1.4.1.8691.7.162.1.40.6.1.2.2|2|-1
|
||||
1.3.6.1.4.1.8691.7.162.1.40.6.1.2.3|2|-1
|
||||
|
Reference in New Issue
Block a user