Multiple sets in one pdu
"Yong Chen (yongche)" <[email protected]>
| Newsgroups | gmane.network.net-snmp.user |
|---|---|
| Message-ID | <52E903A38F544F46A2A6632AC66103EED7F374@xmb-sjc-221.amer.cisco.com> |
Hi,
I'm facing a problem with multiple sets in one pdu, basically it's
sequence issue.
Say the pdu is set for 5 oids as following: oid_1.1 oid_2.1 oid_1.2
oid_2.2 oid_1.3 (oid_1 and oid_2 are variables in two different
tables, .1/.2/.3 are indice)
It seems the agent does some optimization, so instead of doing:
set oid_1.1
set oid_2.1
set oid_1.2
set oid_2.2
set oid_1.3
it actually does following:
set oid_1.1
set oid_1.2
set oid_1.3
set oid_2.1
set oid_2.2
This is not what I want, I want the original sequence. I'm using
net-snmp 5.1.
Has anyone seen this issue? I found in ChangeLog following, but seems
it's not what I see.
*5.0.1*
Fixes:
- the agent should properly handle requests in the right order.
(e.g., restrict the agent to processing only one SET at a time)