
I’ve got a couple of devices with
SNMPv2-MIB::sysDescr.0 = STRING: Linux ypenburg 2.6.36.2-wndap660_620-WNDAP660_V3.0.5.0 #1 Fri Oct 23 19:40:53 IST 2015 ppc SNMPv2-MIB::sysObjectID.0 = OID: SNMPv2-SMI::enterprises.4526.100.7.13
So I’d like to expand the
$os = "netgear"; $config['os'][$os]['text'] = "Netgear"; $config['os'][$os]['type'] = "network"; $config['os'][$os]['icon'] = "netgear"; $config['os'][$os]['sysObjectID'][] = ".1.3.6.1.4.1.4526"; $config['os'][$os]['sysObjectID'][] = ".1.3.6.1.4.1.12622"; $config['os'][$os]['over'][0]['graph'] = "device_bits"; $config['os'][$os]['mibs'][] = "UCD-SNMP-MIB”;
with a much *narrower* section; specific for the wifi access point devices (all in 1.3.6.1.4.1.4526.100.4,7,8,15.*) - as to make auto discovery work better & get the incon/type right.
What is the best way to go about it (currently we use a small stub in include/discover/wifi that ‘forces’ the setting) — or is the config[] somehow able to go from narrow to broad already ?
Dw.