mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Added Med(5m) and High(15m) Utilization sensors for Cambium APs (os: pmp) (#9995)
* Added Med(5m) and High(15m) Utilization sensors for Cambium based (os: pmp) APs * update the variants
This commit is contained in:
committed by
Tony Murray
parent
55f4870b91
commit
62113ebde4
@@ -139,31 +139,71 @@ class Pmp extends OS implements
|
||||
*/
|
||||
public function discoverWirelessUtilization()
|
||||
{
|
||||
$downlink = '.1.3.6.1.4.1.161.19.3.1.12.1.1.0'; //WHISP-APS-MIB::frUtlLowTotalDownlinkUtilization
|
||||
$uplink = '.1.3.6.1.4.1.161.19.3.1.12.1.2.0'; //WHISP-APS-MIB::frUtlLowTotalUplinkUtilization
|
||||
$lowdownlink = '.1.3.6.1.4.1.161.19.3.1.12.1.1.0'; // WHISP-APS-MIB::frUtlLowTotalDownlinkUtilization
|
||||
$lowuplink = '.1.3.6.1.4.1.161.19.3.1.12.1.2.0'; // WHISP-APS-MIB::frUtlLowTotalUplinkUtilization
|
||||
$meddownlink = '.1.3.6.1.4.1.161.19.3.1.12.2.1.0'; // WHISP-APS-MIB::frUtlMedTotalDownlinkUtilization
|
||||
$meduplink = '.1.3.6.1.4.1.161.19.3.1.12.2.2.0'; // WHISP-APS-MIB::frUtlMedTotalUplinkUtilization
|
||||
$highdownlink = '.1.3.6.1.4.1.161.19.3.1.12.3.1.0'; // WHISP-APS-MIB::frUtlHighTotalDownlinkUtilization
|
||||
$highuplink = '.1.3.6.1.4.1.161.19.3.1.12.3.2.0'; // WHISP-APS-MIB::frUtlHighTotalUplinkUtilization
|
||||
|
||||
// 450M Specific Utilizations
|
||||
$muSectorDownlink = '.1.3.6.1.4.1.161.19.3.1.12.2.29.0'; //WHISP-APS-MIB::frUtlMedMumimoDownlinkSectorUtilization
|
||||
$muDownlink = '.1.3.6.1.4.1.161.19.3.1.12.2.30.0'; //WHISP-APS-MIB::frUtlMedMumimoDownlinkMumimoUtilization
|
||||
$suDownlink = '.1.3.6.1.4.1.161.19.3.1.12.2.31.0'; //WHISP-APS-MIB::frUtlMedMumimoDownlinkSumimoUtilization
|
||||
$muSectorDownlink = '.1.3.6.1.4.1.161.19.3.1.12.2.29.0'; // WHISP-APS-MIB::frUtlMedMumimoDownlinkSectorUtilization
|
||||
$muDownlink = '.1.3.6.1.4.1.161.19.3.1.12.2.30.0'; // WHISP-APS-MIB::frUtlMedMumimoDownlinkMumimoUtilization
|
||||
$suDownlink = '.1.3.6.1.4.1.161.19.3.1.12.2.31.0'; // WHISP-APS-MIB::frUtlMedMumimoDownlinkSumimoUtilization
|
||||
|
||||
return array(
|
||||
new WirelessSensor(
|
||||
'utilization',
|
||||
$this->getDeviceId(),
|
||||
$downlink,
|
||||
$lowdownlink,
|
||||
'pmp-downlink',
|
||||
0,
|
||||
'Downlink Utilization',
|
||||
'1m Downlink Utilization',
|
||||
null
|
||||
),
|
||||
new WirelessSensor(
|
||||
'utilization',
|
||||
$this->getDeviceId(),
|
||||
$uplink,
|
||||
$lowuplink,
|
||||
'pmp-uplink',
|
||||
0,
|
||||
'Uplink Utilization',
|
||||
'1m Uplink Utilization',
|
||||
null
|
||||
),
|
||||
new WirelessSensor(
|
||||
'utilization',
|
||||
$this->getDeviceId(),
|
||||
$meddownlink,
|
||||
'pmp-downlink',
|
||||
1,
|
||||
'5m Downlink Utilization',
|
||||
null
|
||||
),
|
||||
new WirelessSensor(
|
||||
'utilization',
|
||||
$this->getDeviceId(),
|
||||
$meduplink,
|
||||
'pmp-uplink',
|
||||
1,
|
||||
'5m Uplink Utilization',
|
||||
null
|
||||
),
|
||||
new WirelessSensor(
|
||||
'utilization',
|
||||
$this->getDeviceId(),
|
||||
$highdownlink,
|
||||
'pmp-downlink',
|
||||
2,
|
||||
'15m Downlink Utilization',
|
||||
null
|
||||
),
|
||||
new WirelessSensor(
|
||||
'utilization',
|
||||
$this->getDeviceId(),
|
||||
$highuplink,
|
||||
'pmp-uplink',
|
||||
2,
|
||||
'15m Uplink Utilization',
|
||||
null
|
||||
),
|
||||
new WirelessSensor(
|
||||
|
1020
tests/data/pmp.json
Normal file
1020
tests/data/pmp.json
Normal file
File diff suppressed because it is too large
Load Diff
@@ -8,13 +8,13 @@
|
||||
"sysDescr": "CANOPY 15.0.0.1 AP-DES",
|
||||
"sysContact": null,
|
||||
"version": null,
|
||||
"hardware": "",
|
||||
"hardware": null,
|
||||
"features": null,
|
||||
"location": null,
|
||||
"os": "pmp",
|
||||
"type": "wireless",
|
||||
"serial": null,
|
||||
"icon": "cambium.svg"
|
||||
"icon": "cambium.svg",
|
||||
"location": null
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -28,11 +28,11 @@
|
||||
"version": "CANOPY 15.0.0.1 AP-DES",
|
||||
"hardware": "PMP 450 AP",
|
||||
"features": null,
|
||||
"location": "<private>",
|
||||
"os": "pmp",
|
||||
"type": "wireless",
|
||||
"serial": null,
|
||||
"icon": "cambium.svg"
|
||||
"icon": "cambium.svg",
|
||||
"location": "<private>"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -47,7 +47,7 @@
|
||||
"port_descr_speed": null,
|
||||
"port_descr_notes": null,
|
||||
"ifDescr": "Cambium 10/100 FEC",
|
||||
"ifName": "Cambium 10/100 FEC",
|
||||
"ifName": "et1",
|
||||
"portName": null,
|
||||
"ifIndex": 1,
|
||||
"ifSpeed": null,
|
||||
@@ -152,7 +152,7 @@
|
||||
"port_descr_speed": null,
|
||||
"port_descr_notes": null,
|
||||
"ifDescr": "Canopy MultiPoint",
|
||||
"ifName": "Canopy MultiPoint",
|
||||
"ifName": "rf1",
|
||||
"portName": null,
|
||||
"ifIndex": 2,
|
||||
"ifSpeed": null,
|
||||
@@ -261,7 +261,7 @@
|
||||
"port_descr_speed": null,
|
||||
"port_descr_notes": null,
|
||||
"ifDescr": "Cambium 10/100 FEC",
|
||||
"ifName": "Cambium 10/100 FEC",
|
||||
"ifName": "et1",
|
||||
"portName": null,
|
||||
"ifIndex": 1,
|
||||
"ifSpeed": null,
|
||||
@@ -272,7 +272,7 @@
|
||||
"ifOperStatus_prev": null,
|
||||
"ifAdminStatus": "up",
|
||||
"ifAdminStatus_prev": null,
|
||||
"ifDuplex": null,
|
||||
"ifDuplex": "fullDuplex",
|
||||
"ifMtu": 0,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "None",
|
||||
@@ -322,11 +322,11 @@
|
||||
"ifOutOctets_delta": null,
|
||||
"ifOutOctets_rate": null,
|
||||
"poll_prev": null,
|
||||
"ifInNUcastPkts": 35916455,
|
||||
"ifInNUcastPkts": 0,
|
||||
"ifInNUcastPkts_prev": 0,
|
||||
"ifInNUcastPkts_delta": null,
|
||||
"ifInNUcastPkts_rate": null,
|
||||
"ifOutNUcastPkts": 504577,
|
||||
"ifOutNUcastPkts": 0,
|
||||
"ifOutNUcastPkts_prev": 0,
|
||||
"ifOutNUcastPkts_delta": null,
|
||||
"ifOutNUcastPkts_rate": null,
|
||||
@@ -366,7 +366,7 @@
|
||||
"port_descr_speed": null,
|
||||
"port_descr_notes": null,
|
||||
"ifDescr": "Canopy MultiPoint",
|
||||
"ifName": "Canopy MultiPoint",
|
||||
"ifName": "rf1",
|
||||
"portName": null,
|
||||
"ifIndex": 2,
|
||||
"ifSpeed": null,
|
||||
@@ -427,11 +427,11 @@
|
||||
"ifOutOctets_delta": null,
|
||||
"ifOutOctets_rate": null,
|
||||
"poll_prev": null,
|
||||
"ifInNUcastPkts": 489502,
|
||||
"ifInNUcastPkts": 0,
|
||||
"ifInNUcastPkts_prev": 0,
|
||||
"ifInNUcastPkts_delta": null,
|
||||
"ifInNUcastPkts_rate": null,
|
||||
"ifOutNUcastPkts": 26636360,
|
||||
"ifOutNUcastPkts": 0,
|
||||
"ifOutNUcastPkts_prev": 0,
|
||||
"ifOutNUcastPkts_delta": null,
|
||||
"ifOutNUcastPkts_rate": null,
|
||||
@@ -478,7 +478,7 @@
|
||||
"sensor_index": "0",
|
||||
"sensor_type": "WHISP-APS-MIB::whispGPSStats",
|
||||
"sensor_descr": "GPS Status",
|
||||
"group": null,
|
||||
"group": "",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": 1,
|
||||
@@ -502,7 +502,7 @@
|
||||
"sensor_index": "0",
|
||||
"sensor_type": "pmp",
|
||||
"sensor_descr": "Cambium Temperature",
|
||||
"group": null,
|
||||
"group": "",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": 27,
|
||||
@@ -574,7 +574,7 @@
|
||||
"sensor_class": "utilization",
|
||||
"sensor_index": "0",
|
||||
"sensor_type": "pmp-downlink",
|
||||
"sensor_descr": "Downlink Utilization",
|
||||
"sensor_descr": "1m Downlink Utilization",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
@@ -595,7 +595,7 @@
|
||||
"sensor_class": "utilization",
|
||||
"sensor_index": "0",
|
||||
"sensor_type": "pmp-uplink",
|
||||
"sensor_descr": "Uplink Utilization",
|
||||
"sensor_descr": "1m Uplink Utilization",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
@@ -611,6 +611,90 @@
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_oids": "[\".1.3.6.1.4.1.161.19.3.1.12.1.2.0\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "utilization",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "pmp-downlink",
|
||||
"sensor_descr": "5m Downlink Utilization",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": 15,
|
||||
"sensor_prev": null,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_oids": "[\".1.3.6.1.4.1.161.19.3.1.12.2.1.0\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "utilization",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "pmp-uplink",
|
||||
"sensor_descr": "5m Uplink Utilization",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": 15,
|
||||
"sensor_prev": null,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_oids": "[\".1.3.6.1.4.1.161.19.3.1.12.2.2.0\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "utilization",
|
||||
"sensor_index": "2",
|
||||
"sensor_type": "pmp-downlink",
|
||||
"sensor_descr": "15m Downlink Utilization",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": 9,
|
||||
"sensor_prev": null,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_oids": "[\".1.3.6.1.4.1.161.19.3.1.12.3.1.0\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "utilization",
|
||||
"sensor_index": "2",
|
||||
"sensor_type": "pmp-uplink",
|
||||
"sensor_descr": "15m Uplink Utilization",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": 10,
|
||||
"sensor_prev": null,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_oids": "[\".1.3.6.1.4.1.161.19.3.1.12.3.2.0\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "errors",
|
||||
@@ -725,7 +809,7 @@
|
||||
"sensor_class": "utilization",
|
||||
"sensor_index": "0",
|
||||
"sensor_type": "pmp-downlink",
|
||||
"sensor_descr": "Downlink Utilization",
|
||||
"sensor_descr": "1m Downlink Utilization",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
@@ -746,7 +830,7 @@
|
||||
"sensor_class": "utilization",
|
||||
"sensor_index": "0",
|
||||
"sensor_type": "pmp-uplink",
|
||||
"sensor_descr": "Uplink Utilization",
|
||||
"sensor_descr": "1m Uplink Utilization",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
@@ -762,6 +846,90 @@
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_oids": "[\".1.3.6.1.4.1.161.19.3.1.12.1.2.0\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "utilization",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "pmp-downlink",
|
||||
"sensor_descr": "5m Downlink Utilization",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": 15,
|
||||
"sensor_prev": 15,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_oids": "[\".1.3.6.1.4.1.161.19.3.1.12.2.1.0\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "utilization",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "pmp-uplink",
|
||||
"sensor_descr": "5m Uplink Utilization",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": 15,
|
||||
"sensor_prev": 15,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_oids": "[\".1.3.6.1.4.1.161.19.3.1.12.2.2.0\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "utilization",
|
||||
"sensor_index": "2",
|
||||
"sensor_type": "pmp-downlink",
|
||||
"sensor_descr": "15m Downlink Utilization",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": 9,
|
||||
"sensor_prev": 9,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_oids": "[\".1.3.6.1.4.1.161.19.3.1.12.3.1.0\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "utilization",
|
||||
"sensor_index": "2",
|
||||
"sensor_type": "pmp-uplink",
|
||||
"sensor_descr": "15m Uplink Utilization",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": 10,
|
||||
"sensor_prev": 10,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_oids": "[\".1.3.6.1.4.1.161.19.3.1.12.3.2.0\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "errors",
|
||||
|
@@ -5,16 +5,16 @@
|
||||
{
|
||||
"sysName": "<private>",
|
||||
"sysObjectID": ".1.3.6.1.4.1.161.19.250.256",
|
||||
"sysDescr": "CANOPY 15.1.2 AP-DES",
|
||||
"sysDescr": "CANOPY 16.0.0.1 AP",
|
||||
"sysContact": null,
|
||||
"version": null,
|
||||
"hardware": "",
|
||||
"hardware": null,
|
||||
"features": null,
|
||||
"location": null,
|
||||
"os": "pmp",
|
||||
"type": "wireless",
|
||||
"serial": null,
|
||||
"icon": "cambium.svg"
|
||||
"icon": "cambium.svg",
|
||||
"location": null
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -23,16 +23,16 @@
|
||||
{
|
||||
"sysName": "<private>",
|
||||
"sysObjectID": ".1.3.6.1.4.1.161.19.250.256",
|
||||
"sysDescr": "CANOPY 15.1.2 AP-DES",
|
||||
"sysDescr": "CANOPY 16.0.0.1 AP",
|
||||
"sysContact": "<private>",
|
||||
"version": "CANOPY 15.1.2 AP-DES",
|
||||
"hardware": "PMP 450m AP",
|
||||
"version": "CANOPY 16.0.0.1 AP",
|
||||
"hardware": "PMP 450 AP",
|
||||
"features": null,
|
||||
"location": "<private>",
|
||||
"os": "pmp",
|
||||
"type": "wireless",
|
||||
"serial": null,
|
||||
"icon": "cambium.svg"
|
||||
"icon": "cambium.svg",
|
||||
"location": "<private>"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -46,8 +46,8 @@
|
||||
"port_descr_circuit": null,
|
||||
"port_descr_speed": null,
|
||||
"port_descr_notes": null,
|
||||
"ifDescr": "Cambium 10/100/1000 Ethernet",
|
||||
"ifName": "Cambium 10/100/1000 Ethernet",
|
||||
"ifDescr": "Cambium 10/100 Ethernet",
|
||||
"ifName": "et1",
|
||||
"portName": null,
|
||||
"ifIndex": 1,
|
||||
"ifSpeed": null,
|
||||
@@ -152,7 +152,7 @@
|
||||
"port_descr_speed": null,
|
||||
"port_descr_notes": null,
|
||||
"ifDescr": "Canopy MultiPoint",
|
||||
"ifName": "Canopy MultiPoint",
|
||||
"ifName": "rf1",
|
||||
"portName": null,
|
||||
"ifIndex": 2,
|
||||
"ifSpeed": null,
|
||||
@@ -260,25 +260,25 @@
|
||||
"port_descr_circuit": null,
|
||||
"port_descr_speed": null,
|
||||
"port_descr_notes": null,
|
||||
"ifDescr": "Cambium 10/100/1000 Ethernet",
|
||||
"ifName": "Cambium 10/100/1000 Ethernet",
|
||||
"ifDescr": "Cambium 10/100 Ethernet",
|
||||
"ifName": "et1",
|
||||
"portName": null,
|
||||
"ifIndex": 1,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed": 100000000000000,
|
||||
"ifConnectorPresent": "0",
|
||||
"ifPromiscuousMode": "0",
|
||||
"ifHighSpeed": 0,
|
||||
"ifHighSpeed": 100000000,
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": null,
|
||||
"ifAdminStatus": "up",
|
||||
"ifAdminStatus_prev": null,
|
||||
"ifDuplex": "fullDuplex",
|
||||
"ifMtu": 1514,
|
||||
"ifMtu": 1510,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "None",
|
||||
"ifPhysAddress": "0a003e60324d",
|
||||
"ifPhysAddress": "0a003ea0903b",
|
||||
"ifHardType": null,
|
||||
"ifLastChange": 27719212,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "",
|
||||
"ifTrunk": null,
|
||||
"counter_in": null,
|
||||
@@ -297,11 +297,11 @@
|
||||
"pagpEthcOperationMode": null,
|
||||
"pagpDeviceId": null,
|
||||
"pagpGroupIfIndex": null,
|
||||
"ifInUcastPkts": 6416607025,
|
||||
"ifInUcastPkts": 3039089666,
|
||||
"ifInUcastPkts_prev": 0,
|
||||
"ifInUcastPkts_delta": null,
|
||||
"ifInUcastPkts_rate": null,
|
||||
"ifOutUcastPkts": 4278065397,
|
||||
"ifOutUcastPkts": 1708983354,
|
||||
"ifOutUcastPkts_prev": 0,
|
||||
"ifOutUcastPkts_delta": null,
|
||||
"ifOutUcastPkts_rate": null,
|
||||
@@ -309,24 +309,24 @@
|
||||
"ifInErrors_prev": 0,
|
||||
"ifInErrors_delta": null,
|
||||
"ifInErrors_rate": null,
|
||||
"ifOutErrors": 0,
|
||||
"ifOutErrors": 2,
|
||||
"ifOutErrors_prev": 0,
|
||||
"ifOutErrors_delta": null,
|
||||
"ifOutErrors_rate": null,
|
||||
"ifInOctets": 8775677657392,
|
||||
"ifInOctets": 4175312142689,
|
||||
"ifInOctets_prev": 0,
|
||||
"ifInOctets_delta": null,
|
||||
"ifInOctets_rate": null,
|
||||
"ifOutOctets": 702075286478,
|
||||
"ifOutOctets": 248796010435,
|
||||
"ifOutOctets_prev": 0,
|
||||
"ifOutOctets_delta": null,
|
||||
"ifOutOctets_rate": null,
|
||||
"poll_prev": null,
|
||||
"ifInNUcastPkts": 285444112,
|
||||
"ifInNUcastPkts": 0,
|
||||
"ifInNUcastPkts_prev": 0,
|
||||
"ifInNUcastPkts_delta": null,
|
||||
"ifInNUcastPkts_rate": null,
|
||||
"ifOutNUcastPkts": 253123,
|
||||
"ifOutNUcastPkts": 0,
|
||||
"ifOutNUcastPkts_prev": 0,
|
||||
"ifOutNUcastPkts_delta": null,
|
||||
"ifOutNUcastPkts_rate": null,
|
||||
@@ -334,7 +334,7 @@
|
||||
"ifInDiscards_prev": 0,
|
||||
"ifInDiscards_delta": null,
|
||||
"ifInDiscards_rate": null,
|
||||
"ifOutDiscards": 1867,
|
||||
"ifOutDiscards": 0,
|
||||
"ifOutDiscards_prev": 0,
|
||||
"ifOutDiscards_delta": null,
|
||||
"ifOutDiscards_rate": null,
|
||||
@@ -342,11 +342,11 @@
|
||||
"ifInUnknownProtos_prev": 0,
|
||||
"ifInUnknownProtos_delta": null,
|
||||
"ifInUnknownProtos_rate": null,
|
||||
"ifInBroadcastPkts": 285444070,
|
||||
"ifInBroadcastPkts": 65620835,
|
||||
"ifInBroadcastPkts_prev": 0,
|
||||
"ifInBroadcastPkts_delta": null,
|
||||
"ifInBroadcastPkts_rate": null,
|
||||
"ifOutBroadcastPkts": 253123,
|
||||
"ifOutBroadcastPkts": 534384,
|
||||
"ifOutBroadcastPkts_prev": 0,
|
||||
"ifOutBroadcastPkts_delta": null,
|
||||
"ifOutBroadcastPkts_rate": null,
|
||||
@@ -366,13 +366,13 @@
|
||||
"port_descr_speed": null,
|
||||
"port_descr_notes": null,
|
||||
"ifDescr": "Canopy MultiPoint",
|
||||
"ifName": "Canopy MultiPoint",
|
||||
"ifName": "rf1",
|
||||
"portName": null,
|
||||
"ifIndex": 2,
|
||||
"ifSpeed": null,
|
||||
"ifSpeed": 194969600000000,
|
||||
"ifConnectorPresent": "0",
|
||||
"ifPromiscuousMode": "0",
|
||||
"ifHighSpeed": 0,
|
||||
"ifHighSpeed": 194969600,
|
||||
"ifOperStatus": "up",
|
||||
"ifOperStatus_prev": null,
|
||||
"ifAdminStatus": "up",
|
||||
@@ -381,9 +381,9 @@
|
||||
"ifMtu": 1500,
|
||||
"ifType": "ethernetCsmacd",
|
||||
"ifAlias": "None",
|
||||
"ifPhysAddress": "1a003e60324d",
|
||||
"ifPhysAddress": "1a003ea0903b",
|
||||
"ifHardType": null,
|
||||
"ifLastChange": 27719212,
|
||||
"ifLastChange": 0,
|
||||
"ifVlan": "",
|
||||
"ifTrunk": null,
|
||||
"counter_in": null,
|
||||
@@ -402,11 +402,11 @@
|
||||
"pagpEthcOperationMode": null,
|
||||
"pagpDeviceId": null,
|
||||
"pagpGroupIfIndex": null,
|
||||
"ifInUcastPkts": 6416607025,
|
||||
"ifInUcastPkts": 1709207255,
|
||||
"ifInUcastPkts_prev": 0,
|
||||
"ifInUcastPkts_delta": null,
|
||||
"ifInUcastPkts_rate": null,
|
||||
"ifOutUcastPkts": 4278065397,
|
||||
"ifOutUcastPkts": 3038036927,
|
||||
"ifOutUcastPkts_prev": 0,
|
||||
"ifOutUcastPkts_delta": null,
|
||||
"ifOutUcastPkts_rate": null,
|
||||
@@ -418,28 +418,28 @@
|
||||
"ifOutErrors_prev": 0,
|
||||
"ifOutErrors_delta": null,
|
||||
"ifOutErrors_rate": null,
|
||||
"ifInOctets": 8775677703256,
|
||||
"ifInOctets": 248811614795,
|
||||
"ifInOctets_prev": 0,
|
||||
"ifInOctets_delta": null,
|
||||
"ifInOctets_rate": null,
|
||||
"ifOutOctets": 702075286478,
|
||||
"ifOutOctets": 4173578776447,
|
||||
"ifOutOctets_prev": 0,
|
||||
"ifOutOctets_delta": null,
|
||||
"ifOutOctets_rate": null,
|
||||
"poll_prev": null,
|
||||
"ifInNUcastPkts": 505659,
|
||||
"ifInNUcastPkts": 0,
|
||||
"ifInNUcastPkts_prev": 0,
|
||||
"ifInNUcastPkts_delta": null,
|
||||
"ifInNUcastPkts_rate": null,
|
||||
"ifOutNUcastPkts": 286559981,
|
||||
"ifOutNUcastPkts": 0,
|
||||
"ifOutNUcastPkts_prev": 0,
|
||||
"ifOutNUcastPkts_delta": null,
|
||||
"ifOutNUcastPkts_rate": null,
|
||||
"ifInDiscards": 0,
|
||||
"ifInDiscards": 652,
|
||||
"ifInDiscards_prev": 0,
|
||||
"ifInDiscards_delta": null,
|
||||
"ifInDiscards_rate": null,
|
||||
"ifOutDiscards": 617642,
|
||||
"ifOutDiscards": 13536,
|
||||
"ifOutDiscards_prev": 0,
|
||||
"ifOutDiscards_delta": null,
|
||||
"ifOutDiscards_rate": null,
|
||||
@@ -447,11 +447,11 @@
|
||||
"ifInUnknownProtos_prev": 0,
|
||||
"ifInUnknownProtos_delta": null,
|
||||
"ifInUnknownProtos_rate": null,
|
||||
"ifInBroadcastPkts": 285444070,
|
||||
"ifInBroadcastPkts": 930254,
|
||||
"ifInBroadcastPkts_prev": 0,
|
||||
"ifInBroadcastPkts_delta": null,
|
||||
"ifInBroadcastPkts_rate": null,
|
||||
"ifOutBroadcastPkts": 253123,
|
||||
"ifOutBroadcastPkts": 36690498,
|
||||
"ifOutBroadcastPkts_prev": 0,
|
||||
"ifOutBroadcastPkts_delta": null,
|
||||
"ifOutBroadcastPkts_rate": null,
|
||||
@@ -478,7 +478,7 @@
|
||||
"sensor_index": "0",
|
||||
"sensor_type": "WHISP-APS-MIB::whispGPSStats",
|
||||
"sensor_descr": "GPS Status",
|
||||
"group": null,
|
||||
"group": "",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": 1,
|
||||
@@ -502,13 +502,13 @@
|
||||
"sensor_index": "0",
|
||||
"sensor_type": "pmp",
|
||||
"sensor_descr": "Cambium Temperature",
|
||||
"group": null,
|
||||
"group": "",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_current": 40,
|
||||
"sensor_limit": 60,
|
||||
"sensor_current": 20,
|
||||
"sensor_limit": 40,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": 30,
|
||||
"sensor_limit_low": 10,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
@@ -557,7 +557,7 @@
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": 30,
|
||||
"sensor_current": 34,
|
||||
"sensor_prev": null,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
@@ -574,11 +574,11 @@
|
||||
"sensor_class": "utilization",
|
||||
"sensor_index": "0",
|
||||
"sensor_type": "pmp-downlink",
|
||||
"sensor_descr": "Downlink Utilization",
|
||||
"sensor_descr": "1m Downlink Utilization",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": 46,
|
||||
"sensor_current": 18,
|
||||
"sensor_prev": null,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
@@ -595,11 +595,11 @@
|
||||
"sensor_class": "utilization",
|
||||
"sensor_index": "0",
|
||||
"sensor_type": "pmp-uplink",
|
||||
"sensor_descr": "Uplink Utilization",
|
||||
"sensor_descr": "1m Uplink Utilization",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": 72,
|
||||
"sensor_current": 16,
|
||||
"sensor_prev": null,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
@@ -611,6 +611,90 @@
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_oids": "[\".1.3.6.1.4.1.161.19.3.1.12.1.2.0\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "utilization",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "pmp-downlink",
|
||||
"sensor_descr": "5m Downlink Utilization",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": 15,
|
||||
"sensor_prev": null,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_oids": "[\".1.3.6.1.4.1.161.19.3.1.12.2.1.0\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "utilization",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "pmp-uplink",
|
||||
"sensor_descr": "5m Uplink Utilization",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": 15,
|
||||
"sensor_prev": null,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_oids": "[\".1.3.6.1.4.1.161.19.3.1.12.2.2.0\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "utilization",
|
||||
"sensor_index": "2",
|
||||
"sensor_type": "pmp-downlink",
|
||||
"sensor_descr": "15m Downlink Utilization",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": 9,
|
||||
"sensor_prev": null,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_oids": "[\".1.3.6.1.4.1.161.19.3.1.12.3.1.0\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "utilization",
|
||||
"sensor_index": "2",
|
||||
"sensor_type": "pmp-uplink",
|
||||
"sensor_descr": "15m Uplink Utilization",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": 10,
|
||||
"sensor_prev": null,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_oids": "[\".1.3.6.1.4.1.161.19.3.1.12.3.2.0\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "utilization",
|
||||
@@ -704,7 +788,7 @@
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": 0,
|
||||
"sensor_current": 2,
|
||||
"sensor_prev": null,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
@@ -746,7 +830,7 @@
|
||||
"sensor_divisor": 1000,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": 5805,
|
||||
"sensor_current": 5785,
|
||||
"sensor_prev": null,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
@@ -771,8 +855,8 @@
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": 30,
|
||||
"sensor_prev": 30,
|
||||
"sensor_current": 34,
|
||||
"sensor_prev": 34,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
@@ -788,12 +872,12 @@
|
||||
"sensor_class": "utilization",
|
||||
"sensor_index": "0",
|
||||
"sensor_type": "pmp-downlink",
|
||||
"sensor_descr": "Downlink Utilization",
|
||||
"sensor_descr": "1m Downlink Utilization",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": 46,
|
||||
"sensor_prev": 46,
|
||||
"sensor_current": 18,
|
||||
"sensor_prev": 18,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
@@ -809,12 +893,12 @@
|
||||
"sensor_class": "utilization",
|
||||
"sensor_index": "0",
|
||||
"sensor_type": "pmp-uplink",
|
||||
"sensor_descr": "Uplink Utilization",
|
||||
"sensor_descr": "1m Uplink Utilization",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": 72,
|
||||
"sensor_prev": 72,
|
||||
"sensor_current": 16,
|
||||
"sensor_prev": 16,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
@@ -825,6 +909,90 @@
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_oids": "[\".1.3.6.1.4.1.161.19.3.1.12.1.2.0\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "utilization",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "pmp-downlink",
|
||||
"sensor_descr": "5m Downlink Utilization",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": 15,
|
||||
"sensor_prev": 15,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_oids": "[\".1.3.6.1.4.1.161.19.3.1.12.2.1.0\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "utilization",
|
||||
"sensor_index": "1",
|
||||
"sensor_type": "pmp-uplink",
|
||||
"sensor_descr": "5m Uplink Utilization",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": 15,
|
||||
"sensor_prev": 15,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_oids": "[\".1.3.6.1.4.1.161.19.3.1.12.2.2.0\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "utilization",
|
||||
"sensor_index": "2",
|
||||
"sensor_type": "pmp-downlink",
|
||||
"sensor_descr": "15m Downlink Utilization",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": 9,
|
||||
"sensor_prev": 9,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_oids": "[\".1.3.6.1.4.1.161.19.3.1.12.3.1.0\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "utilization",
|
||||
"sensor_index": "2",
|
||||
"sensor_type": "pmp-uplink",
|
||||
"sensor_descr": "15m Uplink Utilization",
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": 10,
|
||||
"sensor_prev": 10,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
"sensor_limit_low_warn": null,
|
||||
"sensor_alert": 1,
|
||||
"sensor_custom": "No",
|
||||
"entPhysicalIndex": null,
|
||||
"entPhysicalIndex_measured": null,
|
||||
"sensor_oids": "[\".1.3.6.1.4.1.161.19.3.1.12.3.2.0\"]"
|
||||
},
|
||||
{
|
||||
"sensor_deleted": 0,
|
||||
"sensor_class": "utilization",
|
||||
@@ -918,8 +1086,8 @@
|
||||
"sensor_divisor": 1,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": 0,
|
||||
"sensor_prev": 0,
|
||||
"sensor_current": 2,
|
||||
"sensor_prev": 2,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
@@ -960,8 +1128,8 @@
|
||||
"sensor_divisor": 1000,
|
||||
"sensor_multiplier": 1,
|
||||
"sensor_aggregator": "sum",
|
||||
"sensor_current": 5805,
|
||||
"sensor_prev": 5805,
|
||||
"sensor_current": 5785,
|
||||
"sensor_prev": 5785,
|
||||
"sensor_limit": null,
|
||||
"sensor_limit_warn": null,
|
||||
"sensor_limit_low": null,
|
||||
|
405
tests/snmpsim/pmp.snmprec
Normal file
405
tests/snmpsim/pmp.snmprec
Normal file
@@ -0,0 +1,405 @@
|
||||
1.0.8802.1.1.2.1.4.1.1.4.1|2|0
|
||||
1.0.8802.1.1.2.1.4.1.1.5.1|4x|00000000
|
||||
1.0.8802.1.1.2.1.4.1.1.6.1|2|0
|
||||
1.0.8802.1.1.2.1.4.1.1.7.1|4x|00000000
|
||||
1.0.8802.1.1.2.1.4.1.1.8.1|4x|00000000
|
||||
1.0.8802.1.1.2.1.4.1.1.9.1|4x|00000000
|
||||
1.0.8802.1.1.2.1.4.1.1.10.1|4x|00000000
|
||||
1.0.8802.1.1.2.1.4.1.1.11.1|4|30 34 20 30 30 20 35 2 3 10 11 13 18 26 27 34 35 42 50 51 53 55
|
||||
1.0.8802.1.1.2.1.4.1.1.12.1|4|30 34 20 30 30 20 35 2 3 10 11 13 18 26 27 34 35 42 50 51 53 55
|
||||
1.3.6.1.2.1.1.1.0|4|CANOPY 16.0.0.1 AP
|
||||
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.161.19.250.256
|
||||
1.3.6.1.2.1.1.3.0|67|193662606
|
||||
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|Cambium 10/100 Ethernet
|
||||
1.3.6.1.2.1.2.2.1.2.2|4|Canopy MultiPoint
|
||||
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.4.1|2|1510
|
||||
1.3.6.1.2.1.2.2.1.4.2|2|1500
|
||||
1.3.6.1.2.1.2.2.1.6.1|4x|0A003EA0903B
|
||||
1.3.6.1.2.1.2.2.1.6.2|4x|1A003EA0903B
|
||||
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.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.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.13.1|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.2|65|652
|
||||
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.19.1|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.2|65|13536
|
||||
1.3.6.1.2.1.2.2.1.20.1|65|2
|
||||
1.3.6.1.2.1.2.2.1.20.2|65|0
|
||||
1.3.6.1.2.1.4.20.1.2.10.10.144.4|2|1
|
||||
1.3.6.1.2.1.4.20.1.2.192.168.101.1|2|2
|
||||
1.3.6.1.2.1.4.20.1.3.10.10.144.4|64|255.255.255.0
|
||||
1.3.6.1.2.1.4.20.1.3.192.168.101.1|64|255.255.255.0
|
||||
1.3.6.1.2.1.4.22.1.2.1.10.10.144.1|4x|D4CA6DB09CCA
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.2|4x|1A003EB7B2BD
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.3|4x|1A003EB6A874
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.4|4x|1A003EA04EE3
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.5|4x|1A003EA2D61B
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.6|4x|1A003EA088D8
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.7|4x|1A003EB7B874
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.8|4x|1A003EA25C10
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.10|4x|1A003EA07B9E
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.11|4x|1A003EA08B60
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.12|4x|1A003EA09D35
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.13|4x|1A003EA26189
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.14|4x|1A003EA26606
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.15|4x|1A003EA088FB
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.16|4x|1A003EA25F54
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.17|4x|1A003EA0B982
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.18|4x|1A003EA08606
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.19|4x|1A003EA2AB6E
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.20|4x|1A003EA085E9
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.21|4x|1A003EB6A1D4
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.22|4x|1A003EA08593
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.23|4x|1A003EB2C535
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.24|4x|1A003EA266F8
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.25|4x|1A003EA09A1D
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.26|4x|1A003EB2D605
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.27|4x|1A003EA261CB
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.28|4x|1A003EB236E1
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.29|4x|1A003EA09787
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.30|4x|1A003EA2AB15
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.31|4x|1A003EA0C1E3
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.32|4x|1A003EA2656F
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.33|4x|1A003EB2D237
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.34|4x|1A003EB6A871
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.35|4x|1A003EA2AC4E
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.36|4x|1A003EA0860E
|
||||
1.3.6.1.2.1.4.22.1.2.3.127.0.0.1|4|LPBACK
|
||||
1.3.6.1.2.1.5.1.0|65|19522
|
||||
1.3.6.1.2.1.5.2.0|65|0
|
||||
1.3.6.1.2.1.5.3.0|65|3
|
||||
1.3.6.1.2.1.5.4.0|65|2
|
||||
1.3.6.1.2.1.5.5.0|65|0
|
||||
1.3.6.1.2.1.5.6.0|65|0
|
||||
1.3.6.1.2.1.5.7.0|65|0
|
||||
1.3.6.1.2.1.5.8.0|65|19517
|
||||
1.3.6.1.2.1.5.9.0|65|0
|
||||
1.3.6.1.2.1.5.10.0|65|0
|
||||
1.3.6.1.2.1.5.11.0|65|0
|
||||
1.3.6.1.2.1.5.12.0|65|0
|
||||
1.3.6.1.2.1.5.13.0|65|0
|
||||
1.3.6.1.2.1.5.14.0|65|19517
|
||||
1.3.6.1.2.1.5.15.0|65|0
|
||||
1.3.6.1.2.1.5.16.0|65|0
|
||||
1.3.6.1.2.1.5.17.0|65|0
|
||||
1.3.6.1.2.1.5.18.0|65|0
|
||||
1.3.6.1.2.1.5.19.0|65|0
|
||||
1.3.6.1.2.1.5.20.0|65|0
|
||||
1.3.6.1.2.1.5.21.0|65|0
|
||||
1.3.6.1.2.1.5.22.0|65|19517
|
||||
1.3.6.1.2.1.5.23.0|65|0
|
||||
1.3.6.1.2.1.5.24.0|65|0
|
||||
1.3.6.1.2.1.5.25.0|65|0
|
||||
1.3.6.1.2.1.5.26.0|65|0
|
||||
1.3.6.1.2.1.10.7.2.1.19.1|2|3
|
||||
1.3.6.1.2.1.11.1.0|65|403966
|
||||
1.3.6.1.2.1.11.2.0|65|403965
|
||||
1.3.6.1.2.1.11.3.0|65|0
|
||||
1.3.6.1.2.1.11.4.0|65|0
|
||||
1.3.6.1.2.1.11.5.0|65|0
|
||||
1.3.6.1.2.1.11.6.0|65|0
|
||||
1.3.6.1.2.1.11.8.0|65|0
|
||||
1.3.6.1.2.1.11.9.0|65|0
|
||||
1.3.6.1.2.1.11.10.0|65|0
|
||||
1.3.6.1.2.1.11.11.0|65|0
|
||||
1.3.6.1.2.1.11.12.0|65|0
|
||||
1.3.6.1.2.1.11.13.0|65|341944
|
||||
1.3.6.1.2.1.11.14.0|65|0
|
||||
1.3.6.1.2.1.11.15.0|65|238493
|
||||
1.3.6.1.2.1.11.16.0|65|92
|
||||
1.3.6.1.2.1.11.17.0|65|0
|
||||
1.3.6.1.2.1.11.18.0|65|0
|
||||
1.3.6.1.2.1.11.19.0|65|0
|
||||
1.3.6.1.2.1.11.20.0|65|0
|
||||
1.3.6.1.2.1.11.21.0|65|0
|
||||
1.3.6.1.2.1.11.22.0|65|0
|
||||
1.3.6.1.2.1.11.24.0|65|0
|
||||
1.3.6.1.2.1.11.25.0|65|0
|
||||
1.3.6.1.2.1.11.26.0|65|0
|
||||
1.3.6.1.2.1.11.27.0|65|0
|
||||
1.3.6.1.2.1.11.28.0|65|403967
|
||||
1.3.6.1.2.1.11.29.0|65|0
|
||||
1.3.6.1.2.1.11.30.0|2|1
|
||||
1.3.6.1.2.1.11.31.0|65|0
|
||||
1.3.6.1.2.1.11.32.0|65|0
|
||||
1.3.6.1.2.1.17.1.4.1.1.1|2|0
|
||||
1.3.6.1.2.1.17.1.4.1.2.1|2|1
|
||||
1.3.6.1.2.1.17.1.4.1.2.2|2|2
|
||||
1.3.6.1.2.1.17.1.4.1.2.3|2|3
|
||||
1.3.6.1.2.1.17.1.4.1.2.4|2|4
|
||||
1.3.6.1.2.1.17.1.4.1.2.5|2|5
|
||||
1.3.6.1.2.1.17.1.4.1.2.6|2|6
|
||||
1.3.6.1.2.1.17.1.4.1.2.7|2|7
|
||||
1.3.6.1.2.1.17.1.4.1.2.8|2|8
|
||||
1.3.6.1.2.1.17.1.4.1.2.9|2|9
|
||||
1.3.6.1.2.1.17.1.4.1.2.10|2|10
|
||||
1.3.6.1.2.1.17.1.4.1.2.11|2|11
|
||||
1.3.6.1.2.1.17.1.4.1.2.12|2|12
|
||||
1.3.6.1.2.1.17.1.4.1.2.13|2|13
|
||||
1.3.6.1.2.1.17.1.4.1.2.14|2|14
|
||||
1.3.6.1.2.1.17.1.4.1.2.15|2|15
|
||||
1.3.6.1.2.1.17.1.4.1.2.16|2|16
|
||||
1.3.6.1.2.1.17.1.4.1.2.17|2|17
|
||||
1.3.6.1.2.1.17.1.4.1.2.18|2|18
|
||||
1.3.6.1.2.1.17.1.4.1.2.19|2|19
|
||||
1.3.6.1.2.1.17.1.4.1.2.20|2|20
|
||||
1.3.6.1.2.1.17.1.4.1.2.21|2|21
|
||||
1.3.6.1.2.1.17.1.4.1.2.22|2|22
|
||||
1.3.6.1.2.1.17.1.4.1.2.23|2|23
|
||||
1.3.6.1.2.1.17.1.4.1.2.24|2|24
|
||||
1.3.6.1.2.1.17.1.4.1.2.25|2|25
|
||||
1.3.6.1.2.1.17.1.4.1.2.26|2|26
|
||||
1.3.6.1.2.1.17.1.4.1.2.27|2|27
|
||||
1.3.6.1.2.1.17.1.4.1.2.28|2|28
|
||||
1.3.6.1.2.1.17.1.4.1.2.29|2|29
|
||||
1.3.6.1.2.1.17.1.4.1.2.30|2|30
|
||||
1.3.6.1.2.1.17.1.4.1.2.31|2|31
|
||||
1.3.6.1.2.1.17.1.4.1.2.32|2|32
|
||||
1.3.6.1.2.1.17.1.4.1.2.33|2|33
|
||||
1.3.6.1.2.1.17.1.4.1.2.34|2|34
|
||||
1.3.6.1.2.1.17.1.4.1.2.35|2|35
|
||||
1.3.6.1.2.1.17.1.4.1.2.36|2|36
|
||||
1.3.6.1.2.1.17.1.4.1.2.37|2|37
|
||||
1.3.6.1.2.1.17.1.4.1.2.38|2|38
|
||||
1.3.6.1.2.1.17.1.4.1.2.39|2|39
|
||||
1.3.6.1.2.1.17.1.4.1.2.40|2|40
|
||||
1.3.6.1.2.1.17.1.4.1.2.41|2|41
|
||||
1.3.6.1.2.1.17.1.4.1.2.42|2|42
|
||||
1.3.6.1.2.1.17.1.4.1.2.43|2|43
|
||||
1.3.6.1.2.1.17.1.4.1.2.44|2|44
|
||||
1.3.6.1.2.1.17.1.4.1.2.45|2|45
|
||||
1.3.6.1.2.1.17.1.4.1.2.46|2|46
|
||||
1.3.6.1.2.1.17.1.4.1.2.47|2|47
|
||||
1.3.6.1.2.1.17.1.4.1.2.48|2|48
|
||||
1.3.6.1.2.1.17.1.4.1.2.49|2|49
|
||||
1.3.6.1.2.1.17.1.4.1.2.50|2|50
|
||||
1.3.6.1.2.1.17.1.4.1.2.51|2|51
|
||||
1.3.6.1.2.1.17.1.4.1.2.52|2|52
|
||||
1.3.6.1.2.1.17.1.4.1.2.53|2|53
|
||||
1.3.6.1.2.1.17.1.4.1.2.54|2|54
|
||||
1.3.6.1.2.1.17.1.4.1.2.55|2|55
|
||||
1.3.6.1.2.1.17.1.4.1.2.56|2|56
|
||||
1.3.6.1.2.1.17.1.4.1.2.57|2|57
|
||||
1.3.6.1.2.1.17.1.4.1.2.58|2|58
|
||||
1.3.6.1.2.1.17.1.4.1.2.59|2|59
|
||||
1.3.6.1.2.1.17.1.4.1.2.60|2|60
|
||||
1.3.6.1.2.1.17.1.4.1.2.61|2|61
|
||||
1.3.6.1.2.1.17.1.4.1.2.62|2|62
|
||||
1.3.6.1.2.1.17.1.4.1.2.63|2|63
|
||||
1.3.6.1.2.1.17.1.4.1.2.64|2|64
|
||||
1.3.6.1.2.1.17.1.4.1.2.65|2|65
|
||||
1.3.6.1.2.1.17.1.4.1.2.66|2|66
|
||||
1.3.6.1.2.1.17.1.4.1.2.67|2|67
|
||||
1.3.6.1.2.1.17.1.4.1.2.68|2|68
|
||||
1.3.6.1.2.1.17.1.4.1.2.69|2|69
|
||||
1.3.6.1.2.1.17.1.4.1.2.70|2|70
|
||||
1.3.6.1.2.1.17.1.4.1.2.71|2|71
|
||||
1.3.6.1.2.1.17.1.4.1.2.72|2|72
|
||||
1.3.6.1.2.1.17.1.4.1.2.73|2|73
|
||||
1.3.6.1.2.1.17.1.4.1.2.74|2|74
|
||||
1.3.6.1.2.1.17.1.4.1.2.75|2|75
|
||||
1.3.6.1.2.1.17.1.4.1.2.76|2|76
|
||||
1.3.6.1.2.1.17.1.4.1.2.77|2|77
|
||||
1.3.6.1.2.1.17.1.4.1.2.78|2|78
|
||||
1.3.6.1.2.1.17.1.4.1.2.79|2|79
|
||||
1.3.6.1.2.1.17.1.4.1.2.80|2|80
|
||||
1.3.6.1.2.1.17.1.4.1.2.81|2|81
|
||||
1.3.6.1.2.1.17.1.4.1.2.82|2|82
|
||||
1.3.6.1.2.1.17.1.4.1.2.83|2|83
|
||||
1.3.6.1.2.1.17.1.4.1.2.84|2|84
|
||||
1.3.6.1.2.1.17.1.4.1.2.85|2|85
|
||||
1.3.6.1.2.1.17.1.4.1.2.86|2|86
|
||||
1.3.6.1.2.1.17.1.4.1.2.87|2|87
|
||||
1.3.6.1.2.1.17.1.4.1.2.88|2|88
|
||||
1.3.6.1.2.1.17.1.4.1.2.89|2|89
|
||||
1.3.6.1.2.1.17.1.4.1.2.90|2|90
|
||||
1.3.6.1.2.1.17.1.4.1.2.91|2|91
|
||||
1.3.6.1.2.1.17.1.4.1.2.92|2|92
|
||||
1.3.6.1.2.1.17.1.4.1.2.93|2|93
|
||||
1.3.6.1.2.1.17.1.4.1.2.94|2|94
|
||||
1.3.6.1.2.1.17.1.4.1.2.95|2|95
|
||||
1.3.6.1.2.1.17.1.4.1.2.96|2|96
|
||||
1.3.6.1.2.1.17.1.4.1.2.97|2|97
|
||||
1.3.6.1.2.1.17.1.4.1.2.98|2|98
|
||||
1.3.6.1.2.1.17.1.4.1.2.99|2|99
|
||||
1.3.6.1.2.1.17.1.4.1.2.100|2|100
|
||||
1.3.6.1.2.1.17.1.4.1.2.101|2|101
|
||||
1.3.6.1.2.1.17.1.4.1.2.102|2|102
|
||||
1.3.6.1.2.1.17.1.4.1.2.103|2|103
|
||||
1.3.6.1.2.1.17.1.4.1.2.104|2|104
|
||||
1.3.6.1.2.1.17.4.3.1.2.1|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.2|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.3|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.4|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.5|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.6|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.7|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.8|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.9|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.10|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.11|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.12|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.13|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.14|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.15|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.16|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.17|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.18|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.19|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.20|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.21|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.22|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.23|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.24|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.25|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.26|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.27|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.28|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.29|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.30|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.31|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.32|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.33|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.34|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.35|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.36|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.37|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.38|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.39|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.40|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.41|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.42|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.43|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.44|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.45|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.46|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.47|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.48|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.49|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.50|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.51|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.52|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.53|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.54|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.55|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.56|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.57|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.58|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.59|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.60|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.61|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.62|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.63|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.64|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.65|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.66|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.67|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.68|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.69|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.70|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.71|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.72|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.73|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.74|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.75|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.76|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.77|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.78|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.79|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.80|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.81|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.82|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.83|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.84|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.85|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.86|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.87|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.88|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.89|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.90|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.91|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.92|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.93|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.94|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.95|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.96|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.97|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.98|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.99|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.100|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.101|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.102|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.103|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.104|2|0
|
||||
1.3.6.1.2.1.31.1.1.1.1.1|4|et1
|
||||
1.3.6.1.2.1.31.1.1.1.1.2|4|rf1
|
||||
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.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.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.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.6.1|70|4175312142689
|
||||
1.3.6.1.2.1.31.1.1.1.6.2|70|248811614795
|
||||
1.3.6.1.2.1.31.1.1.1.7.1|70|3039089666
|
||||
1.3.6.1.2.1.31.1.1.1.7.2|70|1709207255
|
||||
1.3.6.1.2.1.31.1.1.1.8.1|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.2|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.1|70|65620835
|
||||
1.3.6.1.2.1.31.1.1.1.9.2|70|930254
|
||||
1.3.6.1.2.1.31.1.1.1.10.1|70|248796010435
|
||||
1.3.6.1.2.1.31.1.1.1.10.2|70|4173578776447
|
||||
1.3.6.1.2.1.31.1.1.1.11.1|70|1708983354
|
||||
1.3.6.1.2.1.31.1.1.1.11.2|70|3038036927
|
||||
1.3.6.1.2.1.31.1.1.1.12.1|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.2|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.1|70|534384
|
||||
1.3.6.1.2.1.31.1.1.1.13.2|70|36690498
|
||||
1.3.6.1.2.1.31.1.1.1.14.1|2|0
|
||||
1.3.6.1.2.1.31.1.1.1.14.2|2|0
|
||||
1.3.6.1.2.1.31.1.1.1.15.1|66|100000000
|
||||
1.3.6.1.2.1.31.1.1.1.15.2|66|194969600
|
||||
1.3.6.1.2.1.31.1.1.1.16.1|2|0
|
||||
1.3.6.1.2.1.31.1.1.1.16.2|2|0
|
||||
1.3.6.1.2.1.31.1.1.1.17.1|2|0
|
||||
1.3.6.1.2.1.31.1.1.1.17.2|2|0
|
||||
1.3.6.1.2.1.31.1.1.1.18.1|4|None
|
||||
1.3.6.1.2.1.31.1.1.1.18.2|4|None
|
||||
1.3.6.1.2.1.31.1.1.1.19.1|67|0
|
||||
1.3.6.1.2.1.31.1.1.1.19.2|67|0
|
||||
1.3.6.1.2.1.31.1.2.1.3.1|2|0
|
||||
1.3.6.1.2.1.31.1.2.1.3.2|2|0
|
||||
1.3.6.1.4.1.161.19.3.1.3.1.0|2|1
|
||||
1.3.6.1.4.1.161.19.3.1.4.1.35.2|4|-62.8
|
||||
1.3.6.1.4.1.161.19.3.1.4.1.74.2|2|24
|
||||
1.3.6.1.4.1.161.19.3.1.4.1.84.2|2|30
|
||||
1.3.6.1.4.1.161.19.3.1.4.1.86.2|4|-2.5
|
||||
1.3.6.1.4.1.161.19.3.1.4.1.87.2|4|-67.4
|
||||
1.3.6.1.4.1.161.19.3.1.4.1.88.2|4|-64.9
|
||||
1.3.6.1.4.1.161.19.3.1.7.1.0|66|34
|
||||
1.3.6.1.4.1.161.19.3.1.7.32.0|65|1
|
||||
1.3.6.1.4.1.161.19.3.1.7.37.0|2|5785000
|
||||
1.3.6.1.4.1.161.19.3.1.12.1.1.0|2|18
|
||||
1.3.6.1.4.1.161.19.3.1.12.1.2.0|2|16
|
||||
1.3.6.1.4.1.161.19.3.1.12.2.1.0|2|15
|
||||
1.3.6.1.4.1.161.19.3.1.12.2.2.0|2|15
|
||||
1.3.6.1.4.1.161.19.3.1.12.3.1.0|2|9
|
||||
1.3.6.1.4.1.161.19.3.1.12.3.2.0|2|10
|
||||
1.3.6.1.4.1.161.19.3.3.1.6.0|4|5.7GHz MIMO OFDM - Multipoint - Access Point
|
||||
1.3.6.1.4.1.161.19.3.3.1.35.0|2|20
|
||||
1.3.6.1.4.1.161.19.3.3.1.95.0|66|0
|
||||
1.3.6.1.4.1.161.19.3.3.1.97.0|66|2
|
||||
1.3.6.1.4.1.161.19.3.3.1.223.0|65|0
|
||||
1.3.6.1.6.3.10.2.1.3.0|2|1936642
|
@@ -1,3 +1,12 @@
|
||||
1.0.8802.1.1.2.1.4.1.1.4.1|2|0
|
||||
1.0.8802.1.1.2.1.4.1.1.5.1|4x|00000000
|
||||
1.0.8802.1.1.2.1.4.1.1.6.1|2|0
|
||||
1.0.8802.1.1.2.1.4.1.1.7.1|4x|00000000
|
||||
1.0.8802.1.1.2.1.4.1.1.8.1|4x|00000000
|
||||
1.0.8802.1.1.2.1.4.1.1.9.1|4x|00000000
|
||||
1.0.8802.1.1.2.1.4.1.1.10.1|4x|00000000
|
||||
1.0.8802.1.1.2.1.4.1.1.11.1|4|30 34 20 30 30 20 35 2 3 10 11 13 18 26 27 34 35 42 50 51 53 55
|
||||
1.0.8802.1.1.2.1.4.1.1.12.1|4|30 34 20 30 30 20 35 2 3 10 11 13 18 26 27 34 35 42 50 51 53 55
|
||||
1.3.6.1.2.1.1.1.0|4|CANOPY 15.0.0.1 AP-DES
|
||||
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.161.19.250.256
|
||||
1.3.6.1.2.1.1.3.0|67|302568836
|
||||
@@ -65,17 +74,23 @@
|
||||
1.3.6.1.2.1.4.18.0|65|0
|
||||
1.3.6.1.2.1.4.19.0|65|0
|
||||
1.3.6.1.2.1.4.20.1.2.10.2.1.252|2|1
|
||||
1.3.6.1.2.1.4.20.1.2.10.10.144.4|2|1
|
||||
1.3.6.1.2.1.4.20.1.2.192.168.101.1|2|2
|
||||
1.3.6.1.2.1.4.20.1.3.10.2.1.252|64|255.255.0.0
|
||||
1.3.6.1.2.1.4.20.1.3.10.10.144.4|64|255.255.255.0
|
||||
1.3.6.1.2.1.4.20.1.3.192.168.101.1|64|255.255.255.0
|
||||
1.3.6.1.2.1.4.22.1.2.1.10.2.200.200|4x|00900B43F502
|
||||
1.3.6.1.2.1.4.22.1.2.1.10.10.144.1|4x|D4CA6DB09CCA
|
||||
1.3.6.1.2.1.4.22.1.2.1.162.211.185.103|4x|2A003EB35DB9
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.2|4x|1A003EA147D5
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.3|4x|1A003EB59A69
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.4|4x|1A003EA04EE3
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.5|4x|1A003EA0844D
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.6|4x|1A003EA088D8
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.7|4x|1A003EB1FF85
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.8|4x|1A003EB15D00
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.10|4x|1A003E702F36
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.11|4x|1A003EA08B60
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.12|4x|1A003EA2B08E
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.13|4x|1A003EB27E2A
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.14|4x|1A003EA1BD5B
|
||||
@@ -91,6 +106,16 @@
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.24|4x|1A003EB372A2
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.25|4x|1A003EB4B54F
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.26|4x|1A003EB173DE
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.27|4x|1A003EA261CB
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.28|4x|1A003EB236E1
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.29|4x|1A003EA09787
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.30|4x|1A003EA2AB15
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.31|4x|1A003EA0C1E3
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.32|4x|1A003EA2656F
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.33|4x|1A003EB2D237
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.34|4x|1A003EB6A871
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.35|4x|1A003EA2AC4E
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.36|4x|1A003EA0860E
|
||||
1.3.6.1.2.1.4.22.1.2.3.127.0.0.1|4|LPBACK
|
||||
1.3.6.1.2.1.5.1.0|65|410826
|
||||
1.3.6.1.2.1.5.2.0|65|0
|
||||
@@ -132,6 +157,7 @@
|
||||
1.3.6.1.2.1.7.2.0|65|0
|
||||
1.3.6.1.2.1.7.3.0|65|80873
|
||||
1.3.6.1.2.1.7.4.0|65|2323189
|
||||
1.3.6.1.2.1.10.7.2.1.19.1|2|3
|
||||
1.3.6.1.2.1.11.1.0|65|1425496
|
||||
1.3.6.1.2.1.11.2.0|65|1425495
|
||||
1.3.6.1.2.1.11.3.0|65|0
|
||||
@@ -162,6 +188,217 @@
|
||||
1.3.6.1.2.1.11.30.0|2|1
|
||||
1.3.6.1.2.1.11.31.0|65|0
|
||||
1.3.6.1.2.1.11.32.0|65|0
|
||||
1.3.6.1.2.1.17.1.4.1.1.1|2|0
|
||||
1.3.6.1.2.1.17.1.4.1.2.1|2|1
|
||||
1.3.6.1.2.1.17.1.4.1.2.2|2|2
|
||||
1.3.6.1.2.1.17.1.4.1.2.3|2|3
|
||||
1.3.6.1.2.1.17.1.4.1.2.4|2|4
|
||||
1.3.6.1.2.1.17.1.4.1.2.5|2|5
|
||||
1.3.6.1.2.1.17.1.4.1.2.6|2|6
|
||||
1.3.6.1.2.1.17.1.4.1.2.7|2|7
|
||||
1.3.6.1.2.1.17.1.4.1.2.8|2|8
|
||||
1.3.6.1.2.1.17.1.4.1.2.9|2|9
|
||||
1.3.6.1.2.1.17.1.4.1.2.10|2|10
|
||||
1.3.6.1.2.1.17.1.4.1.2.11|2|11
|
||||
1.3.6.1.2.1.17.1.4.1.2.12|2|12
|
||||
1.3.6.1.2.1.17.1.4.1.2.13|2|13
|
||||
1.3.6.1.2.1.17.1.4.1.2.14|2|14
|
||||
1.3.6.1.2.1.17.1.4.1.2.15|2|15
|
||||
1.3.6.1.2.1.17.1.4.1.2.16|2|16
|
||||
1.3.6.1.2.1.17.1.4.1.2.17|2|17
|
||||
1.3.6.1.2.1.17.1.4.1.2.18|2|18
|
||||
1.3.6.1.2.1.17.1.4.1.2.19|2|19
|
||||
1.3.6.1.2.1.17.1.4.1.2.20|2|20
|
||||
1.3.6.1.2.1.17.1.4.1.2.21|2|21
|
||||
1.3.6.1.2.1.17.1.4.1.2.22|2|22
|
||||
1.3.6.1.2.1.17.1.4.1.2.23|2|23
|
||||
1.3.6.1.2.1.17.1.4.1.2.24|2|24
|
||||
1.3.6.1.2.1.17.1.4.1.2.25|2|25
|
||||
1.3.6.1.2.1.17.1.4.1.2.26|2|26
|
||||
1.3.6.1.2.1.17.1.4.1.2.27|2|27
|
||||
1.3.6.1.2.1.17.1.4.1.2.28|2|28
|
||||
1.3.6.1.2.1.17.1.4.1.2.29|2|29
|
||||
1.3.6.1.2.1.17.1.4.1.2.30|2|30
|
||||
1.3.6.1.2.1.17.1.4.1.2.31|2|31
|
||||
1.3.6.1.2.1.17.1.4.1.2.32|2|32
|
||||
1.3.6.1.2.1.17.1.4.1.2.33|2|33
|
||||
1.3.6.1.2.1.17.1.4.1.2.34|2|34
|
||||
1.3.6.1.2.1.17.1.4.1.2.35|2|35
|
||||
1.3.6.1.2.1.17.1.4.1.2.36|2|36
|
||||
1.3.6.1.2.1.17.1.4.1.2.37|2|37
|
||||
1.3.6.1.2.1.17.1.4.1.2.38|2|38
|
||||
1.3.6.1.2.1.17.1.4.1.2.39|2|39
|
||||
1.3.6.1.2.1.17.1.4.1.2.40|2|40
|
||||
1.3.6.1.2.1.17.1.4.1.2.41|2|41
|
||||
1.3.6.1.2.1.17.1.4.1.2.42|2|42
|
||||
1.3.6.1.2.1.17.1.4.1.2.43|2|43
|
||||
1.3.6.1.2.1.17.1.4.1.2.44|2|44
|
||||
1.3.6.1.2.1.17.1.4.1.2.45|2|45
|
||||
1.3.6.1.2.1.17.1.4.1.2.46|2|46
|
||||
1.3.6.1.2.1.17.1.4.1.2.47|2|47
|
||||
1.3.6.1.2.1.17.1.4.1.2.48|2|48
|
||||
1.3.6.1.2.1.17.1.4.1.2.49|2|49
|
||||
1.3.6.1.2.1.17.1.4.1.2.50|2|50
|
||||
1.3.6.1.2.1.17.1.4.1.2.51|2|51
|
||||
1.3.6.1.2.1.17.1.4.1.2.52|2|52
|
||||
1.3.6.1.2.1.17.1.4.1.2.53|2|53
|
||||
1.3.6.1.2.1.17.1.4.1.2.54|2|54
|
||||
1.3.6.1.2.1.17.1.4.1.2.55|2|55
|
||||
1.3.6.1.2.1.17.1.4.1.2.56|2|56
|
||||
1.3.6.1.2.1.17.1.4.1.2.57|2|57
|
||||
1.3.6.1.2.1.17.1.4.1.2.58|2|58
|
||||
1.3.6.1.2.1.17.1.4.1.2.59|2|59
|
||||
1.3.6.1.2.1.17.1.4.1.2.60|2|60
|
||||
1.3.6.1.2.1.17.1.4.1.2.61|2|61
|
||||
1.3.6.1.2.1.17.1.4.1.2.62|2|62
|
||||
1.3.6.1.2.1.17.1.4.1.2.63|2|63
|
||||
1.3.6.1.2.1.17.1.4.1.2.64|2|64
|
||||
1.3.6.1.2.1.17.1.4.1.2.65|2|65
|
||||
1.3.6.1.2.1.17.1.4.1.2.66|2|66
|
||||
1.3.6.1.2.1.17.1.4.1.2.67|2|67
|
||||
1.3.6.1.2.1.17.1.4.1.2.68|2|68
|
||||
1.3.6.1.2.1.17.1.4.1.2.69|2|69
|
||||
1.3.6.1.2.1.17.1.4.1.2.70|2|70
|
||||
1.3.6.1.2.1.17.1.4.1.2.71|2|71
|
||||
1.3.6.1.2.1.17.1.4.1.2.72|2|72
|
||||
1.3.6.1.2.1.17.1.4.1.2.73|2|73
|
||||
1.3.6.1.2.1.17.1.4.1.2.74|2|74
|
||||
1.3.6.1.2.1.17.1.4.1.2.75|2|75
|
||||
1.3.6.1.2.1.17.1.4.1.2.76|2|76
|
||||
1.3.6.1.2.1.17.1.4.1.2.77|2|77
|
||||
1.3.6.1.2.1.17.1.4.1.2.78|2|78
|
||||
1.3.6.1.2.1.17.1.4.1.2.79|2|79
|
||||
1.3.6.1.2.1.17.1.4.1.2.80|2|80
|
||||
1.3.6.1.2.1.17.1.4.1.2.81|2|81
|
||||
1.3.6.1.2.1.17.1.4.1.2.82|2|82
|
||||
1.3.6.1.2.1.17.1.4.1.2.83|2|83
|
||||
1.3.6.1.2.1.17.1.4.1.2.84|2|84
|
||||
1.3.6.1.2.1.17.1.4.1.2.85|2|85
|
||||
1.3.6.1.2.1.17.1.4.1.2.86|2|86
|
||||
1.3.6.1.2.1.17.1.4.1.2.87|2|87
|
||||
1.3.6.1.2.1.17.1.4.1.2.88|2|88
|
||||
1.3.6.1.2.1.17.1.4.1.2.89|2|89
|
||||
1.3.6.1.2.1.17.1.4.1.2.90|2|90
|
||||
1.3.6.1.2.1.17.1.4.1.2.91|2|91
|
||||
1.3.6.1.2.1.17.1.4.1.2.92|2|92
|
||||
1.3.6.1.2.1.17.1.4.1.2.93|2|93
|
||||
1.3.6.1.2.1.17.1.4.1.2.94|2|94
|
||||
1.3.6.1.2.1.17.1.4.1.2.95|2|95
|
||||
1.3.6.1.2.1.17.1.4.1.2.96|2|96
|
||||
1.3.6.1.2.1.17.1.4.1.2.97|2|97
|
||||
1.3.6.1.2.1.17.1.4.1.2.98|2|98
|
||||
1.3.6.1.2.1.17.1.4.1.2.99|2|99
|
||||
1.3.6.1.2.1.17.1.4.1.2.100|2|100
|
||||
1.3.6.1.2.1.17.1.4.1.2.101|2|101
|
||||
1.3.6.1.2.1.17.1.4.1.2.102|2|102
|
||||
1.3.6.1.2.1.17.1.4.1.2.103|2|103
|
||||
1.3.6.1.2.1.17.1.4.1.2.104|2|104
|
||||
1.3.6.1.2.1.17.4.3.1.2.1|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.2|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.3|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.4|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.5|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.6|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.7|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.8|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.9|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.10|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.11|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.12|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.13|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.14|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.15|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.16|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.17|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.18|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.19|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.20|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.21|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.22|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.23|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.24|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.25|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.26|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.27|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.28|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.29|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.30|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.31|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.32|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.33|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.34|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.35|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.36|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.37|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.38|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.39|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.40|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.41|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.42|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.43|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.44|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.45|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.46|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.47|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.48|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.49|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.50|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.51|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.52|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.53|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.54|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.55|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.56|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.57|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.58|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.59|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.60|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.61|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.62|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.63|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.64|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.65|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.66|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.67|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.68|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.69|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.70|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.71|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.72|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.73|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.74|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.75|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.76|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.77|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.78|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.79|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.80|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.81|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.82|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.83|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.84|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.85|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.86|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.87|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.88|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.89|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.90|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.91|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.92|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.93|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.94|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.95|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.96|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.97|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.98|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.99|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.100|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.101|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.102|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.103|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.104|2|0
|
||||
1.3.6.1.2.1.31.1.1.1.1.1|4|et1
|
||||
1.3.6.1.2.1.31.1.1.1.1.2|4|rf1
|
||||
1.3.6.1.2.1.31.1.1.1.1.255|4|1
|
||||
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
|
||||
@@ -213,6 +450,10 @@
|
||||
1.3.6.1.4.1.161.19.3.1.7.37.0|2|5525000
|
||||
1.3.6.1.4.1.161.19.3.1.12.1.1.0|2|20
|
||||
1.3.6.1.4.1.161.19.3.1.12.1.2.0|2|16
|
||||
1.3.6.1.4.1.161.19.3.1.12.2.1.0|2|15
|
||||
1.3.6.1.4.1.161.19.3.1.12.2.2.0|2|15
|
||||
1.3.6.1.4.1.161.19.3.1.12.3.1.0|2|9
|
||||
1.3.6.1.4.1.161.19.3.1.12.3.2.0|2|10
|
||||
1.3.6.1.4.1.161.19.3.3.1.6.0|4|5.4GHzMIMO OFDM - Multipoint - Access Point
|
||||
1.3.6.1.4.1.161.19.3.3.1.35.0|2|27
|
||||
1.3.6.1.4.1.161.19.3.3.1.95.0|66|13
|
||||
|
@@ -5,32 +5,32 @@
|
||||
1.0.8802.1.1.2.1.4.1.1.8.1|4x|00000000
|
||||
1.0.8802.1.1.2.1.4.1.1.9.1|4x|00000000
|
||||
1.0.8802.1.1.2.1.4.1.1.10.1|4x|00000000
|
||||
1.0.8802.1.1.2.1.4.1.1.11.1|4|04 00 5
|
||||
1.0.8802.1.1.2.1.4.1.1.12.1|4|04 00 5
|
||||
1.3.6.1.2.1.1.1.0|4|CANOPY 15.1.2 AP-DES
|
||||
1.0.8802.1.1.2.1.4.1.1.11.1|4|30 34 20 30 30 20 35 2 3 10 11 13 18 26 27 34 35 42 50 51 53 55
|
||||
1.0.8802.1.1.2.1.4.1.1.12.1|4|30 34 20 30 30 20 35 2 3 10 11 13 18 26 27 34 35 42 50 51 53 55
|
||||
1.3.6.1.2.1.1.1.0|4|CANOPY 16.0.0.1 AP
|
||||
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.161.19.250.256
|
||||
1.3.6.1.2.1.1.3.0|67|371315226
|
||||
1.3.6.1.2.1.1.3.0|67|193662606
|
||||
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.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.2.1|4|Cambium 10/100/1000 Ethernet
|
||||
1.3.6.1.2.1.2.2.1.2.1|4|Cambium 10/100 Ethernet
|
||||
1.3.6.1.2.1.2.2.1.2.2|4|Canopy MultiPoint
|
||||
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.4.1|2|1514
|
||||
1.3.6.1.2.1.2.2.1.4.1|2|1510
|
||||
1.3.6.1.2.1.2.2.1.4.2|2|1500
|
||||
1.3.6.1.2.1.2.2.1.5.1|66|1000000000
|
||||
1.3.6.1.2.1.2.2.1.5.2|66|122880000
|
||||
1.3.6.1.2.1.2.2.1.6.1|4x|0A003E60324D
|
||||
1.3.6.1.2.1.2.2.1.6.2|4x|1A003E60324D
|
||||
1.3.6.1.2.1.2.2.1.6.1|4x|0A003EA0903B
|
||||
1.3.6.1.2.1.2.2.1.6.2|4x|1A003EA0903B
|
||||
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.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.9.1|67|27719212
|
||||
1.3.6.1.2.1.2.2.1.9.2|67|27719212
|
||||
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.10.1|65|1059771850
|
||||
1.3.6.1.2.1.2.2.1.10.2|65|1968904320
|
||||
1.3.6.1.2.1.2.2.1.11.1|65|2121639952
|
||||
@@ -38,7 +38,7 @@
|
||||
1.3.6.1.2.1.2.2.1.12.1|65|285444112
|
||||
1.3.6.1.2.1.2.2.1.12.2|65|505659
|
||||
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.2|65|652
|
||||
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.15.1|65|0
|
||||
@@ -49,9 +49,9 @@
|
||||
1.3.6.1.2.1.2.2.1.17.2|65|1986573240
|
||||
1.3.6.1.2.1.2.2.1.18.1|65|253123
|
||||
1.3.6.1.2.1.2.2.1.18.2|65|286559981
|
||||
1.3.6.1.2.1.2.2.1.19.1|65|1867
|
||||
1.3.6.1.2.1.2.2.1.19.2|65|617642
|
||||
1.3.6.1.2.1.2.2.1.20.1|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|13536
|
||||
1.3.6.1.2.1.2.2.1.20.1|65|2
|
||||
1.3.6.1.2.1.2.2.1.20.2|65|0
|
||||
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
|
||||
@@ -73,57 +73,78 @@
|
||||
1.3.6.1.2.1.4.17.0|65|0
|
||||
1.3.6.1.2.1.4.18.0|65|0
|
||||
1.3.6.1.2.1.4.19.0|65|0
|
||||
1.3.6.1.2.1.4.20.1.2.10.10.144.4|2|1
|
||||
1.3.6.1.2.1.4.20.1.2.10.51.100.52|2|1
|
||||
1.3.6.1.2.1.4.20.1.2.192.168.101.1|2|2
|
||||
1.3.6.1.2.1.4.20.1.3.10.10.144.4|64|255.255.255.0
|
||||
1.3.6.1.2.1.4.20.1.3.10.51.100.52|64|255.255.255.0
|
||||
1.3.6.1.2.1.4.20.1.3.192.168.101.1|64|255.255.255.0
|
||||
1.3.6.1.2.1.4.22.1.2.1.10.10.144.1|4x|D4CA6DB09CCA
|
||||
1.3.6.1.2.1.4.22.1.2.1.10.51.100.65|4x|0090EAC2CC80
|
||||
1.3.6.1.2.1.4.22.1.2.1.10.51.100.199|4x|0090EAC33C5F
|
||||
1.3.6.1.2.1.4.22.1.2.1.10.51.100.254|4x|C0F79D0206BF
|
||||
1.3.6.1.2.1.4.22.1.2.1.192.168.123.240|4x|00204AC8D88A
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.4|4x|1A003EB4424B
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.6|4x|1A003EB3F734
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.7|4x|1A003EB5AEEE
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.8|4x|1A003EB2863B
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.11|4x|1A003EA2D597
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.13|4x|1A003EB3F847
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.15|4x|1A003EB444E6
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.17|4x|1A003EA25EDF
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.18|4x|1A003EB30296
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.20|4x|1A003EB27B04
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.21|4x|1A003EBB19A5
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.23|4x|1A003EA07650
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.25|4x|1A003EB3A44C
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.27|4x|1A003EB3F8E2
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.31|4x|1A003EB5AE70
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.35|4x|1A003EB16009
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.2|4x|1A003EB7B2BD
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.3|4x|1A003EB6A874
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.4|4x|1A003EA04EE3
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.5|4x|1A003EA2D61B
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.6|4x|1A003EA088D8
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.7|4x|1A003EB7B874
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.8|4x|1A003EA25C10
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.10|4x|1A003EA07B9E
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.11|4x|1A003EA08B60
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.12|4x|1A003EA09D35
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.13|4x|1A003EA26189
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.14|4x|1A003EA26606
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.15|4x|1A003EA088FB
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.16|4x|1A003EA25F54
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.17|4x|1A003EA0B982
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.18|4x|1A003EA08606
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.19|4x|1A003EA2AB6E
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.20|4x|1A003EA085E9
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.21|4x|1A003EB6A1D4
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.22|4x|1A003EA08593
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.23|4x|1A003EB2C535
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.24|4x|1A003EA266F8
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.25|4x|1A003EA09A1D
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.26|4x|1A003EB2D605
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.27|4x|1A003EA261CB
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.28|4x|1A003EB236E1
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.29|4x|1A003EA09787
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.30|4x|1A003EA2AB15
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.31|4x|1A003EA0C1E3
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.32|4x|1A003EA2656F
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.33|4x|1A003EB2D237
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.34|4x|1A003EB6A871
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.35|4x|1A003EA2AC4E
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.36|4x|1A003EA0860E
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.43|4x|1A003EA08407
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.49|4x|1A003EB3A397
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.53|4x|1A003EB3F897
|
||||
1.3.6.1.2.1.4.22.1.2.2.192.168.101.70|4x|1A003EB2879E
|
||||
1.3.6.1.2.1.4.22.1.2.3.127.0.0.1|4|LPBACK
|
||||
1.3.6.1.2.1.5.1.0|65|1132410
|
||||
1.3.6.1.2.1.5.1.0|65|19522
|
||||
1.3.6.1.2.1.5.2.0|65|0
|
||||
1.3.6.1.2.1.5.3.0|65|618867
|
||||
1.3.6.1.2.1.5.4.0|65|1
|
||||
1.3.6.1.2.1.5.3.0|65|3
|
||||
1.3.6.1.2.1.5.4.0|65|2
|
||||
1.3.6.1.2.1.5.5.0|65|0
|
||||
1.3.6.1.2.1.5.6.0|65|0
|
||||
1.3.6.1.2.1.5.7.0|65|0
|
||||
1.3.6.1.2.1.5.8.0|65|513542
|
||||
1.3.6.1.2.1.5.8.0|65|19517
|
||||
1.3.6.1.2.1.5.9.0|65|0
|
||||
1.3.6.1.2.1.5.10.0|65|0
|
||||
1.3.6.1.2.1.5.11.0|65|0
|
||||
1.3.6.1.2.1.5.12.0|65|0
|
||||
1.3.6.1.2.1.5.13.0|65|0
|
||||
1.3.6.1.2.1.5.14.0|65|514162
|
||||
1.3.6.1.2.1.5.14.0|65|19517
|
||||
1.3.6.1.2.1.5.15.0|65|0
|
||||
1.3.6.1.2.1.5.16.0|65|16
|
||||
1.3.6.1.2.1.5.17.0|65|604
|
||||
1.3.6.1.2.1.5.16.0|65|0
|
||||
1.3.6.1.2.1.5.17.0|65|0
|
||||
1.3.6.1.2.1.5.18.0|65|0
|
||||
1.3.6.1.2.1.5.19.0|65|0
|
||||
1.3.6.1.2.1.5.20.0|65|0
|
||||
1.3.6.1.2.1.5.21.0|65|0
|
||||
1.3.6.1.2.1.5.22.0|65|513542
|
||||
1.3.6.1.2.1.5.22.0|65|19517
|
||||
1.3.6.1.2.1.5.23.0|65|0
|
||||
1.3.6.1.2.1.5.24.0|65|0
|
||||
1.3.6.1.2.1.5.25.0|65|0
|
||||
@@ -143,10 +164,10 @@
|
||||
1.3.6.1.2.1.7.3.0|65|0
|
||||
1.3.6.1.2.1.7.4.0|65|2234718
|
||||
1.3.6.1.2.1.10.7.2.1.19.1|2|3
|
||||
1.3.6.1.2.1.11.1.0|65|1318903
|
||||
1.3.6.1.2.1.11.2.0|65|1633112
|
||||
1.3.6.1.2.1.11.3.0|65|860
|
||||
1.3.6.1.2.1.11.4.0|65|31421
|
||||
1.3.6.1.2.1.11.1.0|65|403966
|
||||
1.3.6.1.2.1.11.2.0|65|403965
|
||||
1.3.6.1.2.1.11.3.0|65|0
|
||||
1.3.6.1.2.1.11.4.0|65|0
|
||||
1.3.6.1.2.1.11.5.0|65|0
|
||||
1.3.6.1.2.1.11.6.0|65|0
|
||||
1.3.6.1.2.1.11.8.0|65|0
|
||||
@@ -154,10 +175,10 @@
|
||||
1.3.6.1.2.1.11.10.0|65|0
|
||||
1.3.6.1.2.1.11.11.0|65|0
|
||||
1.3.6.1.2.1.11.12.0|65|0
|
||||
1.3.6.1.2.1.11.13.0|65|1437619
|
||||
1.3.6.1.2.1.11.13.0|65|341944
|
||||
1.3.6.1.2.1.11.14.0|65|0
|
||||
1.3.6.1.2.1.11.15.0|65|547263
|
||||
1.3.6.1.2.1.11.16.0|65|107594
|
||||
1.3.6.1.2.1.11.15.0|65|238493
|
||||
1.3.6.1.2.1.11.16.0|65|92
|
||||
1.3.6.1.2.1.11.17.0|65|0
|
||||
1.3.6.1.2.1.11.18.0|65|0
|
||||
1.3.6.1.2.1.11.19.0|65|0
|
||||
@@ -168,8 +189,8 @@
|
||||
1.3.6.1.2.1.11.25.0|65|0
|
||||
1.3.6.1.2.1.11.26.0|65|0
|
||||
1.3.6.1.2.1.11.27.0|65|0
|
||||
1.3.6.1.2.1.11.28.0|65|1286623
|
||||
1.3.6.1.2.1.11.29.0|65|314210
|
||||
1.3.6.1.2.1.11.28.0|65|403967
|
||||
1.3.6.1.2.1.11.29.0|65|0
|
||||
1.3.6.1.2.1.11.30.0|2|1
|
||||
1.3.6.1.2.1.11.31.0|65|0
|
||||
1.3.6.1.2.1.11.32.0|65|0
|
||||
@@ -414,6 +435,8 @@
|
||||
1.3.6.1.2.1.17.4.3.1.2.118|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.119|2|0
|
||||
1.3.6.1.2.1.17.4.3.1.2.120|2|0
|
||||
1.3.6.1.2.1.31.1.1.1.1.1|4|et1
|
||||
1.3.6.1.2.1.31.1.1.1.1.2|4|rf1
|
||||
1.3.6.1.2.1.31.1.1.1.1.255|4|1
|
||||
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
|
||||
@@ -423,26 +446,26 @@
|
||||
1.3.6.1.2.1.31.1.1.1.4.2|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.6.1|70|8775677657392
|
||||
1.3.6.1.2.1.31.1.1.1.6.2|70|8775677703256
|
||||
1.3.6.1.2.1.31.1.1.1.7.1|70|6416607025
|
||||
1.3.6.1.2.1.31.1.1.1.7.2|70|6416607025
|
||||
1.3.6.1.2.1.31.1.1.1.6.1|70|4175312142689
|
||||
1.3.6.1.2.1.31.1.1.1.6.2|70|248811614795
|
||||
1.3.6.1.2.1.31.1.1.1.7.1|70|3039089666
|
||||
1.3.6.1.2.1.31.1.1.1.7.2|70|1709207255
|
||||
1.3.6.1.2.1.31.1.1.1.8.1|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.8.2|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.9.1|70|285444070
|
||||
1.3.6.1.2.1.31.1.1.1.9.2|70|285444070
|
||||
1.3.6.1.2.1.31.1.1.1.10.1|70|702075286478
|
||||
1.3.6.1.2.1.31.1.1.1.10.2|70|702075286478
|
||||
1.3.6.1.2.1.31.1.1.1.11.1|70|4278065397
|
||||
1.3.6.1.2.1.31.1.1.1.11.2|70|4278065397
|
||||
1.3.6.1.2.1.31.1.1.1.9.1|70|65620835
|
||||
1.3.6.1.2.1.31.1.1.1.9.2|70|930254
|
||||
1.3.6.1.2.1.31.1.1.1.10.1|70|248796010435
|
||||
1.3.6.1.2.1.31.1.1.1.10.2|70|4173578776447
|
||||
1.3.6.1.2.1.31.1.1.1.11.1|70|1708983354
|
||||
1.3.6.1.2.1.31.1.1.1.11.2|70|3038036927
|
||||
1.3.6.1.2.1.31.1.1.1.12.1|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.12.2|70|0
|
||||
1.3.6.1.2.1.31.1.1.1.13.1|70|253123
|
||||
1.3.6.1.2.1.31.1.1.1.13.2|70|253123
|
||||
1.3.6.1.2.1.31.1.1.1.13.1|70|534384
|
||||
1.3.6.1.2.1.31.1.1.1.13.2|70|36690498
|
||||
1.3.6.1.2.1.31.1.1.1.14.1|2|0
|
||||
1.3.6.1.2.1.31.1.1.1.14.2|2|0
|
||||
1.3.6.1.2.1.31.1.1.1.15.1|66|0
|
||||
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.1|66|100000000
|
||||
1.3.6.1.2.1.31.1.1.1.15.2|66|194969600
|
||||
1.3.6.1.2.1.31.1.1.1.16.1|2|0
|
||||
1.3.6.1.2.1.31.1.1.1.16.2|2|0
|
||||
1.3.6.1.2.1.31.1.1.1.17.1|2|0
|
||||
@@ -454,23 +477,27 @@
|
||||
1.3.6.1.2.1.31.1.2.1.3.1|2|0
|
||||
1.3.6.1.2.1.31.1.2.1.3.2|2|0
|
||||
1.3.6.1.4.1.161.19.3.1.3.1.0|2|1
|
||||
1.3.6.1.4.1.161.19.3.1.4.1.35.2|4|-67.5
|
||||
1.3.6.1.4.1.161.19.3.1.4.1.74.2|2|13
|
||||
1.3.6.1.4.1.161.19.3.1.4.1.84.2|2|13
|
||||
1.3.6.1.4.1.161.19.3.1.4.1.86.2|4|-1.1
|
||||
1.3.6.1.4.1.161.19.3.1.4.1.87.2|4|-72.3
|
||||
1.3.6.1.4.1.161.19.3.1.4.1.88.2|4|-71.7
|
||||
1.3.6.1.4.1.161.19.3.1.7.1.0|66|30
|
||||
1.3.6.1.4.1.161.19.3.1.7.32.0|65|2
|
||||
1.3.6.1.4.1.161.19.3.1.7.37.0|2|5805000
|
||||
1.3.6.1.4.1.161.19.3.1.12.1.1.0|2|46
|
||||
1.3.6.1.4.1.161.19.3.1.12.1.2.0|2|72
|
||||
1.3.6.1.4.1.161.19.3.1.4.1.35.2|4|-62.8
|
||||
1.3.6.1.4.1.161.19.3.1.4.1.74.2|2|24
|
||||
1.3.6.1.4.1.161.19.3.1.4.1.84.2|2|30
|
||||
1.3.6.1.4.1.161.19.3.1.4.1.86.2|4|-2.5
|
||||
1.3.6.1.4.1.161.19.3.1.4.1.87.2|4|-67.4
|
||||
1.3.6.1.4.1.161.19.3.1.4.1.88.2|4|-64.9
|
||||
1.3.6.1.4.1.161.19.3.1.7.1.0|66|34
|
||||
1.3.6.1.4.1.161.19.3.1.7.32.0|65|1
|
||||
1.3.6.1.4.1.161.19.3.1.7.37.0|2|5785000
|
||||
1.3.6.1.4.1.161.19.3.1.12.1.1.0|2|18
|
||||
1.3.6.1.4.1.161.19.3.1.12.1.2.0|2|16
|
||||
1.3.6.1.4.1.161.19.3.1.12.2.1.0|2|15
|
||||
1.3.6.1.4.1.161.19.3.1.12.2.2.0|2|15
|
||||
1.3.6.1.4.1.161.19.3.1.12.2.29.0|2|45
|
||||
1.3.6.1.4.1.161.19.3.1.12.2.30.0|2|2
|
||||
1.3.6.1.4.1.161.19.3.1.12.2.31.0|2|39
|
||||
1.3.6.1.4.1.161.19.3.3.1.6.0|4|5.7GHz MU-MIMO OFDM - Multipoint - Access Point
|
||||
1.3.6.1.4.1.161.19.3.3.1.35.0|2|40
|
||||
1.3.6.1.4.1.161.19.3.1.12.3.1.0|2|9
|
||||
1.3.6.1.4.1.161.19.3.1.12.3.2.0|2|10
|
||||
1.3.6.1.4.1.161.19.3.3.1.6.0|4|5.7GHz MIMO OFDM - Multipoint - Access Point
|
||||
1.3.6.1.4.1.161.19.3.3.1.35.0|2|20
|
||||
1.3.6.1.4.1.161.19.3.3.1.95.0|66|0
|
||||
1.3.6.1.4.1.161.19.3.3.1.97.0|66|0
|
||||
1.3.6.1.4.1.161.19.3.3.1.97.0|66|2
|
||||
1.3.6.1.4.1.161.19.3.3.1.223.0|65|0
|
||||
1.3.6.1.6.3.10.2.1.3.0|2|3713152
|
||||
1.3.6.1.6.3.10.2.1.3.0|2|1936642
|
||||
|
Reference in New Issue
Block a user