Hi all, I am running a compiled version of snmptrapd (NetSNMP 5.1) on a Windows 2000 
PC.

I get the next error when I specify a traphandle directive at snmptrapd.conf file:

make_tempfile: error creating file /tmp/snmpda01896

Has anybody see this message before? Any suggestion about solving this issue?

Best Regards,

David


> -----Original Message-----
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Behalf Of Dave
> Shield
> Sent: Wednesday, September 22, 2004 11:29 AM
> To: Asaf Matan
> Cc: [EMAIL PROTECTED]
> Subject: Re: Table Get Time Complexity O(k(n^2)) ?? 
> 
> 
> 
> > When I try to walk or do table get from the client I get:
> > This is like O(k*(n^2) complexity
> 
> > How can I make the scan more efficient??
> 
> 
>   a)  Use 'snmpbulkwalk' (with v2c/3)
>       (which will try to get as much as possible in one go)
> 
>   b)  Use 'snmptable'
>       (which will walk the columns in parallel)
> 
>   c)  Implement your MIB using something other than the
>       'iterator' helper (which is not designed for efficiency)
> 
>   d)  If the table is stored in the correct order internally,
>       then set the flag NETSNMP_ITERATOR_FLAG_SORTED
>       in the initialisation routine:
> 
>       netsnmp_iterator_info  *iinfo =
>            SNMP_MALLOC_TYPEDEF(netsnmp_iterator_info);
>       iinfo->get_first_data_point = XXX_get_first_data_point;
>       iinfo->get_next_data_point  = XXX_get_next_data_point;
> +     iinfo->flags |= NETSNMP_ITERATOR_FLAG_SORTED;
> 
> 
> 
> Dave
> 
> 
> 
> -------------------------------------------------------
> This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170
> Project Admins to receive an Apple iPod Mini FREE for your 
> judgement on
> who ports your project to Linux PPC the best. Sponsored by IBM.
> Deadline: Sept. 24. Go here: http://sf.net/ppc_contest.php
> _______________________________________________
> Net-snmp-users mailing list
> [EMAIL PROTECTED]
> Please see the following page to unsubscribe or change other options:
> https://lists.sourceforge.net/lists/listinfo/net-snmp-users
> 
-------------------------------------------------------------------------------------------------------------------
Este correo electrónico y, en su caso, cualquier fichero anexo al mismo, contiene 
información de carácter confidencial exclusivamente dirigida a su destinatario o 
destinatarios. Queda prohibida su divulgación, copia o distribución a terceros sin la 
previa autorización escrita de Indra. En el caso de haber recibido este correo 
electrónico por error, se ruega notificar inmediatamente esta circunstancia mediante 
reenvío a la dirección electrónica del remitente.

The information in this e-mail and in any attachments is confidential and solely for 
the attention and use of the named addressee(s). You are hereby notified that any 
dissemination, distribution or copy of this communication is prohibited without the 
prior written consent of Indra. If you have received this communication in error, 
please, notify the sender by reply e-mail


-------------------------------------------------------
This SF.Net email is sponsored by: YOU BE THE JUDGE. Be one of 170
Project Admins to receive an Apple iPod Mini FREE for your judgement on
who ports your project to Linux PPC the best. Sponsored by IBM.
Deadline: Sept. 24. Go here: http://sf.net/ppc_contest.php
_______________________________________________
Net-snmp-users mailing list
[EMAIL PROTECTED]
Please see the following page to unsubscribe or change other options:
https://lists.sourceforge.net/lists/listinfo/net-snmp-users

Reply via email to