Re: to run net-snmp configure, build, make in one step

2004-08-24 Thread Users
On Fri, 20 Aug 2004 17:16:48 +0800 Jim wrote: JS>I merge two runs of configure into one single configure as following and JS>it went through all the way without asking any questions. JS> [...] JS> I just want to be sure by doing one single ./configure like above has JS> no different

Re: AGENTX_CLOSE message from the SNMP Agent to SubAgent

2004-08-24 Thread Users
On Fri, 20 Aug 2004 18:34:27 +0530 Kurapati wrote: KMG> If the SNMP Agent does not get responses from SNMP SubAgent for a KMG> preconfigured number of times with in a specied of time, SNMP Agent will KMG> declare that SubAgent as dead/not responding. When I digged into the KMG> code, I observed th

Re: About Multi-request

2004-08-24 Thread Users
On Tue, 24 Aug 2004 17:22:51 +0800 valley wrote: V> I tend to extend a snmp agent on vxworks using net-snmp, I doubt about the V> process of multi request at the same time. That is, if application need a V> long time to finish one request's action , and before application finish it, V> we need agen

Re: sockets in net-snmp

2004-08-24 Thread Users
On Wed, 25 Aug 2004 02:30:16 +0100 Pedro wrote: PN> Could someone please indicate me which are the functions responsible for PN> the implementation of the udp socket used by net-snmp? Is winpipe.c one PN> of these functions? That file is used to emulate unix pipes on windows. Most of the udp code

Re: pass-through and getnext

2004-08-24 Thread Users
On Mon, 23 Aug 2004 09:48:50 -0400 Hoover wrote: HMAAC> I'm attempting to override the non-value for hrProcessorLoad in order to HMAAC> allow SolarWinds to poll our Linux servers since net-snmp doesn't HMAAC> provide a value for this internally. The script below works fine if the HMAAC> specific O

sockets in net-snmp

2004-08-24 Thread Pedro Neves
Dear all, Could someone please indicate me which are the functions responsible for the implementation of the udp socket used by net-snmp? Is winpipe.c one of these functions? Thanks in advance Best Regards, Pedro Neves --- SF.Net email is sp

Re: Can't make cvs source at FreeBSD 4.8-R

2004-08-24 Thread Users
On Tue, 24 Aug 2004 15:42:37 +0900 (JST) Akihiro wrote: AI> I try to make cvs source on FreeBSD 4.8, But can not. AI> Because of AI> #define if_type if_data.ifi_type AI> at /usr/include/net/if_var.h . AI> AI> problem code is mibII/interfaces.c . AI> AI> ../../include/net-snmp/data_acc

Re: Source dependant processing in a handler

2004-08-24 Thread Users
AP> details, but what I would like to do is to be able to set up several AP> IP-aliases on one machine, and let the snmp daemon reply differently AP> depending on which IP-alias a snmp request is sent to. You'll have to do a little coding. The default behaviour is to bind to udp:161. That is, po

Re: dropped packets

2004-08-24 Thread Chuck Yerkes
Quoting Carlos Cantu ([EMAIL PROTECTED]): > What's the convention being used out there when a management > app wants to make sure no traps are lost? Traps are also > UPD packets like regular Gets/Responses, right? Therefore > there is always the possiblity that a packet might be lost. > Is there

Re: dropped packets

2004-08-24 Thread Users
On Tue, 24 Aug 2004 12:08:55 -0600 Carlos wrote: CC> What's the convention being used out there when a management CC> app wants to make sure no traps are lost? Don't use traps. Use informs, which are confirmed. CC> Traps are also CC> UPD packets like regular Gets/Responses, right? Therefore CC>

dropped packets

2004-08-24 Thread Carlos Cantu
What's the convention being used out there when a management app wants to make sure no traps are lost? Traps are also UPD packets like regular Gets/Responses, right? Therefore there is always the possiblity that a packet might be lost. Is there such a thing as an SNMP Trap over TCP? Or is there

Re: [wastefully-long-tag-indicating-that-this-is-about-net-snmp-users] mailing list suggestion

2004-08-24 Thread Carlos Cantu
I don't understand the hang-up. Is it that the Subject column of your e-mail browser is not wide enough to show a short tag plus the real subject text? I don't really need the tags myself. The techie network gurus must be doing a good job on spam filtering. But if some people can benefit from a

RE: No notifiction sent after call send_v2trap()

2004-08-24 Thread valley
hi,dave: Just as you said. I delete line "rocommunity public ", agent run ok! Thanks you very much! valley -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Dave Shield Sent: Tuesday, August 24, 2004 9:25 PM To: valley Cc: [EMAIL PROTECTED] Subject: Re: No n

Re: No notifiction sent after call send_v2trap()

2004-08-24 Thread Dave Shield
> The ACM parameters in configuration file is > "rocommunity public " > "rwcommunity public" >From the FAQ: How do I configure access control? - Note that it is *not* necessary (and not advisible) to specify the same community name for both rocommunity a

RE: No notifiction sent after call send_v2trap()

2004-08-24 Thread valley
dave: Thank you a lot! I add line "trap2sink 127.0.0.1 public 162 " in file snmpd.conf and agent can send trap But I meet a new problem, agent always response "not writable" after receiving SET commands. The ACM parameters in configuration file is "rocommunity public " "rwcommunity public" Wher

SNMP Query on Callback transport

2004-08-24 Thread Jeeru.Subbi
Hi All, I wud just like to seek a clarification as how do you make a query over the Callback transport ? I'd seen that for all other transports we have a transport specifier - for ex: the transport specifiers for UDP, TCP, IPX, UNIX, TCPIPv6 , UDP6, ATMPVC are udp, tcp, ipx, unix, tcpipv6, udp6, p

Source dependant processing in a handler

2004-08-24 Thread Anton Persson
Hello, I'm currently developing a simulation environment at work. The task is to simulate several machines and networks on a single machine. I can't really discuss any details, but what I would like to do is to be able to set up several IP-aliases on one machine, and let the snmp daemon reply di

Re: No notifiction sent after call send_v2trap()

2004-08-24 Thread Dave Shield
> I called send_v2trap() to send a trap, but none is send out. How have you configured the agent? In particular, what "trapsink" or "trap2sink" or similar settings do you have? See 'snmpd.conf(5)' under the heading SETTING UP TRAP AND/OR INFORM DESTINATIONS Dave -

No notifiction sent after call send_v2trap()

2004-08-24 Thread valley
hi,all: I called send_v2trap() to send a trap, but none is send out. I traced into the code, found in function send_notifications(), the global variable snmpNotifyTableStorage is NULL, so, no trap is send out. Does anyone know what the matter is? thanks, valley

About Multi-request

2004-08-24 Thread valley
hi,all: I tend to extend a snmp agent on vxworks using net-snmp, I doubt about the process of multi request at the same time. That is, if application need a long time to finish one request's action , and before application finish it, we need agent can receive other requests. And after agent receiv

[wastefully-long-tag-indicating-that-this-is-about-net-snmp-users] mailing list suggestion

2004-08-24 Thread Chuck Yerkes
Quoting Thomas Anders ([EMAIL PROTECTED]): > Chuck Yerkes wrote: > >If you can't use sender then where do we stop. Perhaps the Subject > >could contain the date the message was sent as well. > >No, we have a billion email headers. > > Remain calm. We're talking about adding a mailinglist id to th

Can't make cvs source at FreeBSD 4.8-R

2004-08-24 Thread Akihiro IIJIMA
I try to make cvs source on FreeBSD 4.8, But can not. Because of #define if_type if_data.ifi_type at /usr/include/net/if_var.h . problem code is mibII/interfaces.c . gcc -I../../include -I. -I../../agent -I../../agent/mibgroup -I../../snmplib -g -O2 -Dfreebsd4 -Wall -Winline -Wst