ndum / laravel-snmp
A FreeDSx/SNMP SNMP-Wrapper for Laravel
Installs: 5 342
Dependents: 0
Suggesters: 0
Security: 0
Stars: 12
Watchers: 1
Forks: 3
Open Issues: 0
Type:laravel
Requires
- php: >=7.1
- freedsx/snmp: ^0.5.0
- illuminate/support: ~5.5|~6.0|~7.0|~8.0|~9.0|~10.0|~11.0
Requires (Dev)
- friendsofphp/php-cs-fixer: ^2.16
README
This Laravel-Package provides an simple Laravel-Wrapper for the excellent FreeDSx/SNMP class.
Requirements
Requires: Laravel >= 5.5 or higher
Installation
Install via Composer.
$ composer require ndum/laravel-snmp
Documentation
The official documentation can be found here
Examples
Traditionally:
use Ndum\Laravel\Snmp; $snmp = new Snmp(); $snmp->newClient('servername', 2, 'secret'); $result = $snmp->getValue('1.3.6.1.2.1.1.5.0'); ## hostname dd($result);
Facade:
use Ndum\Laravel\Facades\Snmp; $snmp = Snmp::newClient('servername', 2, 'secret'); $result = $snmp->getValue('1.3.6.1.2.1.1.5.0'); ## hostname dd($result);
Extras
Timeout-Settings:
use Ndum\Laravel\Snmp; $snmp = new Snmp(); $snmp->newClient('servername', 2, 'secret'); $snmp->setTimeoutConnectValue(5); # set a value for timeout_connect $snmp->setTimeoutReadValue(10); # set a value for timeout_read $result = $snmp->getValue('1.3.6.1.2.1.1.5.0'); ## hostname dd($result);
SNMP traps part 1. (sending traps):
v1
$snmp = new Snmp(); $snmp->newClient('targetserver', 1, 'secret', 162); # Parameters: # The enterprise OID to trigger (string) # The IP address. (string) # The generic trap type (int) # The specific trap type (int) # The system uptime (in seconds/int) # The OIDs and their values (string/int) $snmp->sendTrapV1('1.3.6.1.4.1.2021.251.1','localhost', 0, 0, 60, '1.3.6.1.2.1.1.3', 60);
v2c / v3
use Ndum\Laravel\Snmp; $snmp = new Snmp(); $snmp->newClient('targetserver', 2, 'secret', 162); # Parameters: # The system uptime (in seconds/int) # The trap OID (string) # The OIDs and their values (string/int) $snmp->sendTrap(60, '1.3.6.1.4.1.2021.251.1', '1.3.6.1.2.1.1.3', 60));
inform-request (same as v2c / v3 but require a response from target)
use Ndum\Laravel\Snmp; $snmp = new Snmp(); $snmp->newClient('targetserver', 2, 'secret', 162); # Parameters: # The system uptime (in seconds/int) # The trap OID (string) # The OIDs and their values (string/int) $snmp->sendInform(60, '1.3.6.1.4.1.2021.251.1', '1.3.6.1.2.1.1.3', 60));
SNMP traps part 2. (Receiving traps / trap sink):
- First, create a trap listener-class (examples can be found here
- Then use it like the following example:
use Ndum\Laravel\SnmpTrapServer; # don't forget to use your listener also! # default options $options = [ 'ip' => '0.0.0.0', 'port' => 162, 'transport' => 'udp', 'version' => null, 'community' => null, 'whitelist' => null, 'timeout_connect' => 5, ]; $listener = new TrapListener(); ### your in step 1 created listener-class $server = new SnmpTrapServer() $server->prepare($listener, $options) # $options only needed if other than default $server->listen(); # in addition: (only if needed) $server->getOptions(); # to get the options $server->setOptions($options); # to set the options
The official documentation for trap sink can be found here
Issues / Contributions
Directly via GitHub
License
This project is licensed under the MIT License - see the LICENSE.md file for details