On Thu, 2005-05-26 at 15:48, [EMAIL PROTECTED] wrote:

>                                              does setting the 
> non-repeater value to 1 have a similar functional effect to the a 
> command as the max-repetitions?


No - the two fields have completely different purposes.

A single GetBulk request is basically equivalent to one
GetNext request (with "non-repeater" varbinds) followed
by "max-repetitions" GetNext requests (each containing
the remaining varbinds).

So
     GetBulk( non=2, max=3)  A B C D E

is equivalent to:

     GetNext  A B
     GetNext  C  D  E
     GetNext  C' D' E'
     GetNext  C" D" E"


If max=1, then this becomes

     GetNext  A B
     GetNext  C D E

which is exactly equivalent to

     GetNext  A B C D E

It's the max-repetitions field that really distinguishes
GetBulk from GetNext requests.  Hence setting this to 1
is pointless.

Dave



-------------------------------------------------------
This SF.Net email is sponsored by Yahoo.
Introducing Yahoo! Search Developer Network - Create apps using Yahoo!
Search APIs Find out how you can build Yahoo! directly into your own
Applications - visit http://developer.yahoo.net/?fr=offad-ysdn-ostg-q22005
_______________________________________________
Net-snmp-users mailing list
Net-snmp-users@lists.sourceforge.net
Please see the following page to unsubscribe or change other options:
https://lists.sourceforge.net/lists/listinfo/net-snmp-users

Reply via email to