maxbond / snmpmodel

SNMP数据模型

v1.4.7 2018-04-06 11:40 UTC

This package is not auto-updated.

Last update: 2024-09-22 08:47:45 UTC


README

使用模型模式处理SNMP数据

composer install: composer require maxbond/snmpmodel

示例

class ExampleModel extends SNMPModel
{
    protected $model = [    
    		'ethernetOperStatus' => [    		
    			'oid' => '.1.3.6.1.2.1.2.2.1.8.1',    			
    			'type' => 'get',
    			'modifier' => 'numeric'    			
    		]    		
    ];    
}

$exampleModel = new ExampleModel('127.0.0.1','public');
var_dump($exampleModel->get());

查看示例以获取更多详细信息。