views:

142

answers:

1

I'd love it if there is an awesome native Scala library for SNMP like there is Dispatch for HTTP but I can't find one. Is there one? Baring that, should I use a Java library like SNMP4J? What I want to do is so simple that it almost seems like overkill: I just want to listen on a given port for SNMP messages (which will always be in the same format) and send them on to an actor.

Any suggestions?

A: 

Simple googling I found this http://code.google.com/p/snmpbulk/

Still requires snmp4j underneath though. And I also dont like SNMP4J but I agree with you that there are not simple alternatives. Good luck in your search.

Sands
Thanks, that's a nice start. Unfortunately the GPL license means that we won't be able to use it here at work.
pr1001