mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
12 lines
488 B
PHP
12 lines
488 B
PHP
|
<?php
|
||
|
|
||
|
return [
|
||
|
'trap_handlers' => [
|
||
|
'SNMPv2-MIB::authenticationFailure' => \LibreNMS\Snmptrap\Handler\AuthenticationFailure::class,
|
||
|
'BGP4-MIB::bgpEstablished' => \LibreNMS\Snmptrap\Handler\BgpEstablished::class,
|
||
|
'BGP4-MIB::bgpBackwardTransition' => \LibreNMS\Snmptrap\Handler\BgpBackwardTransition::class,
|
||
|
'IF-MIB::linkUp' => \LibreNMS\Snmptrap\Handler\LinkUp::class,
|
||
|
'IF-MIB::linkDown' => \LibreNMS\Snmptrap\Handler\LinkDown::class,
|
||
|
]
|
||
|
];
|