PHP 8.4.24 Released!

SNMP::setSecurity

(PHP 5 >= 5.4.0, PHP 7, PHP 8)

SNMP::setSecurityConfigures security-related SNMPv3 session parameters

Опис

public function SNMP::setSecurity(
    string $securityLevel,
    string $authProtocol = "",
    string $authPassphrase = "",
    string $privacyProtocol = "",
    string $privacyPassphrase = "",
    string $contextName = "",
    string $contextEngineId = ""
): bool

setSecurity configures security-related session parameters used in SNMP protocol version 3

Параметри

securityLevel
the security level (noAuthNoPriv|authNoPriv|authPriv)
authProtocol
the authentication protocol (MD5 or SHA)
authPassphrase
the authentication pass phrase
privacyProtocol
the privacy protocol (DES or AES)
privacyPassphrase
the privacy pass phrase
contextName
the context name
contextEngineId
the context EngineID

Значення, що повертаються

Повертає true у разі успіху або false в разі помилки.

Приклади

Приклад #1 SNMP::setSecurity() example

<?php
  $session = new SNMP(SNMP::VERSION_3, $hostname, $rwuser, $timeout, $retries);
  $session->setSecurity('authPriv', 'MD5', $auth_pass, 'AES', $priv_pass, '', 'aeeeff');
?>

Прогляньте також

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top