PHP.nl

snmp3_getnext

snmp3_getnext

Fetch the SNMP object which follows the given object id

mixed **snmp3_getnext** string $hostname string $security_name string $security_level string $auth_protocol string $auth_passphrase string $privacy_protocol string $privacy_passphrase  $object_id int $timeout int $retries

The function is used to read the value of the object that follows the specified . snmp3_getnext``object_id

hostnameThe hostname of the agent (server).

security_namethe security name, usually some kind of username

security_levelthe security level (noAuthNoPriv|authNoPriv|authPriv)

auth_protocol the authentication protocol (, , , or ) "MD5"``"SHA"``"SHA256"``"SHA512"

auth_passphrasethe authentication pass phrase

privacy_protocolthe privacy protocol (DES or AES)

privacy_passphrasethe privacy pass phrase

object_idThe object id.

timeoutThe number of microseconds until the first timeout.

retriesThe number of times to retry if timeouts occur.

Returns object value on success or false on error. In case of an error, an E_WARNING message is shown.

**Voorbeeld: Using **

<?php
$nameOfSecondInterface = snmp3_getnext('localhost', 'james', 'authPriv', 'SHA', 'secret007', 'AES', 'secret007', 'IF-MIB::ifName.1');
?>

snmp3_get``snmp3_walk