Dynamic Row Creation

2006-01-05 Thread sachin mahajan
Hi All, I am using net-snmp version 5.3, current released version,. I want to know which mib2c conf files will create code to support dynamic row creation and also How to test this functionality using snmpset command? Thanks and regards, Sachin Mahajan [EMAIL PROTECTED]

snmpd & snmptrapd

2006-01-05 Thread manik chopra
Hi all,Is it possible to have functionality of both snmpd and snmptrapd in a single process/daemon.I mean can a sinngle process (i.e. snmpd or snmptrapd) be configured to: - respond to SNMP queries for management information - send snmp traps - receive snmp traps & informsThanks very much.Manik

net-snmp compatibility with Solarwinds Orion on SLES9

2006-01-05 Thread Stephen Chaddock
Hi net-snmp-users, My apologies for dragging up what is no doubt a well trodden path. I have been asked by our client to get their SLES9/RHEL/Linux servers reporting to their Solarwinds Orion network monitoring software, there are issues monitoring CPU and/or Memory. I have spent time invest

snmptrap - I don't understand how SNMPv3 traps are sent by the snmptrap utility.

2006-01-05 Thread Makavy, Erez (Erez)
Hey,   Please help me with this:   1) Does the snmptrap utility send SNMPv3 trap to the master agent? (I guess not) 2) if not then how does the snmptrap access the USM and VACM modules?    (these modules are implemented in the master agent)   thanks, erez.      

Re: snmptrap - I don't understand how SNMPv3 traps are sent by the snmptrap utility.

2006-01-05 Thread andre . heine
Hi, Am 05.01.2006 um 20:32 Uhr haben Sie geschrieben: > I ment send traps through the master agent. (not to, sorry) You mean, snmpd should send Traps when something is happend? In example the load is to high... man snmpd.conf, look for "DISMAN EVENT". This should work with v3, but I use v2c.

Re: snmptrap - I don't understand how SNMPv3 traps are sent by the snmptrap utility.

2006-01-05 Thread andre . heine
Hi, Am 05.01.2006 um 19:47 Uhr haben Sie geschrieben: > Please help me with this: > > 1) Does the snmptrap utility send SNMPv3 trap to the master > agent? snmptrap send the message to your snmptrapd! snmptrap -m ALL -c public -v 2c 10.17.1.100 \ 5784081 system.sysName.0 system.sysName.0 s "ST

RE: snmptrap - I don't understand how SNMPv3 traps are sent by the snmptrap utility.

2006-01-05 Thread Makavy, Erez (Erez)
I ment send traps through the master agent. (not to, sorry) I know it send it to some managmetn station (could be snmptrapd). Actually I see know that a master agent does not have to be running on the machin for a trap to be sent by snmptrap. Thus, the 2nd quesiton arises: 2) if not then how do

Re: Automatically send traps by proc/exec/ without snmpget/walk/polling?

2006-01-05 Thread andre . heine
Hello Thomas, Am 04.01.2006 um 22:01 Uhr haben Sie geschrieben: > [EMAIL PROTECTED] wrote: > > I can't see any traps in my snmptrapd.log and after a few >> minutes. I got a "segfault"... > > What process is segfaulting: snmpd or snmptrapd? If it's > reproducible, please run it under gdb and ge

Re: Problems with AgentX (Error opening specified endpoint)

2006-01-05 Thread Thomas Anders
[EMAIL PROTECTED] wrote: When I'm running the SNMP demon with "snmpd -agentx /var/agentx" -agentx? Please check the snmpd(8) manual page: http://www.net-snmp.org/docs/man/snmpd.html You may want to use the "-x" option. +Thomas -- Thomas Anders (thomas.anders at blue-cable.de) -

Problems with AgentX (Error opening specified endpoint)

2006-01-05 Thread the-law
Hello, I have a problem with AgentX: When I'm running the SNMP demon with "snmpd -agentx /var/agentx" and querying a value like "snmpget -c public -v 1 192.168.3.202 system.sysDescr.0" I get the following error message: "Timeout: No Response from 192.168.3.202". Running "snmpd -f -Le -d -agentx /

Re: Warning: prerequisite NetSNMP::OID 5.1 not found.

2006-01-05 Thread Thomas Anders
Sridhar Addagada wrote: First i tried "make install" from the source distribution. But i got the error mentioned earlier when i run mib2c Start again. Remove any existing net-snmp installations from your system (including corresponding perl modules). Get the net-snmp 5.2.2 or 5.3 source distr

Re: Warning: prerequisite NetSNMP::OID 5.1 not found.

2006-01-05 Thread Sridhar Addagada
This also did not help. I feel that the problem is that perl is not able to find the installed SNMP modules. Is there any enveronment variable that needs to be updated for perl. Sridhar On 1/4/06, Finking, Robert <[EMAIL PROTECTED]> wrote: > > > Ah yes, one of the other things I had to do to ge

Re: get api perl and snmpget don't work ?

2006-01-05 Thread Thomas Anders
[EMAIL PROTECTED] wrote: In the subroutine get I try simple or double quote and begin OID with point or not anywhere anywhere I have the same error with : snmpget -c public 192.5.60.120 .13.4.1.55.1.9 On another thought, you may want to try snmpget -v 2c -c public 192.5.60.120 1.3.6.1.2.1.1

Re: get api perl and snmpget don't work ?

2006-01-05 Thread Thomas Anders
[EMAIL PROTECTED] wrote: use SNMP $sess = new SNMP::Session(DestHost => "192.5.60.120",Community => "public"); $val = $sess->get('.1.3.4.1.55.1.9'); print "result $val\n"; How about a little error handling? SNMP::Session() seems to fail for you and you don't handle this at all in your code.

Re: get api perl and snmpget don't work ?

2006-01-05 Thread sbarbaroux
Quoting Thomas Anders <[EMAIL PROTECTED]>: Hi, I use a basic subroutine get like: -- use SNMP $sess = new SNMP::Session(DestHost => "192.5.60.120",Community => "public"); $val = $sess->get('.1.3.4.1.55.1.9'); print "result $val\n"; --