2017 © Pedro Peláez
 

library zyxel

Allows remote reading of statistics of ZyXEL VMG8324-B10A

image

jwdr/zyxel

Allows remote reading of statistics of ZyXEL VMG8324-B10A

  • Tuesday, November 3, 2015
  • by jwdr
  • Repository
  • 1 Watchers
  • 0 Stars
  • 9 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

ZyXEL

Installation

The best way to add the library to your project is using composer., (*1)

{
    "require": {
        "jwdr/zyxel": "*"
    }
}

How it works

Create the needed parameter value objects:, (*2)

$ipAddress = new \ValueObjects\Web\IPAddress('your-router-ip-address');
$portNumber = new \ValueObjects\Web\PortNumber(22);
$userName = new \ValueObjects\String\String('your-user-name');
$passWord = new \ValueObjects\String\String('your-password');

Instantiate the config object, and use it to create the connection, (*3)

$ZyXELConfig = new \jwdr\ZyXEL\Config($ipAddress, $portNumber, $userName, $passWord);
$ZyXELConnection = new \jwdr\ZyXEL\Connection($ZyXELConfig);

Instantiate the ZyXEL object, (*4)

$ZyXEL = new \jwdr\ZyXEL\ZyXEL($ZyXELConnection);

Finally ready to start reading information from the router!, (*5)

Get the list of current known lan host devices, (*6)

$lanHosts = $ZyXEL->lanHosts();

More to follow, (*7)

The Versions

03/11 2015

dev-master

9999999-dev

Allows remote reading of statistics of ZyXEL VMG8324-B10A

  Sources   Download

MIT

The Requires

 

The Development Requires

by Avatar jwdr