好吧,也许标题不能说我的问题清楚......以下是详细信息。
我用net-snmp API编写了一个子代理。它适用于处理get
请求,
但对于getnext
请求,它会响应2次。
示例:
there are 3 scalars in my mib file, whose names are : var_1, var_2, var_3
now, I send a `get-next` request of var_1`s oid for getting var_2`s value
with mib-browser.and in the subagent, a function named `handle_var_2` was
defined for processing request of `var_2`, and in the function,
i can capture 2 `get` request in 'MODE_GET'.
为什么会发生这种情况?谢谢大家!