Wiki source code of Why does GETBULK return less variable bindings than expected?
Last modified by Frank Fock on 2024/05/25 21:00
Show last authors
author | version | line-number | content |
---|---|---|---|
1 | If GETBULK returns less (no) variable bindings than you expect it to return then check | ||
2 | |||
3 | * the **maxRepetitions** parameter of the GETBULK request **PDU** | ||
4 | * the **maxSizeRequestPDU** parameter of the **Target** | ||
5 | * whether **the agent has local limits** (i.e., memory) that do not allow to return a bigger GETBULK response PDU. In that case, the GETBULK response will contain less variable bindings than | ||
6 | {{code language="none"}}nonRepeaters + maxRepetitions * repeaters{{/code}}. | ||
7 | * whether the expected response PDU exceeds the MTU size of the used UDP network. In that case, the request will time out because UDP packets are usually not reassambled. | ||
8 | |||
9 |