High-level SNMP =============== This chapter illustrates various uses of the high-level programming interfaces to some of Standard SNMP Applicaitons, as defined in `RFC3413 `_. The so called "oneliner" API is designed to be simple, concise and suitable for the most frequent operations. For that matter only Command Generator and Notification Originator Applications are currently wrapped into a nearly one-line Python expression. .. note:: The following examples involve creating Python iterator, the next() call is used to invoke iterator just once. In most examples approximate analogues of well known Net-SNMP snmp* tools command line options are shown. That may help those readers who, by chance are familiar with Net-SNMP tools, better understanding what example code doe Command Generator Applications ------------------------------ Here's a quick example on a simple SNMP GET by oneliner API: .. include:: /../../examples/v3arch/asyncore/oneliner/manager/cmdgen/v1-get.py :start-after: options: :end-before: Functionally .. literalinclude:: /../../examples/v3arch/asyncore/oneliner/manager/cmdgen/v1-get.py :start-after: """# :language: python To make use of SNMPv3 and USM, the following code performs a series of SNMP GETNEXT operations effectively fetching a table of SNMP variables from SNMP Agent: .. include:: /../../examples/v3arch/asyncore/oneliner/manager/cmdgen/pull-whole-mib.py :start-after: options: :end-before: Functionally .. literalinclude:: /../../examples/v3arch/asyncore/oneliner/manager/cmdgen/pull-whole-mib.py :start-after: """# :language: python More examples on Command Generator API usage follow. .. toctree:: /examples/v3arch/asyncore/oneliner/manager/cmdgen/snmp-versions /examples/v3arch/asyncore/oneliner/manager/cmdgen/modifying-variables /examples/v3arch/asyncore/oneliner/manager/cmdgen/walking-operations /examples/v3arch/asyncore/oneliner/manager/cmdgen/table-operations /examples/v3arch/asyncore/oneliner/manager/cmdgen/mib-tweaks /examples/v3arch/asyncore/oneliner/manager/cmdgen/transport-tweaks /examples/v3arch/asyncore/oneliner/manager/cmdgen/asynchronous-operations /examples/v3arch/asyncore/oneliner/manager/cmdgen/advanced-topics Notification Originator Application ----------------------------------- Sending SNMP TRAP's and INFORM's is as easy with PySNMP's oneliner library. The following code sends SNMP TRAP: .. include:: /../../examples/v3arch/asyncore/oneliner/agent/ntforg/default-v1-trap.py :start-after: options: :end-before: Functionally .. literalinclude:: /../../examples/v3arch/asyncore/oneliner/agent/ntforg/default-v1-trap.py :start-after: """# :language: python More examples on Notification Originator API usage follow. .. toctree:: /examples/v3arch/asyncore/oneliner/agent/ntforg/snmp-versions /examples/v3arch/asyncore/oneliner/agent/ntforg/common-notifications /examples/v3arch/asyncore/oneliner/agent/ntforg/snmp-v1-trap-variants /examples/v3arch/asyncore/oneliner/agent/ntforg/evaluating-notification-type /examples/v3arch/asyncore/oneliner/agent/ntforg/asynchronous-operations /examples/v3arch/asyncore/oneliner/agent/ntforg/advanced-topics More sophisticated or less popular SNMP operations can still be performed with PySNMP through its Native API to Standard SNMP Applications.