PHP.nl

snmp3_get

snmp3_get

Fetch an SNMP object

mixed **snmp3_get** 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 an object specified by the . snmp3_get``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.

**Voorbeeld: Using **

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

snmp3_set