123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- <?php
- function snmpget(string $hostname, string $community, array|string $object_id, int $timeout = -1, int $retries = -1): mixed {}
- function snmpgetnext(string $hostname, string $community, array|string $object_id, int $timeout = -1, int $retries = -1): mixed {}
- function snmpwalk(string $hostname, string $community, array|string $object_id, int $timeout = -1, int $retries = -1): array|false {}
- function snmprealwalk(string $hostname, string $community, array|string $object_id, int $timeout = -1, int $retries = -1): array|false {}
- function snmpwalkoid(string $hostname, string $community, array|string $object_id, int $timeout = -1, int $retries = -1): array|false {}
- function snmpset(string $hostname, string $community, array|string $object_id, array|string $type, array|string $value, int $timeout = -1, int $retries = -1): bool {}
- function snmp_get_quick_print(): bool {}
- function snmp_set_quick_print(bool $enable): bool {}
- function snmp_set_enum_print(bool $enable): bool {}
- function snmp_set_oid_output_format(int $format): bool {}
- function snmp_set_oid_numeric_print(int $format): bool {}
- function snmp2_get(string $hostname, string $community, array|string $object_id, int $timeout = -1, int $retries = -1): mixed {}
- function snmp2_getnext(string $hostname, string $community, array|string $object_id, int $timeout = -1, int $retries = -1): mixed {}
- function snmp2_walk(string $hostname, string $community, array|string $object_id, int $timeout = -1, int $retries = -1): array|false {}
- function snmp2_real_walk(string $hostname, string $community, array|string $object_id, int $timeout = -1, int $retries = -1): array|false {}
- function snmp2_set(string $hostname, string $community, array|string $object_id, array|string $type, array|string $value, int $timeout = -1, int $retries = -1): bool {}
- function snmp3_get(
- string $hostname, string $security_name, string $security_level,
- string $auth_protocol, string $auth_passphrase,
- string $privacy_protocol, string $privacy_passphrase,
- array|string $object_id, int $timeout = -1, int $retries = -1): mixed {}
- function snmp3_getnext(
- string $hostname, string $security_name, string $security_level,
- string $auth_protocol, string $auth_passphrase,
- string $privacy_protocol, string $privacy_passphrase,
- array|string $object_id, int $timeout = -1, int $retries = -1): mixed {}
- function snmp3_walk(
- string $hostname, string $security_name, string $security_level,
- string $auth_protocol, string $auth_passphrase,
- string $privacy_protocol, string $privacy_passphrase,
- array|string $object_id, int $timeout = -1, int $retries = -1): array|false {}
- function snmp3_real_walk(
- string $hostname, string $security_name, string $security_level,
- string $auth_protocol, string $auth_passphrase,
- string $privacy_protocol, string $privacy_passphrase,
- array|string $object_id, int $timeout = -1, int $retries = -1): array|false {}
- function snmp3_set(
- string $hostname, string $security_name, string $security_level,
- string $auth_protocol, string $auth_passphrase,
- string $privacy_protocol, string $privacy_passphrase,
- array|string $object_id, array|string $type, array|string $value,
- int $timeout = -1, int $retries = -1): bool {}
- function snmp_set_valueretrieval(int $method): bool {}
- function snmp_get_valueretrieval(): int {}
- function snmp_read_mib(string $filename): bool {}
- class SNMP
- {
-
- public array $info;
- public ?int $max_oids;
- public int $valueretrieval;
- public bool $quick_print;
- public bool $enum_print;
- public int $oid_output_format;
- public bool $oid_increasing_check;
- public int $exceptions_enabled;
- public function __construct(int $version, string $hostname, string $community, int $timeout = -1, int $retries = -1) {}
-
- public function close(): bool {}
-
- public function setSecurity(
- string $securityLevel, string $authProtocol = "", string $authPassphrase = "",
- string $privacyProtocol = "", string $privacyPassphrase = "",
- string $contextName = "", string $contextEngineId = ""): bool {}
-
- public function get(array|string $objectId, bool $preserveKeys = false): mixed {}
-
- public function getnext(array|string $objectId): mixed {}
-
- public function walk(array|string $objectId, bool $suffixAsKey = false, int $maxRepetitions = -1, int $nonRepeaters = -1): array|false {}
-
- public function set(array|string $objectId, array|string $type, array|string $value): bool {}
-
- public function getErrno(): int {}
-
- public function getError(): string {}
- }
- class SNMPException extends RuntimeException
- {
- }
|