mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
F5 BIG-IP state and count sensors (#15865)
* F5 BIG-IP state and count sensors * F5 BIG-IP state and count sensors
This commit is contained in:
@@ -1,3 +1,4 @@
|
||||
mib: F5-BIGIP-SYSTEM-MIB
|
||||
modules:
|
||||
os:
|
||||
hardware: F5-BIGIP-SYSTEM-MIB::sysPlatformInfoMarketingName.0
|
||||
@@ -20,3 +21,94 @@ modules:
|
||||
total: F5-BIGIP-SYSTEM-MIB::sysGlobalHostSwapTotal
|
||||
descr: 'Swap Memory'
|
||||
index: 2
|
||||
sensors:
|
||||
state:
|
||||
data:
|
||||
-
|
||||
oid: sysCmFailoverStatusId
|
||||
num_oid: '.1.3.6.1.4.1.3375.2.1.14.3.1.{{ $index }}'
|
||||
index: 'sysCmFailoverStatusId.{{ $index }}'
|
||||
descr: Failover State
|
||||
group: HA
|
||||
states:
|
||||
- { value: 0, descr: 'Unknown', graph: 0, generic: 3 }
|
||||
- { value: 1, descr: 'OffLine', graph: 0, generic: 2 }
|
||||
- { value: 2, descr: 'ForcedOffline', graph: 0, generic: 2 }
|
||||
- { value: 3, descr: 'Standby', graph: 0, generic: 0 }
|
||||
- { value: 4, descr: 'Active', graph: 0, generic: 0 }
|
||||
-
|
||||
oid: sysCmSyncStatusId
|
||||
num_oid: '.1.3.6.1.4.1.3375.2.1.14.1.1.{{ $index }}'
|
||||
index: 'sysCmSyncStatusId.{{ $index }}'
|
||||
descr: Sync State
|
||||
group: HA
|
||||
states:
|
||||
- { value: 0, descr: 'unknown', graph: 0, generic: 3 }
|
||||
- { value: 1, descr: 'syncing', graph: 0, generic: 1 }
|
||||
- { value: 2, descr: 'needManualSync', graph: 0, generic: 2 }
|
||||
- { value: 3, descr: 'inSync', graph: 0, generic: 0 }
|
||||
- { value: 4, descr: 'syncFailed', graph: 0, generic: 1 }
|
||||
- { value: 5, descr: 'syncDisconnected', graph: 0, generic: 2 }
|
||||
- { value: 6, descr: 'standalone', graph: 0, generic: 0 }
|
||||
- { value: 7, descr: 'awaitingInitialSync', graph: 0, generic: 1 }
|
||||
- { value: 8, descr: 'incompatibleVersion', graph: 0, generic: 2 }
|
||||
- { value: 9, descr: 'partialSync', graph: 0, generic: 2 }
|
||||
-
|
||||
oid: sysCmFailoverStatusColor
|
||||
num_oid: '.1.3.6.1.4.1.3375.2.1.14.3.3.{{ $index }}'
|
||||
index: 'sysCmFailoverStatusColor.{{ $index }}'
|
||||
descr: Failover State Color
|
||||
group: HA
|
||||
states:
|
||||
- { value: 0, descr: 'Green: functioning correctly', graph: 0, generic: 0 }
|
||||
- { value: 1, descr: 'Yellow: functioning suboptimally', graph: 0, generic: 1 }
|
||||
- { value: 2, descr: 'Red: requires attention to function correctly', graph: 0, generic: 2 }
|
||||
- { value: 3, descr: 'Blue: status is unknown', graph: 0, generic: 3 }
|
||||
- { value: 4, descr: 'Gray: intentionally not functioning', graph: 0, generic: 0 }
|
||||
- { value: 5, descr: 'Black: not connected to any peers', graph: 0, generic: 2 }
|
||||
-
|
||||
oid: sysChassisPowerSupplyStatus
|
||||
num_oid: '.1.3.6.1.4.1.3375.2.1.3.2.2.2.1.2.{{ $index }}'
|
||||
index: 'sysChassisPowerSupplyStatus.{{ $index }}'
|
||||
descr: "Power Supply Status {{ $index }}"
|
||||
group: Hardware
|
||||
states:
|
||||
- { value: 0, descr: 'Bad', graph: 0, generic: 2 }
|
||||
- { value: 1, descr: 'Good', graph: 0, generic: 0 }
|
||||
- { value: 2, descr: 'NotPresent', graph: 0, generic: 3 }
|
||||
-
|
||||
oid: sysChassisFanStatus
|
||||
num_oid: '.1.3.6.1.4.1.3375.2.1.3.2.1.2.1.2.{{ $index }}'
|
||||
index: 'sysChassisFanStatus.{{ $index }}'
|
||||
descr: "Fan Status {{ $index }}"
|
||||
group: Hardware
|
||||
states:
|
||||
- { value: 0, descr: 'Bad', graph: 0, generic: 2 }
|
||||
- { value: 1, descr: 'Good', graph: 0, generic: 0 }
|
||||
- { value: 2, descr: 'NotPresent', graph: 0, generic: 3 }
|
||||
count:
|
||||
data:
|
||||
-
|
||||
oid: sysStatClientCurConns
|
||||
num_oid: '.1.3.6.1.4.1.3375.2.1.1.2.1.8.{{ $index }}'
|
||||
index: 'sysStatClientCurConns.{{ $index }}'
|
||||
descr: 'Current connections from client-side'
|
||||
group: Connections
|
||||
-
|
||||
oid: sysStatServerCurConns
|
||||
num_oid: '.1.3.6.1.4.1.3375.2.1.1.2.1.15.{{ $index }}'
|
||||
index: 'sysStatServerCurConns.{{ $index }}'
|
||||
descr: 'Current connections from server-side'
|
||||
group: Connections
|
||||
-
|
||||
oid: sysStatClientCurConns1m
|
||||
num_oid: '.1.3.6.1.4.1.3375.2.1.1.2.1.79.{{ $index }}'
|
||||
index: 'sysStatClientCurConns1m.{{ $index }}'
|
||||
descr: 'Average current connections from client-side'
|
||||
group: Connections
|
||||
-
|
||||
oid: sysStatServerCurConns1m
|
||||
num_oid: '.1.3.6.1.4.1.3375.2.1.1.2.1.86.{{ $index }}'
|
||||
index: 'sysStatServerCurConns1m.{{ $index }}'
|
||||
descr: 'Average Current connections from server-side'
|
||||
group: Connections
|
||||
|
||||
@@ -1,133 +0,0 @@
|
||||
<?php
|
||||
|
||||
// Power Status OID (Value : 0 Bad, 1 Good, 2 NotPresent)
|
||||
// Common States - F5 Power supply and FanSpeed State
|
||||
$states = [
|
||||
['value' => 0, 'generic' => 2, 'graph' => 0, 'descr' => 'Bad'],
|
||||
['value' => 1, 'generic' => 0, 'graph' => 0, 'descr' => 'Good'],
|
||||
['value' => 2, 'generic' => 3, 'graph' => 0, 'descr' => 'NotPresent'],
|
||||
];
|
||||
|
||||
$temp = snmpwalk_cache_multi_oid($device, 'sysChassisPowerSupplyTable', [], 'F5-BIGIP-SYSTEM-MIB');
|
||||
if (is_array($temp)) {
|
||||
echo 'F5 power supply: ';
|
||||
//Create State Index
|
||||
$state_name = 'sysChassisPowerSupplyStatus';
|
||||
create_state_index($state_name, $states);
|
||||
|
||||
foreach ($temp as $index => $data) {
|
||||
$descr = 'sysChassisPowerSupplyStatus.' . $temp[$index]['sysChassisPowerSupplyIndex'];
|
||||
$current = $data['sysChassisPowerSupplyStatus'];
|
||||
$sensorType = 'f5';
|
||||
$oid = '.1.3.6.1.4.1.3375.2.1.3.2.2.2.1.2.' . $index;
|
||||
discover_sensor($valid['sensor'], 'state', $device, $oid, $index, $state_name, $descr, 1, 1, null, null, null, null, $current, 'snmp', $index);
|
||||
|
||||
//Create Sensor To State Index
|
||||
create_sensor_to_state_index($device, $state_name, $index);
|
||||
} // End foreach (array_keys($temp) as $index)
|
||||
} // End if (is_array($temp))
|
||||
|
||||
$temp = snmpwalk_cache_multi_oid($device, 'sysChassisFanStatus', [], 'F5-BIGIP-SYSTEM-MIB');
|
||||
if (is_array($temp)) {
|
||||
echo 'F5 FanSpeed State: ';
|
||||
//Create State Index
|
||||
$state_name = 'sysChassisFanStatus';
|
||||
create_state_index($state_name, $states);
|
||||
foreach (array_keys($temp) as $index) {
|
||||
$descr = 'Fan Speed Status ' . $index;
|
||||
$current = $temp[$index]['sysChassisFanStatus'];
|
||||
$sensorType = 'f5';
|
||||
$oid = '.1.3.6.1.4.1.3375.2.1.3.2.1.2.1.2.' . $index;
|
||||
discover_sensor($valid['sensor'], 'state', $device, $oid, $index, $state_name, $descr, 1, 1, null, null, null, null, $current, 'snmp', $index);
|
||||
|
||||
//Create Sensor To State Index
|
||||
create_sensor_to_state_index($device, $state_name, $index);
|
||||
} // End foreach (array_keys($temp) as $index)
|
||||
} // End if (is_array($temp))
|
||||
|
||||
$temp = snmpwalk_cache_multi_oid($device, 'sysCmFailoverStatus', [], 'F5-BIGIP-SYSTEM-MIB');
|
||||
|
||||
if (is_array($temp)) {
|
||||
echo 'F5 FailOver State: ';
|
||||
//Create State Index
|
||||
$state_name = 'sysCmFailoverStatusId';
|
||||
$states = [
|
||||
['value' => 0, 'generic' => 3, 'graph' => 0, 'descr' => 'Unknown'],
|
||||
['value' => 1, 'generic' => 2, 'graph' => 0, 'descr' => 'OffLine'],
|
||||
['value' => 2, 'generic' => 2, 'graph' => 0, 'descr' => 'ForcedOffline'],
|
||||
['value' => 3, 'generic' => 1, 'graph' => 0, 'descr' => 'Standby'],
|
||||
['value' => 4, 'generic' => 0, 'graph' => 0, 'descr' => 'Active'],
|
||||
];
|
||||
create_state_index($state_name, $states);
|
||||
|
||||
foreach (array_keys($temp) as $index) {
|
||||
$descr = 'sysCmFailoverStatusId.' . $temp[$index]['sysCmFailoverStatusId'];
|
||||
$current = $temp[$index]['sysCmFailoverStatusId'];
|
||||
$sensorType = 'f5';
|
||||
$oid = '.1.3.6.1.4.1.3375.2.1.14.3.1.' . $index;
|
||||
discover_sensor($valid['sensor'], 'state', $device, $oid, $index, $state_name, $descr, 1, 1, null, null, null, null, $current, 'snmp', $index);
|
||||
|
||||
//Create Sensor To State Index
|
||||
create_sensor_to_state_index($device, $state_name, $index);
|
||||
} // End foreach (array_keys($temp) as $index)
|
||||
} // End if (is_array($temp))
|
||||
|
||||
$temp = snmpwalk_cache_multi_oid($device, 'sysCmSyncStatusId', [], 'F5-BIGIP-SYSTEM-MIB');
|
||||
|
||||
if (is_array($temp)) {
|
||||
echo 'F5 Sync State: ';
|
||||
//Create State Index
|
||||
$state_name = 'sysCmSyncStatusId';
|
||||
$states = [
|
||||
['value' => 0, 'generic' => 3, 'graph' => 0, 'descr' => 'unknown'],
|
||||
['value' => 1, 'generic' => 1, 'graph' => 0, 'descr' => 'syncing'],
|
||||
['value' => 2, 'generic' => 2, 'graph' => 0, 'descr' => 'needManualSync'],
|
||||
['value' => 3, 'generic' => 0, 'graph' => 0, 'descr' => 'inSync'],
|
||||
['value' => 4, 'generic' => 1, 'graph' => 0, 'descr' => 'syncFailed'],
|
||||
['value' => 5, 'generic' => 2, 'graph' => 0, 'descr' => 'syncDisconnected'],
|
||||
['value' => 6, 'generic' => 0, 'graph' => 0, 'descr' => 'standalone'],
|
||||
['value' => 7, 'generic' => 1, 'graph' => 0, 'descr' => 'awaitingInitialSync'],
|
||||
['value' => 8, 'generic' => 2, 'graph' => 0, 'descr' => 'incompatibleVersion'],
|
||||
['value' => 9, 'generic' => 2, 'graph' => 0, 'descr' => 'partialSync'],
|
||||
];
|
||||
create_state_index($state_name, $states);
|
||||
|
||||
foreach (array_keys($temp) as $index) {
|
||||
$descr = 'sysCmSyncStatusId.' . $index;
|
||||
$current = $temp[$index]['sysCmSyncStatusId'];
|
||||
$sensorType = 'f5';
|
||||
$oid = '.1.3.6.1.4.1.3375.2.1.14.1.1.' . $index;
|
||||
discover_sensor($valid['sensor'], 'state', $device, $oid, $index, $state_name, $descr, 1, 1, null, null, null, null, $current, 'snmp', $index);
|
||||
|
||||
//Create Sensor To State Index
|
||||
create_sensor_to_state_index($device, $state_name, $index);
|
||||
} // End foreach (array_keys($temp) as $index)
|
||||
} // End if (is_array($temp))
|
||||
|
||||
$temp = snmpwalk_cache_multi_oid($device, 'sysCmFailoverStatusColor', [], 'F5-BIGIP-SYSTEM-MIB');
|
||||
|
||||
if (is_array($temp)) {
|
||||
echo 'F5 FailOver State Color: ';
|
||||
//Create State Index
|
||||
$state_name = 'sysCmFailoverStatusColor';
|
||||
$states = [
|
||||
['value' => 0, 'generic' => 0, 'graph' => 0, 'descr' => 'Green: functioning correctly'],
|
||||
['value' => 1, 'generic' => 1, 'graph' => 0, 'descr' => 'Yellow: functioning suboptimally'],
|
||||
['value' => 2, 'generic' => 2, 'graph' => 0, 'descr' => 'Red: requires attention to function correctly'],
|
||||
['value' => 3, 'generic' => 3, 'graph' => 0, 'descr' => 'Blue: status is unknown'],
|
||||
['value' => 4, 'generic' => 0, 'graph' => 0, 'descr' => 'Gray: intentionally not functioning'],
|
||||
['value' => 5, 'generic' => 2, 'graph' => 0, 'descr' => 'Black: not connected to any peers'],
|
||||
];
|
||||
create_state_index($state_name, $states);
|
||||
|
||||
foreach (array_keys($temp) as $index) {
|
||||
$descr = 'sysCmFailoverStatusColor.' . $index;
|
||||
$current = $temp[$index]['sysCmFailoverStatusColor'];
|
||||
$sensorType = 'f5';
|
||||
$oid = '.1.3.6.1.4.1.3375.2.1.14.3.3.' . $index;
|
||||
discover_sensor($valid['sensor'], 'state', $device, $oid, $index, $state_name, $descr, 1, 1, null, null, null, null, $current, 'snmp', $index);
|
||||
|
||||
//Create Sensor To State Index
|
||||
create_sensor_to_state_index($device, $state_name, $index);
|
||||
} // End foreach (array_keys($temp) as $index)
|
||||
} // End if (is_array($temp))
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,579 @@
|
||||
1.3.6.1.2.1.1.1.0|4|Linux bigip1.lab 2.6.32-279.19.1.el6.f5.x86_64 #1 SMP Wed Mar 12 15:01:03 PDT 2014 x86_64
|
||||
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.3375.2.1.3.4.43
|
||||
1.3.6.1.2.1.1.3.0|67|1962890
|
||||
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.32|4|mgmt
|
||||
1.3.6.1.2.1.2.2.1.2.48|4|1.1
|
||||
1.3.6.1.2.1.2.2.1.2.64|4|1.2
|
||||
1.3.6.1.2.1.2.2.1.2.80|4|1.3
|
||||
1.3.6.1.2.1.2.2.1.2.96|4|1.4
|
||||
1.3.6.1.2.1.2.2.1.2.112|4|1.5
|
||||
1.3.6.1.2.1.2.2.1.2.128|4|1.6
|
||||
1.3.6.1.2.1.2.2.1.2.144|4|1.7
|
||||
1.3.6.1.2.1.2.2.1.2.160|4|/Common/Lan
|
||||
1.3.6.1.2.1.2.2.1.2.176|4|/Common/Sync
|
||||
1.3.6.1.2.1.2.2.1.2.192|4|/Common/Wan
|
||||
1.3.6.1.2.1.2.2.1.3.32|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.48|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.64|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.80|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.96|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.112|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.128|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.144|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.160|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.176|2|6
|
||||
1.3.6.1.2.1.2.2.1.3.192|2|6
|
||||
1.3.6.1.2.1.2.2.1.4.32|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.48|2|9198
|
||||
1.3.6.1.2.1.2.2.1.4.64|2|9198
|
||||
1.3.6.1.2.1.2.2.1.4.80|2|9198
|
||||
1.3.6.1.2.1.2.2.1.4.96|2|9198
|
||||
1.3.6.1.2.1.2.2.1.4.112|2|9198
|
||||
1.3.6.1.2.1.2.2.1.4.128|2|9198
|
||||
1.3.6.1.2.1.2.2.1.4.144|2|9198
|
||||
1.3.6.1.2.1.2.2.1.4.160|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.176|2|1500
|
||||
1.3.6.1.2.1.2.2.1.4.192|2|1500
|
||||
1.3.6.1.2.1.2.2.1.6.32|4x|0c2aedc00000
|
||||
1.3.6.1.2.1.2.2.1.6.48|4x|0c2aedc00001
|
||||
1.3.6.1.2.1.2.2.1.6.64|4x|0c2aedc00002
|
||||
1.3.6.1.2.1.2.2.1.6.80|4x|0c2aedc00003
|
||||
1.3.6.1.2.1.2.2.1.6.96|4x|0c2aedc00004
|
||||
1.3.6.1.2.1.2.2.1.6.112|4x|0c2aedc00005
|
||||
1.3.6.1.2.1.2.2.1.6.128|4x|0c2aedc00006
|
||||
1.3.6.1.2.1.2.2.1.6.144|4x|0c2aedc00007
|
||||
1.3.6.1.2.1.2.2.1.6.160|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.176|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.6.192|4x|000000000000
|
||||
1.3.6.1.2.1.2.2.1.7.32|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.48|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.64|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.80|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.96|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.112|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.128|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.144|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.160|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.176|2|1
|
||||
1.3.6.1.2.1.2.2.1.7.192|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.32|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.48|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.64|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.80|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.96|2|6
|
||||
1.3.6.1.2.1.2.2.1.8.112|2|6
|
||||
1.3.6.1.2.1.2.2.1.8.128|2|6
|
||||
1.3.6.1.2.1.2.2.1.8.144|2|6
|
||||
1.3.6.1.2.1.2.2.1.8.160|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.176|2|1
|
||||
1.3.6.1.2.1.2.2.1.8.192|2|1
|
||||
1.3.6.1.2.1.2.2.1.9.32|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.48|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.64|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.80|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.96|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.112|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.128|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.144|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.160|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.176|67|0
|
||||
1.3.6.1.2.1.2.2.1.9.192|67|0
|
||||
1.3.6.1.2.1.2.2.1.13.32|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.48|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.64|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.80|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.96|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.112|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.128|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.144|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.160|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.176|65|0
|
||||
1.3.6.1.2.1.2.2.1.13.192|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.32|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.48|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.64|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.80|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.96|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.112|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.128|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.144|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.160|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.176|65|0
|
||||
1.3.6.1.2.1.2.2.1.14.192|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.32|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.48|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.64|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.80|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.96|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.112|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.128|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.144|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.160|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.176|65|0
|
||||
1.3.6.1.2.1.2.2.1.19.192|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.32|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.48|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.64|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.80|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.96|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.112|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.128|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.144|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.160|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.176|65|0
|
||||
1.3.6.1.2.1.2.2.1.20.192|65|0
|
||||
1.3.6.1.2.1.4.3.0|65|361832
|
||||
1.3.6.1.2.1.4.4.0|65|0
|
||||
1.3.6.1.2.1.4.5.0|65|0
|
||||
1.3.6.1.2.1.4.6.0|65|0
|
||||
1.3.6.1.2.1.4.7.0|65|0
|
||||
1.3.6.1.2.1.4.8.0|65|0
|
||||
1.3.6.1.2.1.4.9.0|65|225796
|
||||
1.3.6.1.2.1.4.10.0|65|643352
|
||||
1.3.6.1.2.1.4.11.0|65|0
|
||||
1.3.6.1.2.1.4.12.0|65|0
|
||||
1.3.6.1.2.1.4.14.0|65|0
|
||||
1.3.6.1.2.1.4.15.0|65|0
|
||||
1.3.6.1.2.1.4.16.0|65|0
|
||||
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.0.1|2|14
|
||||
1.3.6.1.2.1.4.20.1.2.10.10.10.41|2|2
|
||||
1.3.6.1.2.1.4.20.1.2.10.10.14.2|2|13
|
||||
1.3.6.1.2.1.4.20.1.2.127.0.0.1|2|1
|
||||
1.3.6.1.2.1.4.20.1.2.127.1.1.1|2|12
|
||||
1.3.6.1.2.1.4.20.1.2.127.2.0.2|2|1
|
||||
1.3.6.1.2.1.4.20.1.2.127.3.0.0|2|11
|
||||
1.3.6.1.2.1.4.20.1.2.192.168.122.41|2|15
|
||||
1.3.6.1.2.1.4.20.1.3.10.10.0.1|64|255.255.255.252
|
||||
1.3.6.1.2.1.4.20.1.3.10.10.10.41|64|255.255.255.0
|
||||
1.3.6.1.2.1.4.20.1.3.10.10.14.2|64|255.255.255.0
|
||||
1.3.6.1.2.1.4.20.1.3.127.0.0.1|64|255.255.255.0
|
||||
1.3.6.1.2.1.4.20.1.3.127.1.1.1|64|255.255.255.0
|
||||
1.3.6.1.2.1.4.20.1.3.127.2.0.2|64|255.255.255.0
|
||||
1.3.6.1.2.1.4.20.1.3.127.3.0.0|64|255.255.255.255
|
||||
1.3.6.1.2.1.4.20.1.3.192.168.122.41|64|255.255.255.0
|
||||
1.3.6.1.2.1.4.22.1.2.2.10.10.10.11|4x|0C799D473901
|
||||
1.3.6.1.2.1.4.22.1.2.12.127.1.1.2|4x|000123456700
|
||||
1.3.6.1.2.1.4.22.1.2.12.127.1.1.3|4x|000123456701
|
||||
1.3.6.1.2.1.4.22.1.2.13.10.10.14.101|4x|7E3E7529AF95
|
||||
1.3.6.1.2.1.4.31.1.1.3.1|65|361431
|
||||
1.3.6.1.2.1.4.31.1.1.3.2|65|42
|
||||
1.3.6.1.2.1.4.31.1.1.4.1|70|361431
|
||||
1.3.6.1.2.1.4.31.1.1.4.2|70|42
|
||||
1.3.6.1.2.1.4.31.1.1.6.1|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.6.2|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.7.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.7.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.9.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.9.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.10.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.10.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.12.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.12.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.13.1|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.13.2|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.14.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.14.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.15.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.15.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.16.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.16.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.17.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.17.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.18.1|65|225459
|
||||
1.3.6.1.2.1.4.31.1.1.18.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.19.1|70|225459
|
||||
1.3.6.1.2.1.4.31.1.1.19.2|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.20.1|65|642879
|
||||
1.3.6.1.2.1.4.31.1.1.20.2|65|38
|
||||
1.3.6.1.2.1.4.31.1.1.21.1|70|642879
|
||||
1.3.6.1.2.1.4.31.1.1.21.2|70|38
|
||||
1.3.6.1.2.1.4.31.1.1.22.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.22.2|65|1
|
||||
1.3.6.1.2.1.4.31.1.1.24.1|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.24.2|70|0
|
||||
1.3.6.1.2.1.4.31.1.1.25.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.25.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.28.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.28.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.29.1|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.29.2|65|0
|
||||
1.3.6.1.2.1.4.31.1.1.46.1|67|0
|
||||
1.3.6.1.2.1.4.31.1.1.46.2|67|0
|
||||
1.3.6.1.2.1.4.31.1.1.47.1|66|30000
|
||||
1.3.6.1.2.1.4.31.1.1.47.2|66|30000
|
||||
1.3.6.1.2.1.4.35.1.4.2.1.4.10.10.10.11|4x|0C799D473901
|
||||
1.3.6.1.2.1.4.35.1.4.12.1.4.127.1.1.2|4x|000123456700
|
||||
1.3.6.1.2.1.4.35.1.4.12.1.4.127.1.1.3|4x|000123456701
|
||||
1.3.6.1.2.1.4.35.1.4.13.1.4.10.10.14.101|4x|7E3E7529AF95
|
||||
1.3.6.1.2.1.4.35.1.4.14.1.4.10.10.0.2|4x|000000000000
|
||||
1.3.6.1.2.1.5.1.0|65|19309
|
||||
1.3.6.1.2.1.5.2.0|65|0
|
||||
1.3.6.1.2.1.5.3.0|65|19079
|
||||
1.3.6.1.2.1.5.4.0|65|0
|
||||
1.3.6.1.2.1.5.5.0|65|0
|
||||
1.3.6.1.2.1.5.6.0|65|0
|
||||
1.3.6.1.2.1.5.7.0|65|0
|
||||
1.3.6.1.2.1.5.8.0|65|228
|
||||
1.3.6.1.2.1.5.9.0|65|2
|
||||
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|19310
|
||||
1.3.6.1.2.1.5.15.0|65|0
|
||||
1.3.6.1.2.1.5.16.0|65|19079
|
||||
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|3
|
||||
1.3.6.1.2.1.5.22.0|65|228
|
||||
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.6.5.0|65|9913
|
||||
1.3.6.1.2.1.6.6.0|65|5258
|
||||
1.3.6.1.2.1.6.7.0|65|657
|
||||
1.3.6.1.2.1.6.8.0|65|6
|
||||
1.3.6.1.2.1.6.9.0|66|64
|
||||
1.3.6.1.2.1.6.10.0|65|197735
|
||||
1.3.6.1.2.1.6.11.0|65|209900
|
||||
1.3.6.1.2.1.6.12.0|65|2010
|
||||
1.3.6.1.2.1.6.14.0|65|0
|
||||
1.3.6.1.2.1.6.15.0|65|3925
|
||||
1.3.6.1.2.1.7.1.0|65|8725
|
||||
1.3.6.1.2.1.7.2.0|65|8
|
||||
1.3.6.1.2.1.7.3.0|65|0
|
||||
1.3.6.1.2.1.7.4.0|65|412540
|
||||
1.3.6.1.2.1.11.1.0|65|8359
|
||||
1.3.6.1.2.1.11.2.0|65|8359
|
||||
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|66482
|
||||
1.3.6.1.2.1.11.14.0|65|0
|
||||
1.3.6.1.2.1.11.15.0|65|2593
|
||||
1.3.6.1.2.1.11.16.0|65|0
|
||||
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|8383
|
||||
1.3.6.1.2.1.11.29.0|65|0
|
||||
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.25.1.1.0|67|1968811
|
||||
1.3.6.1.2.1.25.1.5.0|66|0
|
||||
1.3.6.1.2.1.25.1.6.0|66|233
|
||||
1.3.6.1.2.1.25.1.7.0|2|0
|
||||
1.3.6.1.2.1.25.2.3.1.1.1|2|1
|
||||
1.3.6.1.2.1.25.2.3.1.1.3|2|3
|
||||
1.3.6.1.2.1.25.2.3.1.1.6|2|6
|
||||
1.3.6.1.2.1.25.2.3.1.1.7|2|7
|
||||
1.3.6.1.2.1.25.2.3.1.1.10|2|10
|
||||
1.3.6.1.2.1.25.2.3.1.1.31|2|31
|
||||
1.3.6.1.2.1.25.2.3.1.1.32|2|32
|
||||
1.3.6.1.2.1.25.2.3.1.1.33|2|33
|
||||
1.3.6.1.2.1.25.2.3.1.1.34|2|34
|
||||
1.3.6.1.2.1.25.2.3.1.1.35|2|35
|
||||
1.3.6.1.2.1.25.2.3.1.1.36|2|36
|
||||
1.3.6.1.2.1.25.2.3.1.2.1|6|1.3.6.1.2.1.25.2.1.2
|
||||
1.3.6.1.2.1.25.2.3.1.2.3|6|1.3.6.1.2.1.25.2.1.3
|
||||
1.3.6.1.2.1.25.2.3.1.2.6|6|1.3.6.1.2.1.25.2.1.1
|
||||
1.3.6.1.2.1.25.2.3.1.2.7|6|1.3.6.1.2.1.25.2.1.1
|
||||
1.3.6.1.2.1.25.2.3.1.2.10|6|1.3.6.1.2.1.25.2.1.3
|
||||
1.3.6.1.2.1.25.2.3.1.2.31|6|1.3.6.1.2.1.25.2.1.4
|
||||
1.3.6.1.2.1.25.2.3.1.2.32|6|1.3.6.1.2.1.25.2.1.4
|
||||
1.3.6.1.2.1.25.2.3.1.2.33|6|1.3.6.1.2.1.25.2.1.4
|
||||
1.3.6.1.2.1.25.2.3.1.2.34|6|1.3.6.1.2.1.25.2.1.4
|
||||
1.3.6.1.2.1.25.2.3.1.2.35|6|1.3.6.1.2.1.25.2.1.4
|
||||
1.3.6.1.2.1.25.2.3.1.2.36|6|1.3.6.1.2.1.25.2.1.4
|
||||
1.3.6.1.2.1.25.2.3.1.3.1|4|Physical memory
|
||||
1.3.6.1.2.1.25.2.3.1.3.3|4|Virtual memory
|
||||
1.3.6.1.2.1.25.2.3.1.3.6|4|Memory buffers
|
||||
1.3.6.1.2.1.25.2.3.1.3.7|4|Cached memory
|
||||
1.3.6.1.2.1.25.2.3.1.3.10|4|Swap space
|
||||
1.3.6.1.2.1.25.2.3.1.3.31|4|/
|
||||
1.3.6.1.2.1.25.2.3.1.3.32|4|/config
|
||||
1.3.6.1.2.1.25.2.3.1.3.33|4|/usr
|
||||
1.3.6.1.2.1.25.2.3.1.3.34|4|/var
|
||||
1.3.6.1.2.1.25.2.3.1.3.35|4|/shared
|
||||
1.3.6.1.2.1.25.2.3.1.3.36|4|/var/log
|
||||
1.3.6.1.2.1.25.2.3.1.4.1|2|1024
|
||||
1.3.6.1.2.1.25.2.3.1.4.3|2|1024
|
||||
1.3.6.1.2.1.25.2.3.1.4.6|2|1024
|
||||
1.3.6.1.2.1.25.2.3.1.4.7|2|1024
|
||||
1.3.6.1.2.1.25.2.3.1.4.10|2|1024
|
||||
1.3.6.1.2.1.25.2.3.1.4.31|2|1024
|
||||
1.3.6.1.2.1.25.2.3.1.4.32|2|4096
|
||||
1.3.6.1.2.1.25.2.3.1.4.33|2|4096
|
||||
1.3.6.1.2.1.25.2.3.1.4.34|2|4096
|
||||
1.3.6.1.2.1.25.2.3.1.4.35|2|4096
|
||||
1.3.6.1.2.1.25.2.3.1.4.36|2|1024
|
||||
1.3.6.1.2.1.25.2.3.1.5.1|2|4063076
|
||||
1.3.6.1.2.1.25.2.3.1.5.3|2|5087068
|
||||
1.3.6.1.2.1.25.2.3.1.5.6|2|4063076
|
||||
1.3.6.1.2.1.25.2.3.1.5.7|2|346508
|
||||
1.3.6.1.2.1.25.2.3.1.5.10|2|1023992
|
||||
1.3.6.1.2.1.25.2.3.1.5.31|2|388741
|
||||
1.3.6.1.2.1.25.2.3.1.5.32|2|774084
|
||||
1.3.6.1.2.1.25.2.3.1.5.33|2|640028
|
||||
1.3.6.1.2.1.25.2.3.1.5.34|2|774084
|
||||
1.3.6.1.2.1.25.2.3.1.5.35|2|5160607
|
||||
1.3.6.1.2.1.25.2.3.1.5.36|2|495844
|
||||
1.3.6.1.2.1.25.2.3.1.6.1|2|3982464
|
||||
1.3.6.1.2.1.25.2.3.1.6.3|2|3993008
|
||||
1.3.6.1.2.1.25.2.3.1.6.6|2|35740
|
||||
1.3.6.1.2.1.25.2.3.1.6.7|2|346508
|
||||
1.3.6.1.2.1.25.2.3.1.6.10|2|10544
|
||||
1.3.6.1.2.1.25.2.3.1.6.31|2|216084
|
||||
1.3.6.1.2.1.25.2.3.1.6.32|2|19270
|
||||
1.3.6.1.2.1.25.2.3.1.6.33|2|468449
|
||||
1.3.6.1.2.1.25.2.3.1.6.34|2|91838
|
||||
1.3.6.1.2.1.25.2.3.1.6.35|2|640640
|
||||
1.3.6.1.2.1.25.2.3.1.6.36|2|17674
|
||||
1.3.6.1.2.1.25.3.2.1.1.768|2|768
|
||||
1.3.6.1.2.1.25.3.2.1.1.769|2|769
|
||||
1.3.6.1.2.1.25.3.2.1.1.1025|2|1025
|
||||
1.3.6.1.2.1.25.3.2.1.1.1026|2|1026
|
||||
1.3.6.1.2.1.25.3.2.1.1.1027|2|1027
|
||||
1.3.6.1.2.1.25.3.2.1.1.1028|2|1028
|
||||
1.3.6.1.2.1.25.3.2.1.1.1029|2|1029
|
||||
1.3.6.1.2.1.25.3.2.1.1.1030|2|1030
|
||||
1.3.6.1.2.1.25.3.2.1.1.1031|2|1031
|
||||
1.3.6.1.2.1.25.3.2.1.1.1032|2|1032
|
||||
1.3.6.1.2.1.25.3.2.1.1.1033|2|1033
|
||||
1.3.6.1.2.1.25.3.2.1.1.1034|2|1034
|
||||
1.3.6.1.2.1.25.3.2.1.1.1035|2|1035
|
||||
1.3.6.1.2.1.25.3.2.1.1.1036|2|1036
|
||||
1.3.6.1.2.1.25.3.2.1.1.1037|2|1037
|
||||
1.3.6.1.2.1.25.3.2.1.1.1038|2|1038
|
||||
1.3.6.1.2.1.25.3.2.1.1.1039|2|1039
|
||||
1.3.6.1.2.1.25.3.2.1.1.1040|2|1040
|
||||
1.3.6.1.2.1.25.3.2.1.1.1041|2|1041
|
||||
1.3.6.1.2.1.25.3.2.1.1.3072|2|3072
|
||||
1.3.6.1.2.1.25.3.2.1.2.768|6|1.3.6.1.2.1.25.3.1.3
|
||||
1.3.6.1.2.1.25.3.2.1.2.769|6|1.3.6.1.2.1.25.3.1.3
|
||||
1.3.6.1.2.1.25.3.2.1.2.1025|6|1.3.6.1.2.1.25.3.1.4
|
||||
1.3.6.1.2.1.25.3.2.1.2.1026|6|1.3.6.1.2.1.25.3.1.4
|
||||
1.3.6.1.2.1.25.3.2.1.2.1027|6|1.3.6.1.2.1.25.3.1.4
|
||||
1.3.6.1.2.1.25.3.2.1.2.1028|6|1.3.6.1.2.1.25.3.1.4
|
||||
1.3.6.1.2.1.25.3.2.1.2.1029|6|1.3.6.1.2.1.25.3.1.4
|
||||
1.3.6.1.2.1.25.3.2.1.2.1030|6|1.3.6.1.2.1.25.3.1.4
|
||||
1.3.6.1.2.1.25.3.2.1.2.1031|6|1.3.6.1.2.1.25.3.1.4
|
||||
1.3.6.1.2.1.25.3.2.1.2.1032|6|1.3.6.1.2.1.25.3.1.4
|
||||
1.3.6.1.2.1.25.3.2.1.2.1033|6|1.3.6.1.2.1.25.3.1.4
|
||||
1.3.6.1.2.1.25.3.2.1.2.1034|6|1.3.6.1.2.1.25.3.1.4
|
||||
1.3.6.1.2.1.25.3.2.1.2.1035|6|1.3.6.1.2.1.25.3.1.4
|
||||
1.3.6.1.2.1.25.3.2.1.2.1036|6|1.3.6.1.2.1.25.3.1.4
|
||||
1.3.6.1.2.1.25.3.2.1.2.1037|6|1.3.6.1.2.1.25.3.1.4
|
||||
1.3.6.1.2.1.25.3.2.1.2.1038|6|1.3.6.1.2.1.25.3.1.4
|
||||
1.3.6.1.2.1.25.3.2.1.2.1039|6|1.3.6.1.2.1.25.3.1.4
|
||||
1.3.6.1.2.1.25.3.2.1.2.1040|6|1.3.6.1.2.1.25.3.1.4
|
||||
1.3.6.1.2.1.25.3.2.1.2.1041|6|1.3.6.1.2.1.25.3.1.4
|
||||
1.3.6.1.2.1.25.3.2.1.2.3072|6|1.3.6.1.2.1.25.3.1.12
|
||||
1.3.6.1.2.1.25.3.2.1.3.768|4|GenuineIntel: Intel(R) Core(TM) i3-10100F CPU @ 3.60GHz
|
||||
1.3.6.1.2.1.25.3.2.1.3.769|4|GenuineIntel: Intel(R) Core(TM) i3-10100F CPU @ 3.60GHz
|
||||
1.3.6.1.2.1.25.3.2.1.3.1025|4|network interface lo
|
||||
1.3.6.1.2.1.25.3.2.1.3.1026|4|network interface eth0
|
||||
1.3.6.1.2.1.25.3.2.1.3.1027|4|network interface eth1
|
||||
1.3.6.1.2.1.25.3.2.1.3.1028|4|network interface eth2
|
||||
1.3.6.1.2.1.25.3.2.1.3.1029|4|network interface eth3
|
||||
1.3.6.1.2.1.25.3.2.1.3.1030|4|network interface eth4
|
||||
1.3.6.1.2.1.25.3.2.1.3.1031|4|network interface eth5
|
||||
1.3.6.1.2.1.25.3.2.1.3.1032|4|network interface eth6
|
||||
1.3.6.1.2.1.25.3.2.1.3.1033|4|network interface eth7
|
||||
1.3.6.1.2.1.25.3.2.1.3.1034|4|network interface tunl0
|
||||
1.3.6.1.2.1.25.3.2.1.3.1035|4|network interface mgmt_bp
|
||||
1.3.6.1.2.1.25.3.2.1.3.1036|4|network interface tmm0
|
||||
1.3.6.1.2.1.25.3.2.1.3.1037|4|network interface Lan
|
||||
1.3.6.1.2.1.25.3.2.1.3.1038|4|network interface Sync
|
||||
1.3.6.1.2.1.25.3.2.1.3.1039|4|network interface Wan
|
||||
1.3.6.1.2.1.25.3.2.1.3.1040|4|network interface http-tunnel
|
||||
1.3.6.1.2.1.25.3.2.1.3.1041|4|network interface socks-tunnel
|
||||
1.3.6.1.2.1.25.3.2.1.3.3072|4|Guessing that there's a floating point co-processor
|
||||
1.3.6.1.2.1.25.3.2.1.4.768|6|0.0
|
||||
1.3.6.1.2.1.25.3.2.1.4.769|6|0.0
|
||||
1.3.6.1.2.1.25.3.2.1.4.1025|6|0.0
|
||||
1.3.6.1.2.1.25.3.2.1.4.1026|6|0.0
|
||||
1.3.6.1.2.1.25.3.2.1.4.1027|6|0.0
|
||||
1.3.6.1.2.1.25.3.2.1.4.1028|6|0.0
|
||||
1.3.6.1.2.1.25.3.2.1.4.1029|6|0.0
|
||||
1.3.6.1.2.1.25.3.2.1.4.1030|6|0.0
|
||||
1.3.6.1.2.1.25.3.2.1.4.1031|6|0.0
|
||||
1.3.6.1.2.1.25.3.2.1.4.1032|6|0.0
|
||||
1.3.6.1.2.1.25.3.2.1.4.1033|6|0.0
|
||||
1.3.6.1.2.1.25.3.2.1.4.1034|6|0.0
|
||||
1.3.6.1.2.1.25.3.2.1.4.1035|6|0.0
|
||||
1.3.6.1.2.1.25.3.2.1.4.1036|6|0.0
|
||||
1.3.6.1.2.1.25.3.2.1.4.1037|6|0.0
|
||||
1.3.6.1.2.1.25.3.2.1.4.1038|6|0.0
|
||||
1.3.6.1.2.1.25.3.2.1.4.1039|6|0.0
|
||||
1.3.6.1.2.1.25.3.2.1.4.1040|6|0.0
|
||||
1.3.6.1.2.1.25.3.2.1.4.1041|6|0.0
|
||||
1.3.6.1.2.1.25.3.2.1.4.3072|6|0.0
|
||||
1.3.6.1.2.1.25.3.2.1.5.768|2|2
|
||||
1.3.6.1.2.1.25.3.2.1.5.769|2|2
|
||||
1.3.6.1.2.1.25.3.2.1.5.1025|2|2
|
||||
1.3.6.1.2.1.25.3.2.1.5.1026|2|2
|
||||
1.3.6.1.2.1.25.3.2.1.5.1027|2|2
|
||||
1.3.6.1.2.1.25.3.2.1.5.1028|2|2
|
||||
1.3.6.1.2.1.25.3.2.1.5.1029|2|2
|
||||
1.3.6.1.2.1.25.3.2.1.5.1030|2|2
|
||||
1.3.6.1.2.1.25.3.2.1.5.1031|2|2
|
||||
1.3.6.1.2.1.25.3.2.1.5.1032|2|2
|
||||
1.3.6.1.2.1.25.3.2.1.5.1033|2|2
|
||||
1.3.6.1.2.1.25.3.2.1.5.1034|2|5
|
||||
1.3.6.1.2.1.25.3.2.1.5.1035|2|2
|
||||
1.3.6.1.2.1.25.3.2.1.5.1036|2|2
|
||||
1.3.6.1.2.1.25.3.2.1.5.1037|2|2
|
||||
1.3.6.1.2.1.25.3.2.1.5.1038|2|2
|
||||
1.3.6.1.2.1.25.3.2.1.5.1039|2|2
|
||||
1.3.6.1.2.1.25.3.2.1.5.1040|2|2
|
||||
1.3.6.1.2.1.25.3.2.1.5.1041|2|2
|
||||
1.3.6.1.2.1.25.3.2.1.6.1025|65|0
|
||||
1.3.6.1.2.1.25.3.2.1.6.1026|65|0
|
||||
1.3.6.1.2.1.25.3.2.1.6.1027|65|0
|
||||
1.3.6.1.2.1.25.3.2.1.6.1028|65|0
|
||||
1.3.6.1.2.1.25.3.2.1.6.1029|65|0
|
||||
1.3.6.1.2.1.25.3.2.1.6.1030|65|0
|
||||
1.3.6.1.2.1.25.3.2.1.6.1031|65|0
|
||||
1.3.6.1.2.1.25.3.2.1.6.1032|65|0
|
||||
1.3.6.1.2.1.25.3.2.1.6.1033|65|0
|
||||
1.3.6.1.2.1.25.3.2.1.6.1034|65|0
|
||||
1.3.6.1.2.1.25.3.2.1.6.1035|65|8
|
||||
1.3.6.1.2.1.25.3.2.1.6.1036|65|0
|
||||
1.3.6.1.2.1.25.3.2.1.6.1037|65|0
|
||||
1.3.6.1.2.1.25.3.2.1.6.1038|65|0
|
||||
1.3.6.1.2.1.25.3.2.1.6.1039|65|0
|
||||
1.3.6.1.2.1.25.3.2.1.6.1040|65|0
|
||||
1.3.6.1.2.1.25.3.2.1.6.1041|65|0
|
||||
1.3.6.1.2.1.25.3.3.1.1.768|6|0.0
|
||||
1.3.6.1.2.1.25.3.3.1.1.769|6|0.0
|
||||
1.3.6.1.2.1.25.3.3.1.2.768|2|2
|
||||
1.3.6.1.2.1.25.3.3.1.2.769|2|1
|
||||
1.3.6.1.4.1.2021.9.1.1.1|2|1
|
||||
1.3.6.1.4.1.2021.9.1.1.2|2|2
|
||||
1.3.6.1.4.1.2021.9.1.2.1|4|/
|
||||
1.3.6.1.4.1.2021.9.1.2.2|4|/var
|
||||
1.3.6.1.4.1.2021.9.1.3.1|4|/dev/mapper/vg--db--hda-set.1.root
|
||||
1.3.6.1.4.1.2021.9.1.3.2|4|/dev/mapper/vg--db--hda-set.1._var
|
||||
1.3.6.1.4.1.2021.9.1.4.1|2|2000
|
||||
1.3.6.1.4.1.2021.9.1.4.2|2|10000
|
||||
1.3.6.1.4.1.2021.9.1.5.1|2|-1
|
||||
1.3.6.1.4.1.2021.9.1.5.2|2|-1
|
||||
1.3.6.1.4.1.2021.9.1.6.1|2|388741
|
||||
1.3.6.1.4.1.2021.9.1.6.2|2|3096336
|
||||
1.3.6.1.4.1.2021.9.1.7.1|2|152587
|
||||
1.3.6.1.4.1.2021.9.1.7.2|2|2571700
|
||||
1.3.6.1.4.1.2021.9.1.8.1|2|216084
|
||||
1.3.6.1.4.1.2021.9.1.8.2|2|367352
|
||||
1.3.6.1.4.1.2021.9.1.9.1|2|59
|
||||
1.3.6.1.4.1.2021.9.1.9.2|2|12
|
||||
1.3.6.1.4.1.2021.9.1.10.1|2|3
|
||||
1.3.6.1.4.1.2021.9.1.10.2|2|2
|
||||
1.3.6.1.4.1.2021.9.1.100.1|2|0
|
||||
1.3.6.1.4.1.2021.9.1.100.2|2|0
|
||||
1.3.6.1.4.1.2021.9.1.101.1|4|
|
||||
1.3.6.1.4.1.2021.9.1.101.2|4|
|
||||
1.3.6.1.4.1.2021.10.1.5.1|2|0
|
||||
1.3.6.1.4.1.2021.10.1.5.2|2|0
|
||||
1.3.6.1.4.1.2021.10.1.5.3|2|0
|
||||
1.3.6.1.4.1.2021.11.1.0|2|1
|
||||
1.3.6.1.4.1.2021.11.2.0|4|systemStats
|
||||
1.3.6.1.4.1.2021.11.3.0|2|0
|
||||
1.3.6.1.4.1.2021.11.4.0|2|0
|
||||
1.3.6.1.4.1.2021.11.5.0|2|13
|
||||
1.3.6.1.4.1.2021.11.6.0|2|1
|
||||
1.3.6.1.4.1.2021.11.7.0|2|1993
|
||||
1.3.6.1.4.1.2021.11.8.0|2|3186
|
||||
1.3.6.1.4.1.2021.11.9.0|2|0
|
||||
1.3.6.1.4.1.2021.11.10.0|2|0
|
||||
1.3.6.1.4.1.2021.11.11.0|2|98
|
||||
1.3.6.1.4.1.2021.11.50.0|65|38118
|
||||
1.3.6.1.4.1.2021.11.51.0|65|803
|
||||
1.3.6.1.4.1.2021.11.52.0|65|13227
|
||||
1.3.6.1.4.1.2021.11.53.0|65|3727298
|
||||
1.3.6.1.4.1.2021.11.54.0|65|8899
|
||||
1.3.6.1.4.1.2021.11.55.0|65|0
|
||||
1.3.6.1.4.1.2021.11.56.0|65|4
|
||||
1.3.6.1.4.1.2021.11.57.0|65|766660
|
||||
1.3.6.1.4.1.2021.11.58.0|65|1607052
|
||||
1.3.6.1.4.1.2021.11.59.0|65|42516391
|
||||
1.3.6.1.4.1.2021.11.60.0|65|67169976
|
||||
1.3.6.1.4.1.2021.11.61.0|65|656
|
||||
1.3.6.1.4.1.2021.11.62.0|65|3380
|
||||
1.3.6.1.4.1.2021.11.63.0|65|6071
|
||||
1.3.6.1.4.1.3375.2.1.1.2.1.7.0|70|4007
|
||||
1.3.6.1.4.1.3375.2.1.1.2.1.8.0|70|0
|
||||
1.3.6.1.4.1.3375.2.1.1.2.1.14.0|70|4009
|
||||
1.3.6.1.4.1.3375.2.1.1.2.1.15.0|70|0
|
||||
1.3.6.1.4.1.3375.2.1.1.2.1.44.0|70|2860515328
|
||||
1.3.6.1.4.1.3375.2.1.1.2.1.45.0|70|389159224
|
||||
1.3.6.1.4.1.3375.2.1.1.2.1.79.0|70|0
|
||||
1.3.6.1.4.1.3375.2.1.1.2.1.86.0|70|0
|
||||
1.3.6.1.4.1.3375.2.1.2.4.5.1.0|2|0
|
||||
1.3.6.1.4.1.3375.2.1.2.4.5.2.0|2|0
|
||||
1.3.6.1.4.1.3375.2.1.3.3.3.0|4|c0ed2a63-117c-6741-11d9da218714
|
||||
1.3.6.1.4.1.3375.2.1.3.5.2.0|4|BIG-IP Virtual Edition
|
||||
1.3.6.1.4.1.3375.2.1.4.2.0|4|11.5.1
|
||||
1.3.6.1.4.1.3375.2.1.11.1.2.1.2.3.103.116.109|2|1
|
||||
1.3.6.1.4.1.3375.2.1.14.1.1.0|2|5
|
||||
1.3.6.1.4.1.3375.2.1.14.3.1.0|2|4
|
||||
1.3.6.1.4.1.3375.2.1.14.3.3.0|2|0
|
||||
1.3.6.1.4.1.3375.2.2.5.1.2.1.1.18.47.67.111.109.109.111.110.47.112.111.111.108.45.116.101.115.116.101|4|/Common/pool-teste
|
||||
1.3.6.1.4.1.3375.2.2.5.1.2.1.2.18.47.67.111.109.109.111.110.47.112.111.111.108.45.116.101.115.116.101|2|2
|
||||
1.3.6.1.4.1.3375.2.2.5.1.2.1.4.18.47.67.111.109.109.111.110.47.112.111.111.108.45.116.101.115.116.101|2|0
|
||||
1.3.6.1.4.1.3375.2.2.5.1.2.1.5.18.47.67.111.109.109.111.110.47.112.111.111.108.45.116.101.115.116.101|2|0
|
||||
1.3.6.1.4.1.3375.2.2.5.1.2.1.6.18.47.67.111.109.109.111.110.47.112.111.111.108.45.116.101.115.116.101|2|3
|
||||
1.3.6.1.4.1.3375.2.2.5.1.2.1.8.18.47.67.111.109.109.111.110.47.112.111.111.108.45.116.101.115.116.101|2|1
|
||||
1.3.6.1.4.1.3375.2.2.5.1.2.1.17.18.47.67.111.109.109.111.110.47.112.111.111.108.45.116.101.115.116.101|4|/Common/http
|
||||
1.3.6.1.4.1.3375.2.2.5.3.2.1.1.18.47.67.111.109.109.111.110.47.112.111.111.108.45.116.101.115.116.101.20.47.67.111.109.109.111.110.47.49.48.46.49.48.46.49.52.46.49.48.49.80|4|/Common/pool-teste
|
||||
1.3.6.1.4.1.3375.2.2.5.3.2.1.3.18.47.67.111.109.109.111.110.47.112.111.111.108.45.116.101.115.116.101.20.47.67.111.109.109.111.110.47.49.48.46.49.48.46.49.52.46.49.48.49.80|4x|0A0A0E65
|
||||
1.3.6.1.4.1.3375.2.2.5.3.2.1.4.18.47.67.111.109.109.111.110.47.112.111.111.108.45.116.101.115.116.101.20.47.67.111.109.109.111.110.47.49.48.46.49.48.46.49.52.46.49.48.49.80|66|80
|
||||
1.3.6.1.4.1.3375.2.2.5.3.2.1.6.18.47.67.111.109.109.111.110.47.112.111.111.108.45.116.101.115.116.101.20.47.67.111.109.109.111.110.47.49.48.46.49.48.46.49.52.46.49.48.49.80|2|1
|
||||
1.3.6.1.4.1.3375.2.2.5.3.2.1.7.18.47.67.111.109.109.111.110.47.112.111.111.108.45.116.101.115.116.101.20.47.67.111.109.109.111.110.47.49.48.46.49.48.46.49.52.46.49.48.49.80|2|0
|
||||
1.3.6.1.4.1.3375.2.2.5.3.2.1.8.18.47.67.111.109.109.111.110.47.112.111.111.108.45.116.101.115.116.101.20.47.67.111.109.109.111.110.47.49.48.46.49.48.46.49.52.46.49.48.49.80|2|0
|
||||
1.3.6.1.4.1.3375.2.2.5.3.2.1.19.18.47.67.111.109.109.111.110.47.112.111.111.108.45.116.101.115.116.101.20.47.67.111.109.109.111.110.47.49.48.46.49.48.46.49.52.46.49.48.49.80|4|/Common/10.10.14.101
|
||||
1.3.6.1.4.1.3375.2.2.5.4.3.1.5.18.47.67.111.109.109.111.110.47.112.111.111.108.45.116.101.115.116.101.20.47.67.111.109.109.111.110.47.49.48.46.49.48.46.49.52.46.49.48.49.80|70|58
|
||||
1.3.6.1.4.1.3375.2.2.5.4.3.1.6.18.47.67.111.109.109.111.110.47.112.111.111.108.45.116.101.115.116.101.20.47.67.111.109.109.111.110.47.49.48.46.49.48.46.49.52.46.49.48.49.80|70|7822
|
||||
1.3.6.1.4.1.3375.2.2.5.4.3.1.7.18.47.67.111.109.109.111.110.47.112.111.111.108.45.116.101.115.116.101.20.47.67.111.109.109.111.110.47.49.48.46.49.48.46.49.52.46.49.48.49.80|70|46
|
||||
1.3.6.1.4.1.3375.2.2.5.4.3.1.8.18.47.67.111.109.109.111.110.47.112.111.111.108.45.116.101.115.116.101.20.47.67.111.109.109.111.110.47.49.48.46.49.48.46.49.52.46.49.48.49.80|70|6027
|
||||
1.3.6.1.4.1.3375.2.2.5.4.3.1.10.18.47.67.111.109.109.111.110.47.112.111.111.108.45.116.101.115.116.101.20.47.67.111.109.109.111.110.47.49.48.46.49.48.46.49.52.46.49.48.49.80|70|8
|
||||
1.3.6.1.4.1.3375.2.2.5.4.3.1.11.18.47.67.111.109.109.111.110.47.112.111.111.108.45.116.101.115.116.101.20.47.67.111.109.109.111.110.47.49.48.46.49.48.46.49.52.46.49.48.49.80|70|0
|
||||
1.3.6.1.4.1.3375.2.2.5.6.2.1.5.18.47.67.111.109.109.111.110.47.112.111.111.108.45.116.101.115.116.101.20.47.67.111.109.109.111.110.47.49.48.46.49.48.46.49.52.46.49.48.49.80|2|1
|
||||
1.3.6.1.4.1.3375.2.2.5.6.2.1.6.18.47.67.111.109.109.111.110.47.112.111.111.108.45.116.101.115.116.101.20.47.67.111.109.109.111.110.47.49.48.46.49.48.46.49.52.46.49.48.49.80|2|1
|
||||
1.3.6.1.4.1.3375.2.2.5.6.2.1.8.18.47.67.111.109.109.111.110.47.112.111.111.108.45.116.101.115.116.101.20.47.67.111.109.109.111.110.47.49.48.46.49.48.46.49.52.46.49.48.49.80|4|Pool member is available
|
||||
1.3.6.1.4.1.3375.2.2.10.1.2.1.1.16.47.67.111.109.109.111.110.47.118.115.45.116.101.115.116.101|4|/Common/vs-teste
|
||||
1.3.6.1.4.1.3375.2.2.10.1.2.1.3.16.47.67.111.109.109.111.110.47.118.115.45.116.101.115.116.101|4x|0A0A0E64
|
||||
1.3.6.1.4.1.3375.2.2.10.1.2.1.6.16.47.67.111.109.109.111.110.47.118.115.45.116.101.115.116.101|66|80
|
||||
1.3.6.1.4.1.3375.2.2.10.1.2.1.19.16.47.67.111.109.109.111.110.47.118.115.45.116.101.115.116.101|4|/Common/pool-teste
|
||||
1.3.6.1.4.1.3375.2.2.10.2.3.1.6.16.47.67.111.109.109.111.110.47.118.115.45.116.101.115.116.101|70|51
|
||||
1.3.6.1.4.1.3375.2.2.10.2.3.1.7.16.47.67.111.109.109.111.110.47.118.115.45.116.101.115.116.101|70|7458
|
||||
1.3.6.1.4.1.3375.2.2.10.2.3.1.8.16.47.67.111.109.109.111.110.47.118.115.45.116.101.115.116.101|70|50
|
||||
1.3.6.1.4.1.3375.2.2.10.2.3.1.9.16.47.67.111.109.109.111.110.47.118.115.45.116.101.115.116.101|70|6267
|
||||
1.3.6.1.4.1.3375.2.2.10.2.3.1.11.16.47.67.111.109.109.111.110.47.118.115.45.116.101.115.116.101|70|8
|
||||
1.3.6.1.4.1.3375.2.2.10.2.3.1.12.16.47.67.111.109.109.111.110.47.118.115.45.116.101.115.116.101|70|0
|
||||
1.3.6.1.4.1.3375.2.2.10.13.2.1.2.16.47.67.111.109.109.111.110.47.118.115.45.116.101.115.116.101|2|1
|
||||
1.3.6.1.4.1.3375.2.2.10.13.2.1.5.16.47.67.111.109.109.111.110.47.118.115.45.116.101.115.116.101|4|The virtual server is available
|
||||
1.3.6.1.4.1.3375.2.6.1.4.3.0|70|0
|
||||
1.3.6.1.6.3.10.2.1.3.0|2|19628
|
||||
Reference in New Issue
Block a user