calmh / node-snmp-native

Native Javascript SNMP library for Node.js
MIT License
252 stars 65 forks source link

Trap listener #14

Closed hectorfhurtado closed 10 years ago

hectorfhurtado commented 10 years ago

Hi, your module is great and easy to use. I want to mount a trap listener but you don't have this functionality. Is it going to be on this project? or can you point me on how to implement it?

Thanks in advance

Héctor Fernando

calmh commented 10 years ago

No plans. However, you could probably simply use an UDP listener to get the packets, and use snmp.parse() to get the structure of the trap out.

hectorfhurtado commented 10 years ago

Hi, thank you. It works with snmp.parse() as you wrote.

Héctor Fernando