Re: proposed net-snmp release schedules

2006-04-28 Thread Dave Shield
On Mon, Apr 24, 2006 at 11:05:50AM -0700, Wes Hardaker wrote: > The following web page depicts the rough release schedules of the > upcoming net-snmp releases. > > Note that the 4.2.7 dates were made up by me, and not Dave, which > means they're certainly subject to modification by him. Unsurpr

Problem which indexes

2006-04-28 Thread Wesley Naves de Faria
Hi,   i wrote new mib using mib2c.create-dataset.conf, my mib execute a command and store the result. I use add_row in the snmpd.conf to add/del parameters to execute a command.     When i rum snmpwalk ... it´s ok see below on piece:     snmpwalk ...   .1.3.6

Re: TRAPS + get requests

2006-04-28 Thread Wes Hardaker
> On Fri, 28 Apr 2006 16:41:16 +0530, "Nikanth K" <[EMAIL PROTECTED]> said: Nikanth> If I use multi-threading(pthreads) to do this,i.e., one Nikanth> thread monitors and sends traps and the other handles Nikanth> get-requests - the subagent crashes at some point of time. I Nikanth> heard multi

Re: warnings generated by compile

2006-04-28 Thread Wes Hardaker
> On Thu, 20 Apr 2006 11:16:19 -0500, Lynette Bellini <[EMAIL PROTECTED]> > said: Lynette> solaris 2.8, sparc sun4u, openssl 0.9.6, compiling with cc Lynette> (forte C 6.2) Lynette> configure: WARNING: sys/socketvar.h: present but cannot be compiled Thanks. you didn't say which versio

Re: net-snmp configuration in runtime

2006-04-28 Thread Wes Hardaker
> On Sun, 23 Apr 2006 18:58:18 +1000 (EST), Thomas Jeffry <[EMAIL > PROTECTED]> said: Thomas> May I change its configuration without restart? Thomas> Does signal SIGHUP works? It's supposed to. Having said that, it's not great. HUP has always been hard to peg down as saying when it wor

Re: Error that says I should report it...

2006-04-28 Thread Wes Hardaker
> On Mon, 24 Apr 2006 15:46:10 -0500, "Will Erwin" <[EMAIL PROTECTED]> said: Will> As I was compiling net-snmp, I came across an error that I Will> thought I should report. I am running FreeBSD 6.0, as stated Will> below. Thanks. We believe most of these errors are fixed in more recent rele

Re: SNMP

2006-04-28 Thread Wes Hardaker
> On Wed, 26 Apr 2006 08:58:53 +0200, "Paul van Zyl" <[EMAIL PROTECTED]> > said: Paul> snmpwalk -v 1 localhost -c public .1.3.6.1.4.1.2021.2 Paul> It picks up the name of the processes, The max and min number of Paul> processes that must run and I have confirmed the /bin/ps -e show Paul>

Re: atol() won't work

2006-04-28 Thread Wes Hardaker
> On Wed, 26 Apr 2006 16:49:35 +0200, "William Rizzo" <[EMAIL PROTECTED]> > said: William> my need is to convert a string to a long int... William> generally i use atol(); William> but it won't work. i'm trying so: William> snmp_set_quick_print(1); William> value = atol((vars->name, vars-

Re: [PATCH] : Fix external fd handling

2006-04-28 Thread Wes Hardaker
> On Tue, 25 Apr 2006 11:01:58 -0700, "David Kimdon" <[EMAIL PROTECTED]> > said: David> It is marked as fixed and applied, but I do not see the change in cvs. David> In any case the change included in this mail should be applied instead. The SF read-only server is currently under a HUGE

Re: Bug#363399: Net SNMP has broken sysObjectID

2006-04-28 Thread Wes Hardaker
> On Sat, 22 Apr 2006 11:35:10 +0200, Hilmar Preusse <[EMAIL PROTECTED]> > said: Hilmar> The "net-snmp-admin PGP key" has expired: Hilmar> [EMAIL PROTECTED]:~ $ gpg --list-keys 7800FEAC Hilmar> pub 1024D/7800FEAC 2003-01-15 [expired: 2006-01-14] Hilmar> uid Net-SNMP Ad

AW: TRAPS + get requests

2006-04-28 Thread Pedot, Wolfgang
Hi,   I would suggest to call agent_check_and_process with parameter "0" to make it non-blocking and check your trap-conditions in the same loop. Thats the way I do it.   regards Wolfgang Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Nikanth KGesendet: Freitag, 28. April

TRAPS + get requests

2006-04-28 Thread Nikanth K
Hi I am developing an agentx subagent on SUSE. The problem is, I want to handle GET requests as well as TRAPS to be sent by the same subagent. But to handle get requests we need to loop on    while(1)     {     agent_check_and_process(1); /* 0 == don't block */     } And I w