[SNMP4J] Re: why snmp4j is generating an event when response pdu is null

Frank Fock fock at agentpp.com
Thu Jun 1 20:41:29 CEST 2006


Hi Rajesh,

There is a multi-threading bug in your test example code.
(I am wondering whether you used real async requests
with the other API or whether you implemented your
test differently there?)

In order to fix your code use:

     int i = 0;
     while (i++ < 150) {
//Removed:      pdu.setRequestID(new Integer32(i++));
// Clone the PDU before sending:
       snmp.send((PDU)pdu.clone(), target, null, listener);
     }

The above fix is necessary because the request ID of the
PDU is changed while it is being sent out and registered
by the Snmp class for response matching (which is done by
the request ID). The original code was:

     int i=0;
     while(i<150){
        pdu.setRequestID(new Integer32(i++));
        snmp.send(pdu, target, null, listener);
     }

Best regards,
Frank

Rajesh Reddy wrote:
> Hi Frank,
> 
> Version Snmp4j1.7.2
> Yes i tested with the same timeout for both the API's.
> please check with my program that i have sent to you, check whether you are
> able to generate the problem which iam getting.
> 
> I think timeout is not a big problem here. Agent is able to handle and send
> all the 250 responses with both the API's.
> Other is handling correctly, but when i run with snmp4j iam getting the
> problem which is known to you.
> 
> Regards,
> Rajesh.
> 
> -----Original Message-----
> From: fock at agentpp.com [mailto:fock at agentpp.com]
> Sent: Thursday, June 01, 2006 2:13 PM
> To: rajeshreddy at tataelxsi.co.in
> Cc: snmp4j at agentpp.org
> Subject: AW: RE: why snmp4j is generating an event when response pdu is
> null
> 
> 
> Hi Rajesh,
> 
> Are you using SNMP4J 1.7.2?
> 
> The ResponseEvent is returned to inform the application
> about the timeout that occured. Maybe you have to
> increase the timeout value?
> 
> Have you verified that you use the same timeout and retry
> settings with SNMP4J as with the other API?
> 
> Best regards,
> Frank
> 
>> Hi Frank,
>>
>> I verified with ethreal..Agent is receiving 250 requests and sending 250
>> requests.
>> But why an event is generating even the response PDU is null.
>>
>> Regards,
>> Rajesh.
>>
>> -----Original Message-----
>> From: Frank Fock [mailto:fock at agentpp.com]
>> Sent: Thursday, June 01, 2006 1:36 AM
>> To: Rajesh Reddy
>> Cc: 'SNMP4J'
>> Subject: Re: why snmp4j is generating an event when response pdu is null
>>
>>
>> Hi Rajesh,
>>
>> Have you checked with a sniffer (e.g. Ethereal)
>> that the requests have been all responded by
>> the agent?
>>
>> Probably, SNMP4J just sends out the requests faster
>> than the other tool causing a buffer overflow at
>> the target agent?
>>
>> Best regards,
>> Frank
>>
>> Rajesh Reddy wrote:
>>> Hi Frank,
>>>
>>> In asynchronous way of sending/receiving snmp messages if  a request is
>>> sent more than 100 times then iam receiving null for some of the
>>> responses and iam missing some of them too.
>>> First i thought as we are running with UDP Protocol we may miss some
>>> messages. I ran this for more than 20 times using snmp4j and other api
>>> but it worked fine with other and giving null with snmp4j for some
>>> responses and
>>>
>>> Can i know why is this happening, but when i tested the same with other
>>> API it worked fine.Is it a bug?
>>> I am not getting why it is generating event even a response pdu is null.
>>>
>>> it works fine with less than 100 requests.
>>> If you want i can send the output of the program with other API also.
>>>
>>> Please check the code and output of it.
>>>
>>> Message is lengthy :-)
>>>
>>>
>>>
>>> public class Snmp_Asynchronous {
>>>
>>>         public static void main(String[] args) throws IOException {
>>>
>>>                 Snmp snmp=new Snmp(new DefaultUdpTransportMapping());
>>>
>>>                 //building pdu
>>>                 PDUv1 pdu=new PDUv1();
>>>                 pdu.setType(PDUv1.GET);
>>>
>>>                 //Giving the OID to manipulate(get/getnext/set)
>>>                 VariableBinding [] vb={new VariableBinding(new
>>> OID("1.3.6.1.2.1.1.4.0"))};
>>>
>>>                 //Adding OID's to the PDU
>>>                 pdu.addAll(vb);
>>>
>>>                 //building header  version and community
>>>                 CommunityTarget target=new CommunityTarget();
>>>
>>>                 //Address of the agent
>>>                 target.setAddress(GenericAddress.parse("1.2.3.4/161"));
>>>
>>>                 //Waiting time for the response
>>>                 target.setTimeout(1500);
>>>
>>>                 //Community value for the SNMP Message
>>>                 target.setCommunity(new OctetString("public"));
>>>
>>>                 //Asynchronous Listener
>>>                 ResponseListener listener = new ResponseListener() {
>>>                         int j=0;
>>>                      public void onResponse(ResponseEvent event) {
>>>
>>>
>>> ((Snmp)event.getSource()).cancel(event.getRequest(), this);//i tried
>>> with commenting this statement also
>>>                        System.out.println((j++) + "  Received response
>>> PDU is: "+event.getResponse());
>>>                      }
>>>                    };
>>>                    snmp.listen();
>>>                    int i=0;
>>>                 while(i<150){
>>>                    pdu.setRequestID(new Integer32(i++));
>>>                    snmp.send(pdu, target, null, listener);
>>>                   // System.out.println("Sending Request:"+i);
>>>                  }
>>>                    while(true);
>>>                    /*this is not required if the program is running
>>>                    for example if GUI is used*/
>>>
>>>         }
>>> }
>>>
>>> All the 150 requests are sent to the agent.
>>>
>>> Please find the output below
>>>
>>> 0 Response PDU: RESPONSE[reqestID=572967700, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 1 Response PDU: RESPONSE[reqestID=1, timestamp=0:00:00.00, enterprise=,
>>> genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 = Heaven]]
>>> 2 Response PDU: RESPONSE[reqestID=2, timestamp=0:00:00.00, enterprise=,
>>> genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 = Heaven]]
>>> 3 Response PDU: RESPONSE[reqestID=3, timestamp=0:00:00.00, enterprise=,
>>> genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 = Heaven]]
>>> 4 Response PDU: RESPONSE[reqestID=4, timestamp=0:00:00.00, enterprise=,
>>> genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 = Heaven]]
>>> 5 Response PDU: RESPONSE[reqestID=5, timestamp=0:00:00.00, enterprise=,
>>> genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 = Heaven]]
>>> 6 Response PDU: RESPONSE[reqestID=6, timestamp=0:00:00.00, enterprise=,
>>> genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 = Heaven]]
>>> 7 Response PDU: RESPONSE[reqestID=7, timestamp=0:00:00.00, enterprise=,
>>> genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 = Heaven]]
>>> 8 Response PDU: RESPONSE[reqestID=8, timestamp=0:00:00.00, enterprise=,
>>> genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 = Heaven]]
>>> 9 Response PDU: RESPONSE[reqestID=9, timestamp=0:00:00.00, enterprise=,
>>> genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 = Heaven]]
>>> 10 Response PDU: RESPONSE[reqestID=10, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 11 Response PDU: RESPONSE[reqestID=11, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 12 Response PDU: RESPONSE[reqestID=12, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 13 Response PDU: RESPONSE[reqestID=13, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 14 Response PDU: RESPONSE[reqestID=14, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 15 Response PDU: RESPONSE[reqestID=15, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 16 Response PDU: RESPONSE[reqestID=16, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 17 Response PDU: RESPONSE[reqestID=17, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 18 Response PDU: RESPONSE[reqestID=18, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 19 Response PDU: RESPONSE[reqestID=19, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 20 Response PDU: RESPONSE[reqestID=20, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 21 Response PDU: RESPONSE[reqestID=21, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 22 Response PDU: RESPONSE[reqestID=22, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 23 Response PDU: RESPONSE[reqestID=23, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 24 Response PDU: RESPONSE[reqestID=24, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 25 Response PDU: RESPONSE[reqestID=25, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 26 Response PDU: RESPONSE[reqestID=26, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 27 Response PDU: RESPONSE[reqestID=27, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 28 Response PDU: RESPONSE[reqestID=28, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 29 Response PDU: RESPONSE[reqestID=29, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 30 Response PDU: RESPONSE[reqestID=30, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 31 Response PDU: RESPONSE[reqestID=32, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 32 Response PDU: RESPONSE[reqestID=33, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 33 Response PDU: RESPONSE[reqestID=34, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 34 Response PDU: RESPONSE[reqestID=35, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 35 Response PDU: RESPONSE[reqestID=36, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 36 Response PDU: RESPONSE[reqestID=37, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 37 Response PDU: RESPONSE[reqestID=38, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 38 Response PDU: RESPONSE[reqestID=39, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 39 Response PDU: RESPONSE[reqestID=40, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 40 Response PDU: RESPONSE[reqestID=41, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 41 Response PDU: RESPONSE[reqestID=42, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 42 Response PDU: RESPONSE[reqestID=43, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 43 Response PDU: RESPONSE[reqestID=46, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 44 Response PDU: RESPONSE[reqestID=47, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 45 Response PDU: RESPONSE[reqestID=48, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 46 Response PDU: RESPONSE[reqestID=49, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 47 Response PDU: RESPONSE[reqestID=50, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 48 Response PDU: RESPONSE[reqestID=51, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 49 Response PDU: RESPONSE[reqestID=52, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 50 Response PDU: RESPONSE[reqestID=53, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 51 Response PDU: RESPONSE[reqestID=54, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 52 Response PDU: RESPONSE[reqestID=55, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 53 Response PDU: RESPONSE[reqestID=56, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 54 Response PDU: RESPONSE[reqestID=57, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 55 Response PDU: RESPONSE[reqestID=58, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 56 Response PDU: RESPONSE[reqestID=59, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 57 Response PDU: RESPONSE[reqestID=60, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 58 Response PDU: RESPONSE[reqestID=61, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 59 Response PDU: RESPONSE[reqestID=62, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 60 Response PDU: RESPONSE[reqestID=63, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 61 Response PDU: RESPONSE[reqestID=64, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 62 Response PDU: RESPONSE[reqestID=65, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 63 Response PDU: RESPONSE[reqestID=66, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 64 Response PDU: RESPONSE[reqestID=67, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 65 Response PDU: RESPONSE[reqestID=68, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 66 Response PDU: RESPONSE[reqestID=69, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 67 Response PDU: RESPONSE[reqestID=70, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 68 Response PDU: RESPONSE[reqestID=71, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 69 Response PDU: RESPONSE[reqestID=72, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 70 Response PDU: RESPONSE[reqestID=73, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 71 Response PDU: RESPONSE[reqestID=74, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 72 Response PDU: RESPONSE[reqestID=76, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 73 Response PDU: RESPONSE[reqestID=77, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 74 Response PDU: RESPONSE[reqestID=78, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 75 Response PDU: RESPONSE[reqestID=79, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 76 Response PDU: RESPONSE[reqestID=80, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 77 Response PDU: RESPONSE[reqestID=81, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 78 Response PDU: RESPONSE[reqestID=82, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 79 Response PDU: RESPONSE[reqestID=83, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 80 Response PDU: RESPONSE[reqestID=84, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 81 Response PDU: RESPONSE[reqestID=85, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 82 Response PDU: RESPONSE[reqestID=86, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 83 Response PDU: RESPONSE[reqestID=87, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 84 Response PDU: RESPONSE[reqestID=88, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 85 Response PDU: RESPONSE[reqestID=89, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 86 Response PDU: RESPONSE[reqestID=90, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 87 Response PDU: RESPONSE[reqestID=91, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 88 Response PDU: RESPONSE[reqestID=92, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 89 Response PDU: RESPONSE[reqestID=93, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 90 Response PDU: RESPONSE[reqestID=94, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 91 Response PDU: RESPONSE[reqestID=95, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 92 Response PDU: RESPONSE[reqestID=96, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 93 Response PDU: RESPONSE[reqestID=97, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 94 Response PDU: RESPONSE[reqestID=98, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 95 Response PDU: RESPONSE[reqestID=99, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 96 Response PDU: RESPONSE[reqestID=100, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 97 Response PDU: RESPONSE[reqestID=101, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 98 Response PDU: RESPONSE[reqestID=102, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 99 Response PDU: RESPONSE[reqestID=103, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 100 Response PDU: RESPONSE[reqestID=104, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 101 Response PDU: RESPONSE[reqestID=105, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 102 Response PDU: RESPONSE[reqestID=106, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 103 Response PDU: RESPONSE[reqestID=107, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 104 Response PDU: RESPONSE[reqestID=108, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 105 Response PDU: RESPONSE[reqestID=109, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 106 Response PDU: RESPONSE[reqestID=110, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 107 Response PDU: RESPONSE[reqestID=111, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 108 Response PDU: RESPONSE[reqestID=112, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 109 Response PDU: RESPONSE[reqestID=113, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 110 Response PDU: RESPONSE[reqestID=114, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 111 Response PDU: RESPONSE[reqestID=115, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 112 Response PDU: RESPONSE[reqestID=116, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 113 Response PDU: RESPONSE[reqestID=117, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 114 Response PDU: RESPONSE[reqestID=118, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 115 Response PDU: RESPONSE[reqestID=119, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 116 Response PDU: RESPONSE[reqestID=120, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 117 Response PDU: RESPONSE[reqestID=121, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 118 Response PDU: RESPONSE[reqestID=122, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 119 Response PDU: RESPONSE[reqestID=123, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 120 Response PDU: RESPONSE[reqestID=124, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 121 Response PDU: RESPONSE[reqestID=125, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 122 Response PDU: RESPONSE[reqestID=126, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 123 Response PDU: RESPONSE[reqestID=127, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 124 Response PDU: RESPONSE[reqestID=128, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 125 Response PDU: RESPONSE[reqestID=129, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 126 Response PDU: RESPONSE[reqestID=130, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 127 Response PDU: RESPONSE[reqestID=131, timestamp=0:00:00.00,
>>> enterprise=, genericTrap=0, specificTrap=0, VBS[1.3.6.1.2.1.1.4.0 =
>> Heaven]]
>>> 128 Response PDU: null
>>> 129 Response PDU: null
>>> 130 Response PDU: null
>>> 131 Response PDU: null
>>> 132 Response PDU: null
>>> 133 Response PDU: null
>>> 134 Response PDU: null
>>> 135 Response PDU: null
>>> 136 Response PDU: null
>>> 137 Response PDU: null
>>> 138 Response PDU: null
>>> 139 Response PDU: null
>>> 140 Response PDU: null
>>> 141 Response PDU: null
>>> 142 Response PDU: null
>>> 143 Response PDU: null
>>> 144 Response PDU: null
>>>
>>>
>>> Regards,
>>> Rajesh.
>>>
>>>
>>> ------------------------------------------------------------------------
>>>
>>> The information contained in this electronic message and any attachments
>> to this message are intended for the exclusive use of the addressee(s)and
>> may contain confidential or privileged information. If you are not the
>> intended recipient, please notify the sender or
>> administrator at tataelxsi.co.in
>>
>> --
>> AGENT++
>> http://www.agentpp.com
>> http://www.mibexplorer.com
>> http://www.mibdesigner.com
>>
>> The information contained in this electronic message and any attachments to
>> this message are intended for the exclusive use of the addressee(s)and may
>> contain confidential or privileged information. If you are not the intended
>> recipient, please notify the sender or administrator at tataelxsi.co.in
> 
> The information contained in this electronic message and any attachments to this message are intended for the exclusive use of the addressee(s)and may contain confidential or privileged information. If you are not the intended recipient, please notify the sender or administrator at tataelxsi.co.in

-- 
AGENT++
http://www.agentpp.com
http://www.mibexplorer.com
http://www.mibdesigner.com




More information about the SNMP4J mailing list