2017 © Pedro Peláez
 

library snmp

Snmp utils

image

mrcnpdlk/snmp

Snmp utils

  • Wednesday, October 11, 2017
  • by mrcnpdlk
  • Repository
  • 0 Watchers
  • 0 Stars
  • 232 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

# SNMP Utils, (*1)

This bundle is based on main class of opensolutions/OSS_SNMP project. Is a lightweight fork for simple get() and set() things., (*2)

## Installation, (*3)

Install the latest version with composer bash composer require mrcnpdlk/snmp, (*4)

## Basic usage, (*5)

use Mrcnpdlk\Lib\Snmp\Agent;
use Mrcnpdlk\Lib\Snmp\Config;
use Mrcnpdlk\Lib\Snmp\Enum\Version;

require __DIR__ . '/../vendor/autoload.php';

$oConfig = new Config([
    'host'      => '10.0.10.10',
    'community' => 'some_community',
    'version'   => Version::VER_1,
    'mibFiles'  => [__DIR__ . '/some_mib_file.MIB'],
]);

$oSnmp = new Agent($oConfig);

var_dump($oSnmp->get('masterVoltageL2.0'));

The Versions

11/10 2017

dev-master

9999999-dev

Snmp utils

  Sources   Download

MIT

The Requires

 

The Development Requires

snmp

11/10 2017

dev-devel

dev-devel

Snmp utils

  Sources   Download

MIT

The Requires

 

The Development Requires

snmp

11/10 2017

v0.1.0

0.1.0.0

Snmp utils

  Sources   Download

MIT

The Requires

 

The Development Requires

snmp