Abhinandan Sonvane | 1 Dec 2008 10:18
Picon

How to configure router for CISCO-RTTMON -MIB

Hi All,
         I am using AdventNet's MIB browser for  SNMP get and set methods. I
want to get the parameters of CISCO-RTTMON -MIB , but on calling the get
function on the parameters of this MIB  I am getting ---no data available in
this sub tree exception. So what settings are required  on the CISCO router
so that these parameters return the appropriate response.

  Thanks and Regards
      Abhinandan
Frank Fock | 1 Dec 2008 10:38
Favicon

Re: How to configure router for CISCO-RTTMON -MIB

Hi Abhinandan,

You are in the wrong mailing list, I guess.
Try CISCO or AdventNet!

Regards,
Frank

Abhinandan Sonvane wrote:
> Hi All,
>          I am using AdventNet's MIB browser for  SNMP get and set methods. I
> want to get the parameters of CISCO-RTTMON -MIB , but on calling the get
> function on the parameters of this MIB  I am getting ---no data available in
> this sub tree exception. So what settings are required  on the CISCO router
> so that these parameters return the appropriate response.
> 
>   Thanks and Regards
>       Abhinandan
> _______________________________________________
> SNMP4J mailing list
> SNMP4J@...
> http://lists.agentpp.org/mailman/listinfo/snmp4j

--

-- 
AGENT++
http://www.agentpp.com
http://www.mibexplorer.com
http://www.mibdesigner.com
Jeff Ramin | 1 Dec 2008 22:28

adding a row to a table


When adding a row to a table, should it be available immediately afterward?
Or is some sore of commit() call necessary?

I've got code similar to:

         MOTableRow row = communityMIB.getSnmpCommunityEntry().createRow(...);
         communityMIB.getSnmpCommunityEntry().addRow(row);

The second line of code returns true, indicating the row was added, but
when I retrieve the contents of that table, the newly added row is not
returned.

Can anybody explain what I'm doing wrong? Thanks.

--

-- 
Jeffrey Ramin
Berbee
ramin@...
608.298.1024
Frank Fock | 2 Dec 2008 00:08
Favicon

Re: adding a row to a table

Hi Jeff,

There is no commit necessary. Maybe the index
you have used is invalid for the table?

Best regards,
Frank

Jeff Ramin wrote:
> 
> When adding a row to a table, should it be available immediately afterward?
> Or is some sore of commit() call necessary?
> 
> I've got code similar to:
> 
>         MOTableRow row = 
> communityMIB.getSnmpCommunityEntry().createRow(...);
>         communityMIB.getSnmpCommunityEntry().addRow(row);
> 
> The second line of code returns true, indicating the row was added, but
> when I retrieve the contents of that table, the newly added row is not
> returned.
> 
> Can anybody explain what I'm doing wrong? Thanks.
> 
> 

--

-- 
AGENT++
http://www.agentpp.com
(Continue reading)

Jeff Ramin | 2 Dec 2008 20:38

Re: adding a row to a table


I think I'm specifying the index properly... could you
confirm that for me? The index is specified in the properties
file like this:

snmp4j.agent.cfg.index.1.3.6.1.6.3.18.1.1.1.0={o}'public'

and then the code that gets run is:

MOTableRow row = communityMIB.getSnmpCommunityEntry().createRow(new 
OctetString("public").toSubIndex(true), com2sec);
communityMIB.getSnmpCommunityEntry().addRow(row);

I'm I specifying the index properly?

Thanks.

Frank Fock wrote:
> Hi Jeff,
> 
> There is no commit necessary. Maybe the index
> you have used is invalid for the table?
> 
> Best regards,
> Frank
> 
> Jeff Ramin wrote:
>>
>> When adding a row to a table, should it be available immediately 
>> afterward?
(Continue reading)

Tarun Madan | 4 Dec 2008 05:16
Favicon

test


=====-----=====-----=====
Notice: The information contained in this e-mail
message and/or attachments to it may contain 
confidential or privileged information. If you are 
not the intended recipient, any dissemination, use, 
review, distribution, printing or copying of the 
information contained in this e-mail message 
and/or attachments to it are strictly prohibited. If 
you have received this communication in error, 
please notify us by reply e-mail or telephone and 
immediately and permanently delete the message 
and any attachments. Thank you
Tarun Madan | 4 Dec 2008 05:25
Favicon

Writing a partial snmp4j agent


Hi,

I am kind of new to SNMP4J.
I am trying to write a partial snmp4j agent.I say partial because all this
agent would be doing is just listening to incoming snmp requests from a
manager, fetching the PDU from this request and passing it along to another
class that would process it. After the 'other' class responds with results,
the agent would pack it as a PDU and send it across to the manager.
Any help would be appreciated.

Regards
TM

=====-----=====-----=====
Notice: The information contained in this e-mail
message and/or attachments to it may contain 
confidential or privileged information. If you are 
not the intended recipient, any dissemination, use, 
review, distribution, printing or copying of the 
information contained in this e-mail message 
and/or attachments to it are strictly prohibited. If 
you have received this communication in error, 
please notify us by reply e-mail or telephone and 
immediately and permanently delete the message 
and any attachments. Thank you
Prashanth Katageri | 4 Dec 2008 05:40
Picon
Favicon

Fw: MIB implementation for Table with two indices

Hi, 
I have a proprietary MIB having a SNMP table with two indices.

I looked at example mib implementation given in SNMP4J Agent with no clue.
Can any one tell me, how a table with two indices is instrumented.

Thanks in advance,
Prashanth
________________________________
 Add more friends to your messenger and enjoy! Invite them now.

      Be the first one to try the new Messenger 9 Beta! Go to http://in.messenger.yahoo.com/win/
Tarun Madan | 4 Dec 2008 13:25
Favicon

openNMS as an EMS


Hi All,

I am sure this would have been discussed here before but unfortunately I
could not find it on the mailing list archives. The question here is that
is openNMS a suitable candidate for being used as an EMS?
If yes, how would it interact with another NMS on the top?

Any pointers/help in this direction would be useful and greatly
appreciated.

Regards
TM

=====-----=====-----=====
Notice: The information contained in this e-mail
message and/or attachments to it may contain 
confidential or privileged information. If you are 
not the intended recipient, any dissemination, use, 
review, distribution, printing or copying of the 
information contained in this e-mail message 
and/or attachments to it are strictly prohibited. If 
you have received this communication in error, 
please notify us by reply e-mail or telephone and 
immediately and permanently delete the message 
and any attachments. Thank you
Jeff Ramin | 4 Dec 2008 15:32

Re: adding a row to a table


Resending in case it wasn't distributed the first time...

-------- Original Message --------
Subject: Re: [SNMP4J] adding a row to a table
Date: Tue, 02 Dec 2008 13:38:33 -0600
From: Jeff Ramin <ramin@...>
To: Frank Fock <fock@...>
CC: snmp4j@...
References: <489077F9.1040509@...>
<48921EA5.2060000@...> 
<49345717.1000004@...> <49346E55.3010907@...>

I think I'm specifying the index properly... could you
confirm that for me? The index is specified in the properties
file like this:

snmp4j.agent.cfg.index.1.3.6.1.6.3.18.1.1.1.0={o}'public'

and then the code that gets run is:

MOTableRow row = communityMIB.getSnmpCommunityEntry().createRow(new
OctetString("public").toSubIndex(true), com2sec);
communityMIB.getSnmpCommunityEntry().addRow(row);

I'm I specifying the index properly?

Thanks.

Frank Fock wrote:
(Continue reading)


Gmane