Anda di halaman 1dari 4

SNMP

http://www.php.net/manual/es/book.snmp.php

Introduccin
Instalacin/Configuracin
Requerimientos
Instalacin
Configuracin en tiempo de ejecucin
Tipos de recursos
Constantes predefinidas
Funciones SNMP
snmp_get_quick_print Recoge el valor actual de ajuste quick_print la biblioteca UCD
snmp_get_valueretrieval Devuelva el mtodo cmo se devuelven los valores de SNMP
snmp_read_mib Lee y analiza un archivo MIB en el rbol MIB activo
snmp_set_enum_print Devuelve todos los valores que son enumeraciones con su valor de
enumeracin en lugar del entero crudo
snmp_set_oid_numeric_print Devolver todos los objetos, incluyendo sus respectivos
Identificacin del objeto dentro de la especificada
snmp_set_oid_output_format Ajuste el formato de salida de OID
snmp_set_quick_print Establezca el valor de quick_print dentro de la biblioteca UCD SNMP
snmp_set_valueretrieval Especifique el mtodo de cmo se devuelven los valores de SNMP
snmp2_get Recuperar un objeto SNMP
snmp2_getnext Obtener el objeto SNMP que sigue el ID de objeto no
snmp2_real_walk Devolver todos los objetos, incluyendo sus respectivos ID de objeto dentro
de la especificada
snmp2_set Establecer el valor de un objeto SNMP
snmp2_walk Obtener todos los objetos SNMP de un agente
snmp3_get Recuperar un objeto SNMP
snmp3_getnext Obtener el objeto SNMP que sigue el ID de objeto no
snmp3_real_walk Devolver todos los objetos, incluyendo sus respectivos ID de objeto dentro
de la especificada
snmp3_set Establecer el valor de un objeto SNMP
snmp3_walk Obtener todos los objetos SNMP de un agente
snmpget Recuperar un objeto SNMP
snmpgetnext Obtener el objeto SNMP que sigue el ID de objeto no
snmprealwalk Devolver todos los objetos, incluyendo sus respectivos ID de objeto dentro de la
especificada
snmpset Establecer el valor de un objeto SNMP
snmpwalk Obtener todos los objetos SNMP de un agente
snmpwalkoid Consulta para un rbol de informacin sobre una entidad de red
SNMP The SNMP class
SNMP::close Cerrar sesin SNMP
SNMP::__construct Creates SNMP instance representing session to remote SNMP agent
SNMP::get Fetch an SNMP object
SNMP::getErrno Get last error code
SNMP::getError Obtiene el ltimo mensaje de error
SNMP::getnext Fetch an SNMP object which follows the given object id
SNMP::set Set the value of an SNMP object
SNMP::setSecurity Configures security-related SNMPv3 session parameters
SNMP::walk Fetch SNMP object subtree
SNMPException The SNMPException class
snmp2_real_walk
(PHP >= 5.2.0)
snmp2_real_walk Return all objects including their respective object ID within the specified one
Descripcin
array snmp2_real_walk ( string $host , string $community , string $object_id [, string $timeout =
1000000 [, string $retries = 5 ]] )
The snmp2_real_walk() function is used to traverse over a number of SNMP objects starting
from object_id and return not only their values but also their object ids.
Parmetros
host
The hostname of the SNMP agent (server).
community
The read community.
object_id
The SNMP object id which precedes the wanted one.
timeout
The number of microseconds until the first timeout.
retries
The number of times to retry if timeouts occur.
Valores devueltos
Returns an associative array of the SNMP object ids and their values on success or FALSE on error.
In case of an error, an E_WARNING message is shown.
Ejemplos
Ejemplo #1 Using snmp2_real_walk()
<?php
print_r(snmp2_real_walk("localhost", "public", "IF-MIB::ifName"));
?>
The above will output something like:
Array
(
[IF-MIB::ifName.1] => STRING: lo
[IF-MIB::ifName.2] => STRING: eth0
[IF-MIB::ifName.3] => STRING: eth2
[IF-MIB::ifName.4] => STRING: sit0
[IF-MIB::ifName.5] => STRING: sixxs
)

Anda mungkin juga menyukai