2010/10/5 생각하기
> I 'm going to send SNMPTrapv1 use "send_easy_trap
>
> I can receive the SNMPv2 Trap named "notiport"
> but i can't receive SNMPv1Trap using "send_easy_trap"
>
> what is the problem ?!
From the FAQ
How ca
Hello
I 'm going to send SNMPTrapv1 use "send_easy_trap
I use this .
---
int send_notiport_trap(int module, int port, int reason, char *no
Hello
I want to send SNMPTrapv1
so I choose "send_easy_trap"
I use this .
---
int send_notiport_trap(int module, int port, int reason, char *no
2009/1/22 B V Narasimhulu :
> Why the net-snmp routine: send_easy_trap(x,x) sending trap TWICE for every
> time when call that routine ?
What does your 'snmpd.conf' file contain?
Dave
--
This SF.net em
Hi,
Have one query on traps.
Why the net-snmp routine: send_easy_trap(x,x) sending trap TWICE for every
time when call that routine ?
Thanks in advance.
Regards,
Narasi
Check out the all-new Messenger 9.0! Go to http://in.messenger.yahoo.com
> I don't think you can use send_easy_trap.
Nope - that's wrong.
It is perfectly possible to use 'send_easy_trap'
instead of the other two APIs you mention.
The problem lay elsewhere in the AgentX protocol
handling, and has been fixed in the current releases.
See the e
Stefan,
I don't think you can use send_easy_trap. Look into:
send_enterprise_trap_vars
or
send_v2trap (easier, but I haven't tried yet)
There are examples of both in the project.
Robert Wilcox
--- Stefan Wagner <[EMAIL PROTECTED]> wrote:
> Hi ,
> I have proble
Hi ,
I have problems with send_easy_trap() funktion ,
I have an subagent and a small own MIB,
I want to send a enterprises Trap if an Event occur:
like
if (...)
{
send_easy_trap(SNMP_TRAP_ENTERPRISESPECIFIC, 1);
}
but my subagent mean :
send_trap: Unknown PDU type
Could anyone give me advice