Create SNMP Listener (server) using C#

2.9k Views Asked by At

I know it's possible to create an agent and query an SNMP enabled device but i need to create an 2 or more SNMP listener in one PC on different ports so that one PC can have may SNMP listener. So that i can send my own message when an agnent queries. Wel as for my understanding SNMP uses UDP so listening UDP sockets on different ports can i receive requests ? Or are there any restrictions?

1

There are 1 best solutions below

2
On

If you scan the documentation of #SNMP carefully, you should note that under Lextm.SharpSnmpLib.Messaging namespace, there is a class called ListenerBinding,

http://help.sharpsnmp.com/html/N_Lextm_SharpSnmpLib_Messaging.htm

Thus, for a single Listener instance, you can add multiple bindings, each mapping to an individual port as you wished. That's the quickest way to monitor multiple ports with a single Listener.

Of course, you can create multiple Listener instances or even multiple processes. Technically you get all the freedom. SNMP protocol does not restrict on which port should be used, though 161 is the default port number.