Hi,
I am facing an issue during the driver fixing. The driver has 2 connections, connection 0 is Serial, and connection 1 is SNMP. There is a table using SNMP connection is created on this driver, and it is able to read the information for each of the column parameters, but it can not perform write on the writeable parameters.
Here is the screenshot of the table, and one of the read and write column parameters.
However, when I tried to use the MIB browser to manually trigger write on the parameter, it is triggered successfully.
I have tried to create a parameter to hold the instance of the table, and another SNMP parameter to set. Here is the screenshot of these 2 parameters, The ID is 700 and 701 respectively.
Then I set the value for parameter 700, and the SNMP read parameter 701 in a QAction. After that, In the same QAction, I use Checktrigger to execute a trigger that performs an action to execute a group. The group was bonded to connection 1 (SNMP connection) and it execute another action that set the write parameter 701. Here is the screenshot for the group and the set action.
However, this is not working. I tried to change the type from read to write for Parameter 701, it is not working either. I also tried to use options="snmpSet" on parameter 701. It is still not working.
May I know if there are other ways to set parameters in an SNMP table?
Thanks!
Hi,
As you indicate that the SNMP is on connection 1 instead of the default connection 0, could you specify <Type options="connection=1">write ? This in the write parameter that as the option snmpSetAndGet that performs the snmp set.
For more info see the note in this help section
Hi Laurens, Thank you so much! It works perfectly.