Hi all, I am currently working on a snmp project. Honestly, I'm complete new to this protocol. I've read microsoft's winsnmp api, but I'm confused how to add a database (mib) to the agent. Can you give me any hints pls? I also doubt if it's the correct place to ask question on snmp, pls direct me to the right place if I'm wrong, thx!
You have comp.protocols.snmp additionally Arkady "Cosmo Nova" wrote in message news:OH%23wGfw$FHA.1568@TK2MSFTNGP10.phx.gbl... > Hi all, > > I am currently working on a snmp project. Honestly, I'm complete new to > this protocol. I've read microsoft's winsnmp api, but I'm confused how to > add a database (mib) to the agent. Can you give me any hints pls? I also > doubt if it's the correct place to ask question on snmp, pls direct me to > the right place if I'm wrong, thx! > > >
Hi All, I'm new to SNMP. I have a task to add my own set of alert as an agent on windows or linux platform. This example was definitely helpful as an agent development on windows: http://www.codeproject.com/internet/SNMP_Agent_DLL__Part1_.asp I have went through all the steps and I can get/set my data through this viewer/manager: http://www.codeproject.com/internet/MIB_Browser_tool.asp How ever, when I come to Orion http://www.solarwinds.net/Orion/Index.htm I cannot view/get my data as a node property. How can I add the MIB/database to other SNMP managers like Orion? Back to the development through, let say I want to have a customized subnode tree and share it among the agents and clients. Is these the correct steps for development? 1. List all my data and write them as a MIB using ASN.1 2. Use any SNMP API/tools (WinSNMP/net-snmp/...) to compile the MIB, and build a probably C skeleton code 3. Develope my agent using similar way as http://www.codeproject.com/internet/SNMP_Agent_DLL__Part1_.asp with the skeleton code 4. Import my MIB (written in ASN.1) to the manager software (like Orion) and which is the former question I asked. 5. Happy settting, getting, monitoring the data through the manager. Am I right? Thanks so much!!