2

I want to send my own values over SNMP. So I have a program that will generate data. I want this data to be available over SNMP. How do I do this? Any advice will be appreciated.

Kind regards

  • 2
    There is a lot (a _lot_) to SNMP, so I would first point you to the documentation for the [WinSNMP](https://msdn.microsoft.com/en-us/library/windows/desktop/aa379207%28v=vs.85%29.aspx) API, tell you to do a lot of reading of about how SNMP works, and also suggest that, sorry, this isn't the place to ask for generic advice. Once you've written some SNMP code, you can ask here about its errors. – icabod Jan 23 '15 at 10:30

1 Answers1

1

You can extend the Windows SNMP agent by writing your own extensions,

http://www.codeproject.com/Articles/9024/How-to-develop-a-SNMP-extension-agent-DLL

Lex Li
  • 60,503
  • 9
  • 116
  • 147
  • I followed the tutorial, but I get no data. I may have installed the .dll incorectly. But all the values in the document are hard coded? I want the reference my own data that will be running on the device – Simon Bezuidenhout Jan 26 '15 at 08:11