Fix typo in default mibs for SnmpQuery (#15297)

This commit is contained in:
Tony Murray
2023-09-08 08:32:01 -05:00
committed by GitHub
parent f670a8074a
commit e978025553

View File

@@ -83,7 +83,7 @@ class NetSnmpQuery implements SnmpQueryInterface
private Device $device;
private bool $abort = false;
// defaults for net-snmp https://net-snmp.sourceforge.io/docs/man/snmpcmd.html
private array $mibs = ['SNMPv2-TC', 'SNMPv2-MIB', 'IF-MIB', 'IP-MIB', 'TCP-MIB', 'UDP-MIB', 'SNMP-VACM-MIB'];
private array $mibs = ['SNMPv2-TC', 'SNMPv2-MIB', 'IF-MIB', 'IP-MIB', 'TCP-MIB', 'UDP-MIB', 'NET-SNMP-VACM-MIB'];
public function __construct()
{