Hello everybody,
I am trying to create a node with snmpv3, using AES-256 encryption using the REST call Create/Orion.Nodes. This is the json body of the http call:
{
"EngineID": 1,
"IPAddress": "***.***.***.***",
"IPAddressType": "IPv4",
"ObjectSubType": "SNMP",
"SNMPVersion": 3,
"SNMPV3Username": "******",
"SNMPV3AuthMethod": "SHA1",
"SNMPV3AuthKey": "*********",
"SNMPV3PrivMethod": "AES256",
"SNMPV3PrivKey": "*********"
}
The call gives the error "Error : In property SNMPV3PrivMethod. Reason : Mismatch in Data. Expected Values are : 'None,DES56,AES128'." And indeed, the call will work when setting this to for example "AES128".
However, we really need AES-256 encryption. What's remarkable is that the web application does allow AES-256 to be used for snmpv3 encryption. So I am most probably making a basic mistake here. (And I admit being pretty new to Solarwinds).
How should I proceed to enable AES256 over the REST api ? That is, purely using http calls (for example with Postman).
Many thanks !