- diff --git a/includes/polling/ports/f5.inc.php b/includes/polling/ports/f5.inc.php
- index c3a04d3..ff68d87 100644
- --- a/includes/polling/ports/f5.inc.php
- +++ b/includes/polling/ports/f5.inc.php
- @@ -25,8 +25,11 @@
- $f5_stats = snmpwalk_cache_oid($device, 'sysIfxStat', array(), 'F5-BIGIP-SYSTEM-MIB');
- unset($f5_stats[0]);
- -$tmp_port_stats = snmpwalk_cache_oid($device, 'ifEntry', array(), 'IF-MIB', null, '-OQUst');
- -$tmp_port_stats = snmpwalk_cache_oid($device, 'ifXEntry', $tmp_port_stats, 'IF-MIB', null, '-OQUst');
- +
- +foreach ($ifmib_oids as $oid) {
- + echo "$oid ";
- + $tmp_port_stats = snmpwalk_cache_oid($device, $oid, $tmp_port_stats, 'IF-MIB', null, '-OQUst');
- +}
- $required = array(
- 'ifName' => 'sysIfxStatName',