snmpwalk

(PHP 4, PHP 5, PHP 7) Fetch all the SNMP objects from an agent array snmpwalk ( string $hostname, string $community, string $object_id [, int $timeout = 1000000 [, int $retries = 5 ]] ) snmpwalk() function is used to read all the values from an SNMP agent specified by the hostname. Parameters: hostname The SNMP agent (server). community

snmpset

(PHP 4, PHP 5, PHP 7) Set the value of an SNMP object bool snmpset ( string $host, string $community, string $object_id, string $type, mixed $value [, int $timeout = 1000000 [, int $retries = 5 ]] ) snmpset() is used to set the value of an SNMP object specified by the object_id. Parameters: host The hostname of the SNMP agent (server). community

snmprealwalk

(PHP 4, PHP 5, PHP 7) Return all objects including their respective object ID within the specified one array snmprealwalk ( string $host, string $community, string $object_id [, int $timeout = 1000000 [, int $retries = 5 ]] ) The snmprealwalk() 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. Parameters:

snmpgetnext

(PHP 5, PHP 7) Fetch the SNMP object which follows the given object id string snmpgetnext ( string $host, string $community, string $object_id [, int $timeout = 1000000 [, int $retries = 5 ]] ) The snmpgetnext() function is used to read the value of the SNMP object that follows the specified object_id. Parameters: host The hostname of the SNMP agent (server).

snmpget

(PHP 4, PHP 5, PHP 7) Fetch an SNMP object string snmpget ( string $hostname, string $community, string $object_id [, int $timeout = 1000000 [, int $retries = 5 ]] ) The snmpget() function is used to read the value of an SNMP object specified by the object_id. Parameters: hostname The SNMP agent. community The read community.

snmp3_walk

(PHP 4, PHP 5, PHP 7) Fetch all the SNMP objects from an agent array snmp3_walk ( string $host, string $sec_name, string $sec_level, string $auth_protocol, string $auth_passphrase, string $priv_protocol, string $priv_passphrase, string $object_id [, string $timeout = 1000000 [, string $retries = 5 ]] ) snmp3_walk() function is used to read all the values from an SNMP agent specified by the hostname. Even if the security

snmp3_set

(PHP 4, PHP 5, PHP 7) Set the value of an SNMP object bool snmp3_set ( string $host, string $sec_name, string $sec_level, string $auth_protocol, string $auth_passphrase, string $priv_protocol, string $priv_passphrase, string $object_id, string $type, string $value [, int $timeout = 1000000 [, int $retries = 5 ]] ) snmp3_set() is used to set the value of an SNMP object specified by the object_id. Even if the security leve

snmp3_real_walk

(PHP 4, PHP 5, PHP 7) Return all objects including their respective object ID within the specified one array snmp3_real_walk ( string $host , string $sec_name , string $sec_level , string $auth_protocol , string $auth_passphrase , string $priv_protocol , string $priv_passphrase , string $object_id [, string $timeout = 1000000 [, string $retries = 5 ]] ) The snmp3_real_walk() function is used to traverse over a number of S

snmp3_getnext

(PHP 5, PHP 7) Fetch the SNMP object which follows the given object id string snmp3_getnext ( string $host, string $sec_name, string $sec_level, string $auth_protocol, string $auth_passphrase, string $priv_protocol, string $priv_passphrase, string $object_id [, string $timeout = 1000000 [, string $retries = 5 ]] ) The snmp3_getnext() function is used to read the value of the SNMP object that follows the specified object_id

snmp3_get

(PHP 4, PHP 5, PHP 7) Fetch an SNMP object string snmp3_get ( string $host, string $sec_name, string $sec_level, string $auth_protocol, string $auth_passphrase, string $priv_protocol, string $priv_passphrase, string $object_id [, string $timeout = 1000000 [, string $retries = 5 ]] ) The snmp3_get() function is used to read the value of an SNMP object specified by the object_id. Parameters: