mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
2125c8640b
* MGE: Improve support for Galaxy devices * MGE: Improve support for Galaxy devices * MGE: Improve support for Galaxy devices * rfc1628 adaptations for Eaton MGE Galaxy 7000 * eaton-mge: test data on a Galaxy 7000 * rfc1628 adaptations for Eaton MGE Galaxy 7000 * rfc1628 adaptations for Eaton MGE Galaxy 7000 * eaton-mgeups: test data on a Galaxy 7000 * Add upsmgUtilityFailure and upsmgUtilityRestored trap support for eaton-mgeups * dev: eaton-mgeups: OID in the dynamic definition for discovery * dev: eaton-mgeups: cleaning * add contributor * add contributor
14 lines
707 B
PHP
14 lines
707 B
PHP
<?php
|
|
|
|
return [
|
|
'trap_handlers' => [
|
|
'SNMPv2-MIB::authenticationFailure' => \LibreNMS\Snmptrap\Handlers\AuthenticationFailure::class,
|
|
'BGP4-MIB::bgpEstablished' => \LibreNMS\Snmptrap\Handlers\BgpEstablished::class,
|
|
'BGP4-MIB::bgpBackwardTransition' => \LibreNMS\Snmptrap\Handlers\BgpBackwardTransition::class,
|
|
'IF-MIB::linkUp' => \LibreNMS\Snmptrap\Handlers\LinkUp::class,
|
|
'IF-MIB::linkDown' => \LibreNMS\Snmptrap\Handlers\LinkDown::class,
|
|
'MG-SNMP-UPS-MIB::upsmgUtilityFailure' => \LibreNMS\Snmptrap\Handlers\UpsmgUtilityFailure::class,
|
|
'MG-SNMP-UPS-MIB::upsmgUtilityRestored' => \LibreNMS\Snmptrap\Handlers\UpsmgUtilityRestored::class,
|
|
]
|
|
];
|