We have an SNMP connector with multiple SNMP connections to poll a failover data-source system.
- SNMP connection 1 -> Primary data-source (main server)
- SNMP connection 2 -> Secondary data-source (backup server)
For a SNMP data source there's a write-only parameter (snmpSet) available to trigger some actions on that particular server.
How can I specify on the snmpSet write param what SNMP connection ID it has to use?
Basically, the snmpSet param for the main server should always use the first SNMP connection.
The snmpSet param for the secondary server should always use the second SNMP connection.
Is there a way we can hard-coded say what connection to use?
Or do we have to use 2 SNMP IPID parameters (dynamic connection approach)?
Hi,
This can be done similarly like with the snmpSetAndGet, as explained here , by setting options="connection=1" in the Type of the parameter (where 1 is the connection number in this example).
Regards,