This processor listens to SNMP traps and creates a flowfile from the trap PDU. The versions SNMPv1, SNMPv2c and SNMPv3 are supported. The component is based on SNMP4J.
SNMPv3 has user-based security. The USM Users Source property allows users to choose between three different ways to provide the USM user database. An example json file containing two users:
[
{
"securityName":"user1",
"authProtocol":"MD5",
"authPassphrase":"abc12345",
"privProtocol":"DES",
"privPassphrase":"abc12345"
},
{
"securityName":"newUser2",
"authProtocol":"MD5",
"authPassphrase":"abc12345",
"privProtocol":"AES256",
"privPassphrase":"abc12345"
}
]