diff options
author | Kristian Lyngstol <kly@kly.no> | 2016-03-16 22:09:57 +0000 |
---|---|---|
committer | Kristian Lyngstol <kly@kly.no> | 2016-03-16 22:09:57 +0000 |
commit | ae8d11f9e6383cfd0adfed47343f53f330883d7c (patch) | |
tree | 2ee10ec8317c968fff39bec44b399b4432540e7d /include/config.pm.dist | |
parent | 14a7305a06c2a9651593137094a8d2f39af66c05 (diff) |
NMS: Slightly better OID-list (not complete)
Diffstat (limited to 'include/config.pm.dist')
-rwxr-xr-x | include/config.pm.dist | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/include/config.pm.dist b/include/config.pm.dist index 382b4e2..492e02d 100755 --- a/include/config.pm.dist +++ b/include/config.pm.dist @@ -11,7 +11,28 @@ our $db_username = "nms"; our $db_password = "<removed>"; # NMS: What SNMP objects to fetch. -our @snmp_objects = [['ifTable'], ['ifXTable'], ['sysDescr'], ['sysName'],['ipForward']]; +# Some basics +our @snmp_objects = [ +['ifIndex'], +['sysNam'], +['sysDescr'], +['ifHighSpeed'], +['ifType'], +['ifName'], +['ifDescr'], +['ifAlias'], +['ifOperStatus'], +['ifAdminStatus'], +['ifLastChange'], +['ifHCInOctets'], +['ifHCOutOctets'], +['ifInDiscards'], +['ifOutDiscards'], +['ifInErrors'], +['ifOutErrors'], +['ifInUnknownProtos'], +['ifOutQLen'] +]; # Max SNMP polls to fire off at the same time. our $snmp_max = 20; |