You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Upgrading from SNMP4J 2.x to 3.x

The following changes need to be considered when upgrading from SNMP4J 2.x to 3.x:

  1. SNMP4J 3.x requires Java 9 or later (for the DTLS support)
  2. In version 3.x the following security protocols are no longer available by default: AuthSHA and AuthMD5. To add them call

    SecurityProtocols.addAuthenticationProtocol(new AuthSHA());
    SecurityProtocols.addAuthenticationProtocol(new AuthMD5());
  • No labels