Re: 5.4.1.pre3 build issues on HP-UX 11.23

2007-07-03 Thread Aleksey Tsalolikhin
Hi. Any update on bug #1742278, please? If there is any other information I can provide or anything I can do to help, please let me know. Truly, -at - This SF.net email is sponsored by DB2 Express Download DB2 Express C -

Re: FW: [osol-discuss] multiprocessor sparc - ticks vs % CPU usage

2007-07-03 Thread Dave Shield
On 03/07/07, Bruce Shaw <[EMAIL PROTECTED]> wrote: > I have a multiprocessor sparc v440 and I'm trying to monitor cpu usage. > The mibs are showing ticks, but I don't see any for % or usage. No - the rawCpu* objects are counters, so you need to take the deltas between successive readings. The me

RE: problem with firewall settings in using net-snmp

2007-07-03 Thread Pamidipati Suresh-G20238
Hi Senthil, Did you check snmpd/agent log file..? Are there any errors/warnings in the log file..? snmpd does not process any requests if it was not given a proper configuration file. Please see the man page of snmpd for more details. Regards, Suresh. -Original Message- From: [EMAI

RE: How to Run the Agent after make install

2007-07-03 Thread Pamidipati Suresh-G20238
Hi Manu, SNMP agent binary is named as "snmpd" and it is available in bin directory inside "prefix" path that you have given while running configure. [./configure --prefix=..] snmpd can be started as snmpd [options] [Listening address] By default snmpd listens on UDP port 161 for incoming

problem with firewall settings in using net-snmp

2007-07-03 Thread Senthil Nathan
Hi, Im new to use net-snmp. I installed it in my windows machine and started the agent. But there is no request being processed by the agent. There is some problem with the firewall settings. Please let me know, what should I need to change to fix this. Thanks Senthil --

How to Run the Agent after make install

2007-07-03 Thread manu kumar
-- Forwarded message -- From: manu kumar <[EMAIL PROTECTED]> Date: Jul 3, 2007 8:07 PM Subject: How to Run the Agent after make install To: [EMAIL PROTECTED] Hi Dave Shield, I have Installed net-snmp , After make install Instruction i can able to see the all files in /

FW: [osol-discuss] multiprocessor sparc - ticks vs % CPU usage

2007-07-03 Thread Bruce Shaw
I'm going to have a look at this later, but does anybody remember about this off the top of their head? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Csgonan Sent: Monday, July 02, 2007 1:59 PM To: [EMAIL PROTECTED] Subject: [osol-discuss] multiprocesso

AW: SNMP AgentX Problem

2007-07-03 Thread Stefan Mikuszeit
Hello Dave, i have changed the code of logging from the perlscript, but i become not more entries: mysql_agent.pl: started us as a subagent (NetSNMP::agent=HASH(0x83ee44c)) mysql_agent.pl: refs: mysql_agent.pl: - finished process

Re: undefined reference..

2007-07-03 Thread Thomas Anders
Sharad Chandra wrote: > on 4.2 snmp version: net-snmp-5.1.2 > but i don't know open ssl version coz. > pkg_info | grep ssl and crypto is null. but i have crypto > bash-2.04$ ls /usr/lib/libcrypt* > /usr/lib/libcrypt.a /usr/lib/libcrypt.so.2 /usr/lib/libcrypto.a > /usr/lib/libcrypto.so.1 >

AW: SNMP AgentX Problem

2007-07-03 Thread Stefan Mikuszeit
Hello Dave Log Output from the subagent: [EMAIL PROTECTED]:~# /usr/lib/net-snmp/agents/mysql_agent.pl started us as a subagent (NetSNMP::agent=HASH(0x82cb94c)) refs: , , , - finished processing shutting down shutting down Refreshed at 118346

AW: SNMP AgentX Problem

2007-07-03 Thread Stefan Mikuszeit
Hello Dave, i have found following: if i put this line to snmpd.conf the snmpd dosn't work anymore (snmpwalk / snmpget becomes timeout): perl do '/usr/lib/net-snmp/agents/mysql_agent.pl'; Wenn i start the agent (snmpd) via the '-X

Re: SNMP AgentX Problem

2007-07-03 Thread Dave Shield
On 03/07/07, Stefan Mikuszeit <[EMAIL PROTECTED]> wrote: > This is the code for set the new Value to the OID, it's included in > the Script ;-) > > if ($next ne "") { > $value = $global_status{$next}{'value'}; > > $request->setOID($next); > $request->setValue(

Re: undefined reference..

2007-07-03 Thread Sharad Chandra
Hi Thomas, on 4.2 snmp version: net-snmp-5.1.2 but i don't know open ssl version coz. pkg_info | grep ssl and crypto is null. but i have crypto bash-2.04$ ls /usr/lib/libcrypt* /usr/lib/libcrypt.a /usr/lib/libcrypt.so.2 /usr/lib/libcrypto.a /usr/lib/libcrypto.so.1 /usr/lib/libcrypt.so

AW: SNMP AgentX Problem

2007-07-03 Thread Stefan Mikuszeit
Hello Dave, thx for your help :-) This is the code for set the new Value to the OID, it's included in the Script ;-) if ($next ne "") { $value = $global_status{$next}{'value'}; $request->setOID($next); $request->setValue(ASN_OCTET_STR, "$value");

Re: IP Address & System Up Time MIB Variable

2007-07-03 Thread Dave Shield
On 03/07/07, Sharad Chandra <[EMAIL PROTECTED]> wrote: > $ snmpwalk -v2c -c public localhost sysUpTime > DISMAN-EVENT-MIB::sysUpTimeInstance = Timeticks: (95049246) 11 days, > 0:01:32.46 Note that this is the length of time that the *SNMP agent* has been running, not the time that the system as a

Re: undefined reference..

2007-07-03 Thread Thomas Anders
Sharad Chandra wrote: > I am compiling a code on freebsd 4.2 system but i am getting this problem > > bash-2.04$ gcc -I /usr/local/include -L /usr/local/lib -lnetsnmp -lcrypto > trap.c > /usr/local/lib/libnetsnmp.so: undefined reference to `EVP_DigestFinal_ex' > /usr/local/lib/libnetsnmp.so: unde

Re: undefined reference..

2007-07-03 Thread Sagar Shukla
Hi Sharad, This could most probably be because of older version of libnetsnmp library running on the freebsd 4.2 and the package you are trying to compile required more recent version of libnetsnmp which is available on freebsd 6.0 . You can try upgrading libnetsnmp library packages to resol

undefined reference..

2007-07-03 Thread Sharad Chandra
Hi, I am compiling a code on freebsd 4.2 system but i am getting this problem bash-2.04$ gcc -I /usr/local/include -L /usr/local/lib -lnetsnmp -lcrypto trap.c /usr/local/lib/libnetsnmp.so: undefined reference to `EVP_DigestFinal_ex' /usr/local/lib/libnetsnmp.so: undefined reference to `AES_set_e

Re: IP Address & System Up Time MIB Variable

2007-07-03 Thread Sharad Chandra
Hi, I am not sure about IP address, try this $ snmpwalk -v2c -c public localhost sysUpTime DISMAN-EVENT-MIB::sysUpTimeInstance = Timeticks: (95049246) 11 days, 0:01:32.46 $ snmpwalk -v2c -c public localhost ifTable IF-MIB::ifIndex.1 = INTEGER: 1 IF-MIB::ifIndex.2 = INTEGER: 2 IF-MIB::ifIndex.3

Re: Urgent: Multiple sub-agents registering same MIB

2007-07-03 Thread Shivani Garg
Thanks a lot for your prompt reply on this.. Probably, for my kind of setup, wherein I want more than one sub-agent to register exactly the same OIDs in the MIB, the later option should be more approriate. Can you help me with this.. I am using SNMPv2 at my end, where do I define this context/com

Re: SNMP AgentX Problem

2007-07-03 Thread Dave Shield
On 02/07/07, Stefan Mikuszeit <[EMAIL PROTECTED]> wrote: > The problem is that the subagent dos not submit the collected data's > to the snmp agent, but i don't no why :( Try activating the debugging code in your subagent. What does that show? What are the exact commands you are trying? I haven

Re: About V3 Key Update

2007-07-03 Thread Dave Shield
On 03/07/07, Li Yun-w22793 <[EMAIL PROTECTED]> wrote: > But I don't know how to organize the snmpget command. Say, the engineID is > '0x80a103' and the userName is 'admin_1'. I try to run the > command like this and it doesn't work. >

About V3 Key Update

2007-07-03 Thread Li Yun-w22793
Hi All, I want to trigger the net-snmp to update the Auth Key through snmpget command (then snmpset command). According to the net-snmp implementation I should send the following command. snmpget IP usmDHUserAuthKeyChange.engineID.userName

IP Address & System Up Time MIB Variable

2007-07-03 Thread Uday Sorte
Hi Guys, Are there any MIB variables as a part of standard MIB included with net-snmp for reading the system up time (uptime) and system ip address. or Is there any way I can read these parameters via SNMP without implementing my own MIB for these parameters. Thanks in Advance, Uday

Re: Urgent: Multiple sub-agents registering same MIB

2007-07-03 Thread Dave Shield
On 03/07/07, Shivani Garg <[EMAIL PROTECTED]> wrote: > I want to run multiple sub-agents (all running from one IP) all registering > the same MIB with one snmpd. Is there any way this can be supported using > agentx protocol so that a GET request for instance-1 of some MIB object (say > myObject) g

Urgent: Multiple sub-agents registering same MIB

2007-07-03 Thread Shivani Garg
Greetings to all. I want to run multiple sub-agents (all running from one IP) all registering the same MIB with one snmpd. Is there any way this can be supported using agentx protocol so that a GET request for instance-1 of some MIB object (say myObject) goes to subagent-1 and a request for insta