Difference between revisions of "Template:TUT:LIST"

From Net-SNMP Wiki
Jump to: navigation, search
m (Reverted edits by Allensmith (talk) to last revision by Alysia101)
(Operating System Specific Tutorials)
 
(16 intermediate revisions by 8 users not shown)
Line 49: Line 49:
 
* Client / Manager Coding Tutorials
 
* Client / Manager Coding Tutorials
 
** [[TUT:Simple Application|Writing a simple application]]
 
** [[TUT:Simple Application|Writing a simple application]]
** [http://www.merchantos.com pos software]
 
 
** [[TUT:Simple Async Application|Writing a simple asynchronous application]]
 
** [[TUT:Simple Async Application|Writing a simple asynchronous application]]
 
* Agent Coding Tutorials
 
* Agent Coding Tutorials
 +
** The [[Agent Architecture]] page might be worth reading before or after the agent coding tutorials, and describes how the [[Agent Helpers]] work under the hood.
 
** [[TUT:Writing a MIB Module | Writing a mib module]] to serve information described by an SNMP MIB, and how to compile it into the net-snmp snmpd agent.
 
** [[TUT:Writing a MIB Module | Writing a mib module]] to serve information described by an SNMP MIB, and how to compile it into the net-snmp snmpd agent.
 
** [[TUT:Writing a Dynamically Loadable Object | Writing a Dynamically Loadable Object]] that can be loaded into the SNMP agent.
 
** [[TUT:Writing a Dynamically Loadable Object | Writing a Dynamically Loadable Object]] that can be loaded into the SNMP agent.
 
** [[TUT:Writing a Subagent | Writing a Subagent]] that can be run to attach to the snmpd master agent.
 
** [[TUT:Writing a Subagent | Writing a Subagent]] that can be run to attach to the snmpd master agent.
 
** [[Tut:Extending snmpd using perl | Writing a perl plugin to extend the agent]] using the NetSNMP::agent module.
 
** [[Tut:Extending snmpd using perl | Writing a perl plugin to extend the agent]] using the NetSNMP::agent module.
 +
** [[Tut:Extending_snmpd_using_shell_scripts | Writing shell scripts to extend the agent]]
 
** Using mib2c to help write an agent code template for you
 
** Using mib2c to help write an agent code template for you
 
*** [[TUT:mib2c General Overview | General mib2c Overview]]
 
*** [[TUT:mib2c General Overview | General mib2c Overview]]
Line 72: Line 73:
 
* Building With Visual Studio 2005 Express
 
* Building With Visual Studio 2005 Express
 
** [[Using the command line and nmake]]
 
** [[Using the command line and nmake]]
 +
* Building Net-SNMP 64-bit with Visual C++ 2010 Express
 +
** [[Using the command line and nmake (VC++ 2010 Express)]]
 
* [[Net-Snmp on Ubuntu]]
 
* [[Net-Snmp on Ubuntu]]
 
* [[Net-SNMP and lm-sensors on Ubuntu 10.04]]
 
* [[Net-SNMP and lm-sensors on Ubuntu 10.04]]
 +
* Net-SNMP for windows:
 +
** How to install: [http://www.netadmintools.com/art487.html]
 +
** How to configure: [http://www.netadmintools.com/art488.html]

Latest revision as of 16:43, 10 November 2014

Tutorial Sections

About the SNMP Protocol

These tutorial links talk about SNMP generically and how the protocol itself works. They are good introductory reading material and the concepts are important to understand before diving into the later tutorials about Net-SNMP itself.

Net-SNMP Command Line Applications

These tutorial pages discuss the command line tools provided in the Net-SNMP suite of tools. Nearly all the example commands in these tutorials works if you try it yourself, as they're all examples that talk to our online Net-SNMP test agent. Given them a shot!

Application Configuration

All of our applications support configuration to allow you to customize how they behave.

Net-SNMP Daemons

Net-SNMP comes with two long-running daemons: a SNMP agent (snmpd) for responding to management requests and a notification receiver (snmptrapd) for receiving SNMP notifications.

Coding Tutorials

Net-SNMP comes with a highly flexible and extensible API. The API allows you to create your own commands, add extensions to the agent to support your own MIBs and perform specialized processing of notifications.

Debugging SNMP Applications and Agents

All our tools and applications have extensive debugging output. These tutorials talk about how the debugging system works and how you can add your own debugging statements to you code:

Operating System Specific Tutorials