Open navigation

Set-TPHubSnmpAgentV3

Description

Syntax

Example



Description

This Cmdlet sets that the current ThinPrint Hub can be monitored with SNMP version 3.
Versions 1 and 2c can be enabled in parallel with Set-TPHubSnmpAgentV1.


Syntax

Set-TPHubSnmpAgentV3 [-IsActive] <bool> [-Proxy <string>] 
Set-TPHubSnmpAgentV3 [-Username] <string> [-AuthenticationType] {MD5 | SHA} [-AuthenticationPassphrase] <string> [-PrivacyType] {NONE | DES | AES} [-PrivacyPassphrase] <string> [-Proxy <string>] 
Set-TPHubSnmpAgentV3 [[-Config] <SnmpV3ConfigViewModel>] [-Proxy <string>]
ParameterDescription
-IsActiveSNMP version 3 enabled/disabled (1/0 or True/False)
-Usernameuser name to be used for authentication
-AuthenticationTypechoice between 2 authentication types
• MD5 (recommended for testing purposes only)
• SHA
-AuthenticationPassphrasepassword used for authentication on the printer via SNMP
-PrivacyTypechoice between 2 encryption types (optional)
• DES
• AES
-PrivacyPassphrasepassword used for encryption of SNMP queries (optional)
-Configconfiguration using a variable
-Proxy• optional (from firmware version 1.1): proxy server address
• can also be specified globally using Set-TPHubProxy


Example

The following example configures the current Hub for monitoring with SNMP version 3.

$SNMP = Get-TPHubSnmpAgentV3 
$SNMP 
$SNMP.IsActive = 1 
$SNMP.Username = "printuser" 
$SNMP.AuthenticationType = "SHA" 
$SNMP.AuthenticationPassphrase = "12345678" 
$SNMP.PrivacyType = "AES" 
$SNMP.PrivacyPassphrase = "87654321"
Set-TPHubSnmpAgentV3 -Config $SNMP
Get-TPHubSnmpAgentV3

ThinPrint Hub's PowerShell cmdlet Set-TPHubSnmpAgentV3


Did you find it helpful? Yes No

Send feedback
Sorry we couldn't be helpful. Help us improve this article with your feedback.