README
上传用户:wxp200602
上传日期:2007-10-30
资源大小:4028k
文件大小:44k
源码类别:

SNMP编程

开发平台:

Unix_Linux

  1.       The Perl5 'SNMP' Extension Module v5.0
  2.       for the Net-SNMP Library
  3. Contents:
  4.    Introduction:
  5.    Availability:
  6.    Contact:
  7.    Supported Platforms:
  8.    Release Notes:
  9.    Installation:
  10.    Operational Description:
  11.    Trouble Shooting:
  12.    Acknowledgments:
  13.    History:
  14.    Copyright:
  15. Introduction:
  16. ******************************NOTE NOTE NOTE**************************
  17.   This module now relies on many other modules.  Do not try to build
  18.   it independently, as it won't work.  Instead of running "perl
  19.   Makefile.PL" in this directory, run it in the net-snmp/perl
  20.   directory instead which has a global makefile used to build all the
  21.   sub-modules in their proper order.
  22. ******************************NOTE NOTE NOTE**************************
  23. Note: The perl SNMP 5.0 module which comes with net-snmp 5.0 and
  24. higher is different than previous versions in a number of ways.  Most
  25. importantly, it behaves like a proper net-snmp application and calls
  26. init_snmp properly, which means it will read configuration files and
  27. use those defaults where appropriate automatically parse MIB files,
  28. etc.  This will likely affect your perl applications if you have, for
  29. instance, default values set up in your snmp.conf file (as the perl
  30. module will now make use of those defaults).  The docmuentation,
  31. however, has sadly not been updated yet (aside from this note).
  32. This is the Perl5 'SNMP' extension module. The SNMP module provides a
  33. full featured, tri-lingual SNMP (SNMPv3, SNMPv2c, SNMPv1) API. The
  34. SNMP module also provides an interface to the SMI MIB parse-tree for
  35. run-time access to parsed MIB data.  The SNMP module internals rely on
  36. the Net-SNMP toolkit library (previously known as ucd-snmp). For
  37. information on the Net-SNMP library see the documentation provided
  38. with the Net-SNMP distribution or the project web page available on
  39. 'Source Forge':
  40. http://sourceforge.net/projects/net-snmp
  41. Availability:
  42. The most recent release of the Perl5 SNMP module can be found bundled
  43. with the latest Net-SNMP distibution available from:
  44. http://sourceforge.net/projects/net-snmp
  45. (Note: The perl SNMP distribution obtained this way has the highest
  46. chance of being up to date and compatible with the Net-SNMP version
  47. with which it is bundled.)
  48. A seperately bundled package of the SNMP module can be obtained from CPAN.
  49. Development and older releases may be found at the following FTP site:
  50. ftp://ftp-east.baynetworks.com/netman/snmp/perl5
  51. (Note: In previous releases this module was compatible with the CMU
  52. SNMP library. Starting with Perl5/SNMP-1.7 this module will *only*
  53. work with the Net-SNMP (aka ucd-snmp) library due to dependence on new
  54. features)
  55. Contact:
  56. the following forums may be helpful:
  57. comp.lang.perl.modules
  58. net-snmp-users@lists.sourceforge.net mail list
  59. (see http://www.net-snmp.org/lists/users/ to subscribe)
  60. Supported Platforms:
  61. Linux 1.2.x, 2.x
  62. Solaris 2.x
  63. Many other UNIX variants
  64. Win9x/NT
  65. Release Notes:
  66. SNMP module version 5.0 is being developed against NET-SNMP-5.0
  67. see http://sourceforge.net/projects/net-snmp for details.
  68. Compatibility with earlier or later versions of Net-SNMP or UCD-SNMP
  69. is not guaranteed due to the dynamic nature of open software
  70. development :).
  71. KNOWN BUGS:
  72. (none?)
  73. Installation:
  74. Build and install the Net-SNMP package - see Net-SNMP README and
  75. INSTALL docs.
  76. (Note: To ensure that any previous Net-SNMP, ucd-snmp or cmu snmp
  77. installation's library or headers are not used by mistake, use the
  78. -NET-SNMP-CONFIG directive to explicitly set the path to the
  79. net-snmp-config command that knows about the net-snmp installation you
  80. want to use.)
  81. NOTE: build all the perl modules at once using the Makefile.PL in the
  82. net-snmp/perl directory rather than the one in this directory.
  83. Unix:
  84. cd net-snmp/perl
  85. perl Makefile.PL [-NET-SNMP-CONFIG="sh ../../net-snmp-config"] [-NET-SNMP-IN-SOURCE=true]
  86. make
  87. make test
  88. make install
  89. FreeBSD:
  90. cd net-snmp/perl
  91. perl Makefile.PL -NET-SNMP-CONFIG="sh ../../net-snmp-config" -NET-SNMP-IN-SOURCE=true
  92. make
  93. make test
  94. make install
  95. Win32 (MSVC++)
  96. This section covers installation of the Perl modules for Microsoft Visual 
  97. C++ 6.0 and Microsoft Microsoft Development Environment 2003/2003 
  98. (MSVC 7.0/7.1).  See the following sections for Cygwin and MinGW.
  99. ActiveState Perl is required.  
  100. Note: With ActiveState Perl (currently at 5.8.2 build 808) and possibly other 
  101.       versions of Perl on Windows, if a Perl script modifies a system 
  102.       environment variable and then calls a C function, the C function will 
  103.       not see the new environment variable.  This problem can be seen with the
  104.       failure of test #3 in the SNMP conf test (perl/SNMP/t/conf.t).  The 
  105.       change to the SNMPCONFPATH env variable is not seen by the calls to the 
  106.       C SNMP module.
  107. Note: The source code should *not* be in a folder that contains a space.  For
  108.       example, compiling in your 'My Documents' or your Desktop (usually
  109.       c:Documents and SettingsxxxxDesktop) is not supported.
  110.      
  111. Automatic building / testing with nmakeperl.bat:
  112. 1.  Ensure a static version of Net-SNMP has been compiled and installed.  Also
  113.     ensure the DLL version of snmplib has been compiled and installed.  The 
  114.     Perl modules will not function correctly without a shared snmplib library 
  115.     or DLL.
  116. 2.  Install the regex win32 package (gnu_regex.exe).  It is available from
  117.     http://people.delphiforums.com/gjc/gnu_regex.html
  118.     a.  Copy regex.h to the include folder of MSVC++
  119.         Example: "C:Program FilesMicrosoft Visual Studio .NET 2003
  120.                   Vc7includeregex.h"
  121.     b.  Copy gnu_regex.lib to the lib folder of MSVC++
  122.         Example: "C:Program FilesMicrosoft Visual Studio .NET 2003
  123.                   Vc7libgnu_regex.lib"
  124.     c.  Copy gnu_regex.dll to your %windir%system32 folder
  125.         Example: "C:winntsystem32gnu_regex.dll"
  126. 3.  Set the environment PATH to locate "nmake", "cl", and "link".
  127.     Visual Studio installs a VCVARS32.BAT batch file for this purpose.
  128. 4.  Using a command prompt window, cd to the source base directory.
  129. 5.  Invoke win32nmakeperl.bat to build the Perl SNMP modules.  If you see 
  130.     errors, review the "nmake.out" file first.  If no errors there,
  131.     then the modules built correctly, but the tests did not rigourously
  132.     prove the mettle of the modules.  Review "nmaketest.out".  If the
  133.     first three sections mostly pass, the modules are well formed.
  134.     NOTE: If the tests fail, there may be a perl application left hanging.
  135.           Use the Task Manager to remove any stale perl or snmp*.exe process.
  136. 6.  The final step is to invoke "nmake install".  If no errors occurred,
  137.     then the SNMP modules are available for use by your Perl programs.
  138. Manual building / testing:
  139. 1.  Ensure a static version of Net-SNMP has been compiled and installed.  Also
  140.     ensure the DLL version of snmplib has been compiled and installed.  The 
  141.     Perl modules will not function correctly without a shared snmplib library 
  142.     or DLL.
  143. 2.  Install the regex win32 package (gnu_regex.exe).  It is available from
  144.     http://people.delphiforums.com/gjc/gnu_regex.html
  145.     a.  Copy regex.h to the include folder of MSVC++
  146.         Example: "C:Program FilesMicrosoft Visual Studio .NET 2003
  147.                   Vc7includeregex.h"
  148.     b.  Copy gnu_regex.lib to the lib folder of MSVC++
  149.         Example: "C:Program FilesMicrosoft Visual Studio .NET 2003
  150.                   Vc7libgnu_regex.lib"
  151.     c.  Copy gnu_regex.dll to your %windir%system32 folder
  152.         Example: "C:winntsystem32gnu_regex.dll"
  153. 3.  Set the environment PATH to locate "nmake", "cl", and "link".
  154.     Visual Studio installs a VCVARS32.BAT for this purpose.
  155. 4.  Using a command prompt window, cd to the perl directory.
  156. 5.  Type: 
  157.       perl Makefile.PL CAPI=TRUE -NET-SNMP-IN-SOURCE=TRUE
  158.        to compile against the RELEASE version of Net-SNMP, or:
  159.       perl Makefile.PL CAPI=TRUE -NET-SNMP-IN-SOURCE=TRUE -NET-SNMP-DEBUG=TRUE
  160.        to compile against the DEBUG version of Net-SNMP.
  161.  
  162.       nmake
  163.       nmake test
  164.       nmake install
  165.       Note: The --NET-SNMP-IN-SOURCE=TRUE causes the Makefile to use the 
  166.             library files from the installed Net-SNMP directory.  To specify the
  167.             installed Net-SNMP directory, use:
  168.             perl Makefile.PL CAPI=TRUE -NET-SNMP-PATH="c:usr"
  169.             Note: -NET-SNMP-DEBUG has no effect while compiling against an 
  170.                   installed copy of Net-SNMP.
  171.       Note: To include OpenSSL, see the net-snmp/README.win32 to compile 
  172.             libsnmp with libeay32 and see that libeay.lib is in the lib folder,
  173.             or in the lib folder of the installed Net-SNMP if using 
  174.             -NET-SNMP-PATH.  For example, c:usrlib
  175. Note:  'nmake test' will automatically start and stop the agent(snmpd) and trap 
  176.        receiver (snmptrapd) while testing the SNMP module.  
  177. Win32 (Cygwin):
  178. cd net-snmpperl
  179. perl Makefile.PL -NET-SNMP-IN-SOURCE=true
  180. make
  181. make test
  182. make install
  183. If you get an error saying your system can't compile, you are probably missing
  184. the regex library.  Install regex from 
  185. http://mirrors.sunsite.dk/cygwin/release/regex/regex-4.4-2-src.tar.bz2
  186. Note: The source code should *not* be in a folder that contains a space.  For
  187.       example, compiling in your 'My Documents' or your Desktop (usually
  188.       c:Documents and SettingsxxxxDesktop) is not supported.
  189. Win32 (MinGW):
  190. Note:  As of February 25th, 2004, the MinGW build of Net-SNMP does not
  191.        compile the DLL version of libsnmp.  Some modules will not function
  192.        correctly without a shared library / DLL.  The OID module does not
  193.        appear to work at all without the DLL, and some parts of other 
  194.        modules may not work.  For example, sharing configurations between
  195.        modules which is why the SNMP conf test fails.
  196. Note: The source code should *not* be in a folder that contains a space.  For
  197.       example, compiling in your 'My Documents' or your Desktop (usually
  198.       c:Documents and SettingsxxxxDesktop) is not supported.
  199.        
  200. These directions are for MinGW 3.1.0 with MSYS 1.0.9 and ActiveState Perl.
  201. Compiling the Perl modules using a MinGW built Perl environment has not
  202. been tested.
  203. Note: With ActiveState Perl (currently at 5.8.2 build 808) and possibly other 
  204.       versions of Perl on Windows, if a Perl script modifies a system 
  205.       environment variable and then calls a C function, the C function will 
  206.       not see the new environment variable.  This problem can be seen with the
  207.       failure of test #3 in the SNMP conf test (perl/SNMP/t/conf.t).  The 
  208.       change to the SNMPCONFPATH env variable is not seen by the calls to the 
  209.       C SNMP module.
  210. The main Net-SNMP package must be compiled with the regex library.  
  211. See Net-SNMP README.win32 for compiling with MinGW.
  212. The following additional software is required:
  213.  dmake:
  214.  http://www.cpan.org/authors/id/GSAR/dmake-4.1pl1-win32.zip  
  215.  ExtUtils-FakeConfig:
  216.  http://search.cpan.org/~mbarbon/ExtUtils-FakeConfig-0.05/
  217. Note:  A PPM package is available from ActiveState for ExtUtils-FakeConfig, but
  218.        it does not include the make_implib.pl script.  Downloading from CPAN
  219.        is recommended.
  220. Installing DMAKE and ExtUtils-FakeConfig:
  221. -----------------------------------------
  222. 1.  Install DMAKE as described in the README.NOW contained in the DMAKE .ZIP 
  223.     file ensuring the DMAKE program can be found in the system path.
  224. 2.  Extract ExtUtils-FakeConfig-0.05.zip to a temporary folder.
  225. 3.  Add the MinGW bin folder to your system path.
  226. 4.  Open a Windows command prompt (cmd) and cd into ExtUtils-FakeConfig-0.05 
  227.     and typet he following to build and install the ExtUtils-FakeConfig module:
  228.     perl Makefile.PL
  229.     dmake
  230.     dmake install
  231. 5.  A Perl import library needs to be created using the ExtUtils-FakeConfig 
  232.     make_implib.pl script.  
  233.     For ActiveState Perl 5.6.x installed to c:Perl, type the following on one
  234.     line:
  235.       perl script/make_implib.pl --output-dir=C:/Perl/lib/CORE 
  236.         --output-lib=libperl56.a --target=mingw c:/Perl/bin/Perl56.dll
  237.     For ActiveState Perl 5.8.x installed to c:Perl, type the following on one 
  238.     line:
  239.       perl script/make_implib.pl --output-dir=C:/Perl/lib/CORE 
  240.         --output-lib=libperl58.a --target=mingw c:/Perl/bin/Perl58.dll
  241. Building the Perl module:
  242. -------------------------
  243. 1.  Complete the section titled 'Installing DMAKE and ExtUtils-FakeConfig'
  244. 2.  Open an MSYS shell and cd into the net-snmp/Perl folder and type the 
  245.     following on one line:
  246.       perl -MConfig_m Makefile.PL -NET-SNMP-IN-SOURCE=true DEFINE=-DMINGW_PERL
  247. 3.  Open a Windows command prompt (cmd) and cd into the net-snmp/perl folder 
  248.     and type:
  249.       dmake
  250.       dmake test
  251.       dmake install
  252.     Note:  'dmake test' will automatically start and stop the agent(snmpd) and 
  253.            trap receiver (snmptrapd) while testing the SNMP module.  
  254. 4.  Remove the MinGW bin folder to your system path if it was not already in
  255.     your path for step 3 of 'Installing DMAKE and ExtUtils-FakeConfig'.
  256. Operational Description:
  257. The basic operations of the SNMP protocol are provided by this module
  258. through an object oriented interface for modularity and ease of use.
  259. The primary class is SNMP::Session which encapsulates the persistent
  260. aspects of a connection between the management application and the
  261. managed agent. Internally the class is implemented as a blessed hash
  262. reference. This class supplies 'get', 'getnext', 'set', 'fget', and
  263. 'fgetnext' and other method calls. The methods take a variety of input
  264. argument formats and support both synchronous and asynchronous
  265. operation through a polymorphic API (i.e., method behaviour varies
  266. dependent on args passed - see below).
  267. A description of the fields which can be specified when an
  268. SNMP::Session object is created follows:
  269. SNMP::Session
  270. public:
  271.  DestHost    - default 'localhost', hostname or ip addr of SNMP agent
  272.  Community   - default 'public', SNMP community string (used for both R/W)
  273.  Version     - default '1', [2 (same as 2c), 2c, 3]
  274.  RemotePort  - default '161', allow remote UDP port to be overridden
  275.  Timeout     - default '1000000', micro-seconds before retry
  276.  Retries     - default '5', retries before failure
  277.  RetryNoSuch - default '0', if enabled NOSUCH errors in 'get' pdus will
  278.                be repaired, removing the varbind in error, and resent -
  279.                undef will be returned for all NOSUCH varbinds, when set
  280.                to '0' this feature is disabled and the entire get request
  281.                will fail on any NOSUCH error (applies to v1 only)
  282.  SecName     - default 'initial', security name (v3)
  283.  SecLevel    - default 'noAuthNoPriv', security level [noAuthNoPriv,
  284.                authNoPriv, authPriv] (v3)
  285.  SecEngineId - default <none>, security engineID, will be probed if not
  286.                supplied (v3)
  287.  ContextEngineId - default <SecEngineId>, context engineID, will be
  288.                    probed if not supplied (v3)
  289.  Context     - default '', context name (v3)
  290.  AuthProto   - default 'MD5', authentication protocol [MD5, SHA] (v3)
  291.  AuthPass    - default <none>, authentication passphrase
  292.  PrivProto   - default 'DES', privacy protocol [DES] (v3)
  293.  PrivPass    - default <none>, privacy passphrase (v3)
  294.  VarFormats  - default 'undef', used by 'fget[next]', holds an hash
  295.                reference of output value formatters, (e.g., {<obj> =>
  296.                <sub-ref>, ... }, <obj> must match the <obj> and format
  297.                used in the get operation. A special <obj>, '*', may be
  298.                used to apply all <obj>s, the supplied sub is called to
  299.                translate the value to a new format. The sub is called
  300.                passing the Varbind as the arg
  301.  TypeFormats - default 'undef', used by 'fget[next]', holds an hash
  302.                reference of output value formatters, (e.g., {<type> =>
  303.                <sub-ref>, ... }, the supplied sub is called to translate
  304.                the value to a new format, unless a VarFormat mathces first
  305.                (e.g., $session->{TypeFormats}{INTEGER} = &mapEnum();
  306.                 although this can be done more efficiently by enabling
  307.                 $SNMP::use_enums or session creation param 'UseEnums')
  308.  UseLongNames - defaults to the value of SNMP::use_long_names at time
  309.                of session creation. set to non-zero to have <tags>
  310.                for 'getnext' methods generated preferring longer Mib name
  311.                convention (e.g., system.sysDescr vs just sysDescr)
  312.  UseSprintValue - defaults to the value of SNMP::use_sprint_value at time
  313.                of session creation. set to non-zero to have return values
  314.                for 'get' and 'getnext' methods formatted with the libraries
  315.                sprint_value function. This will result in certain data types
  316.                being returned in non-canonical format Note: values returned
  317.                with this option set may not be appropriate for 'set' operations
  318.                (see discussion of value formats in <vars> description section)
  319.  UseEnums    - defaults to the value of SNMP::use_enums at time of session
  320.                creation. set to non-zero to have integer return values
  321.                converted to enumeration identifiers if possible, these values
  322.                will also be acceptable when supplied to 'set' operations
  323.  UseNumeric  - defaults to the value of SNMP::use_numeric at time of session
  324.                creation. set to non-zero to have <tags> returned by the 'get'
  325.                methods untranslated (i.e. dotted-decimal).  Setting the
  326.                UseLongNames value for the session is highly recommended.
  327.  BestGuess   - defaults to the value of SNMP::best_guess at time of session
  328.                creation. this setting controls how <tags> are parsed.  setting 
  329.                to 0 causes a regular lookup.  setting to 1 causes a regular 
  330.                expression match (defined as -Ib in snmpcmd) and setting to 2 
  331.                causes a random access lookup (defined as -IR in snmpcmd).
  332.  ErrorStr    - read-only, holds the error message assoc. w/ last request
  333.  ErrorNum    - read-only, holds the snmp_err or status of last request
  334.  ErrorInd    - read-only, holds the snmp_err_index when appropriate
  335. private:
  336.  DestAddr    - internal field used to hold the translated DestHost field
  337.  SessPtr     - internal field used to cache a created session structure
  338. methods:
  339.  new(<fields>)   - Constructs a new SNMP::Session object. The fields are
  340.                    passed to the constructor as a hash list
  341.                    (e.g., $session = new SNMP::Session(DestHost => 'foo',
  342.                    Community => 'private');), returns an object reference
  343.                    or undef in case of error.
  344.  update(<fields>)- Updates the SNMP::Session object with the values fields
  345.                    passed in as a hash list (similar to new(<fields>))
  346.                    (WARNING! not fully implemented)
  347.  get(<vars>[,<callback>])
  348.                  - do SNMP GET, multiple <vars> formats accepted.
  349.                    for synchronous operation <vars> will be updated
  350.                    with value(s) and type(s) and will also return
  351.                    retrieved value(s). If <callback> supplied method
  352.                    will operate asynchronously
  353.  fget(<vars>[,<callback>])
  354.                  - do SNMP GET like 'get' and format the values according
  355.                    the handlers specified in $sess->{VarFormats} and
  356.                    $sess->{TypeFormats}. Async *not supported*
  357.  getnext(<vars>[,<callback>])
  358.                  - do SNMP GETNEXT, multiple <vars> formats accepted,
  359.                    returns retrieved value(s), <vars> passed as arguments are
  360.                    updated to indicate next lexicographical <obj>,<iid>,<val>,
  361.                    and <type> Note: simple string <vars>,(e.g., 'sysDescr.0')
  362.                    form is not updated. If <callback> supplied method
  363.                    will operate asynchronously
  364.  fgetnext(<vars>[,<callback>])
  365.                  - do SNMP GETNEXT like getnext and format the values according
  366.                    the handlers specified in $sess->{VarFormats} and
  367.                    $sess->{TypeFormats}. Async *not supported*
  368.  set(<vars>[,<callback>])
  369.                  - do SNMP SET, multiple <vars> formats accepted.
  370.                    the value field in all <vars> formats must be in a canonical
  371.                    format (i.e., well known format) to ensure unambiguous
  372.                    translation to SNMP MIB data value (see discussion of
  373.                    canonical value format <vars> description section),
  374.                    returns true on success or undef on error. If <callback>
  375.                    supplied method will operate asynchronously
  376.  getbulk(<non-repeaters>, <max-repeaters>, <vars> [, <callback>])
  377.                  - do an SNMP GETBULK, from the list of Varbinds, the single
  378.                    next lexico instance is fetched for the first n Varbinds
  379.                    as defined by <non-repeaters>. For remaining Varbinds,
  380.                    the m lexico instances are retrieved each of the remaining
  381.                    Varbinds, where m is <max-repeaters>.
  382.  bulkwalk(<non-repeaters>, <max-repeaters>, <vars> [, <callback>])
  383.                  - do an "SNMP bulkwalk" on the given variables.  Bulkwalk is
  384.                    implemented by sending an SNMP GETBULK request to fetch the
  385.                    variables.  Objects are copied to the return list until the
  386.                    sub-tree is exited.  If the request is not completed at the
  387.                    end of a packet, a new request is created, starting where
  388.                    the previous packet left off.  This implementation is able
  389.                    to handle multiple repeated vars, as well as non-repeaters.
  390.                    Returns a list (or, in scalar context, a reference to a
  391.                    list) of arrays of VarBinds.  The VarBinds consist of the
  392.                    responses for each requested variable.  bulkwalk() leaves
  393.                    the original Varbinds list intact to facilitate querying
  394.                    of multiple devices.
  395. SNMP::TrapSession - supports all applicable fields from SNMP::Session
  396.                     (see above)
  397. methods:
  398.  new(<fields>)   - Constructs a new SNMP::TrapSession object. The fields are
  399.                    passed to the constructor as a hash list
  400.                    (e.g., $trapsess = new SNMP::Session(DestHost => 'foo',
  401.                    Community => 'private');), returns an object reference
  402.                    or undef in case of error.
  403.  trap(enterprise, agent, generic, specific, uptime, <vars>)
  404.     $sess->trap(enterprise=>'.1.3.6.1.4.1.2021', # or 'ucdavis' [default]
  405.                 agent => '127.0.0.1', # or 'localhost',[dflt 1st intf on host]
  406.                 generic => specific,  # can be omitted if 'specific' supplied
  407.                 specific => 5,        # can be omitted if 'generic' supplied
  408.                 uptime => 1234,       # dflt to localhost uptime (0 on win32)
  409.                 [[ifIndex, 1, 1],[sysLocation, 0, "here"]]); # optional vars
  410.                                                              # always last
  411.  or v2 format
  412.  trap(oid, uptime, <vars>)
  413.     $sess->trap(oid => 'snmpRisingAlarm',
  414.                 uptime => 1234,
  415.                 [[ifIndex, 1, 1],[sysLocation, 0, "here"]]); # optional vars
  416.                                                              # always last
  417. Acceptable variable formats:
  418. <vars> may be one of the following forms:
  419.  SNMP::VarList:  - represents an array of MIB objects to get or set,
  420.                    implemented as a blessed reference to an array of
  421.                    SNMP::Varbinds, (e.g., [<varbind1>, <varbind2>, ...])
  422.  SNMP::Varbind:  - represents a single MIB object to get or set, implemented as
  423.                    a blessed reference to a 4 element array;
  424.                    [<obj>, <iid>, <val>, <type>].
  425.                    <obj>  - one of the following forms:
  426.                           1) leaf identifier (e.g., 'sysDescr') assumed to be
  427.                              unique for practical purposes
  428.                           2) fully qualified identifier (e.g.,
  429.      '.iso.org.dod.internet.mgmt.mib-2.system.sysDescr')
  430.                           3) fully qualified, dotted-decimal, numeric OID (e.g.,
  431.                              '.1.3.6.1.2.1.1.1')
  432.                    <iid>  - the dotted-decimal, instance identifier. for
  433.                             scalar MIB objects use '0'
  434.    <val>  - the SNMP data value retrieved from or being set
  435.                             to the agents MIB. for (f)get(next) operations
  436.                             <val> may have a variety of formats as determined by
  437.                             session and package settings. However for set
  438.                             operations the <val> format must be canonical to
  439.                             ensure unambiguous translation. The canonical forms
  440.                             are as follows:
  441.                     OBJECTID => dotted-decimal (e.g., .1.3.6.1.2.1.1.1)
  442.     OCTETSTR => perl scalar containing octets,
  443.             INTEGER => decimal signed integer (or enum),
  444.     NETADDR => dotted-decimal,
  445.     IPADDR => dotted-decimal,
  446.     COUNTER => decimal unsigned integer,
  447.     COUNTER64  => decimal unsigned integer,
  448.     GAUGE,  => decimal unsigned integer,
  449.     UINTEGER,  => decimal unsigned integer,
  450.                             TICKS,  => decimal unsigned integer,
  451.                             OPAQUE => perl scalar containing octets,
  452.             NULL,  => perl scalar containing nothing,
  453.                    <type> - SNMP data type (see list above), this field is
  454.                             populated by 'get' and 'getnext' operations. In
  455.                             some cases the programmer needs to populate this
  456.                             field when passing to a 'set' operation. this
  457.                             field need not be supplied when the attribute
  458.                             indicated by <tag> is already described by loaded
  459.                             Mib modules. for 'set's, if a numeric OID is used
  460.                             and the object is not currently in the loaded Mib,
  461.                             the <type> field must be supplied
  462.  simple string   - light weight form of <var> used to 'set' or 'get' a
  463.                    single attribute without constructing an SNMP::Varbind.
  464.                    stored in a perl scalar, has the form '<tag>.<iid>',
  465.                    (e.g., 'sysDescr.0'). for 'set' operations the value
  466.                    is passed as a second arg. Note: This argument form is
  467.                    not updated in get[next] operations as are the other forms.
  468. Acceptable callback formats:
  469. <callback> may be one of the following forms:
  470.  without arguments:
  471.     &subname
  472.     sub { ... }
  473.  or with arguments:
  474.     [ &subname, $arg1, ... ]
  475.     [ sub { ... }, $arg1, ... ]
  476.     [ "method", $obj, $arg1, ... ]
  477. callback will be called when response is received or timeout
  478. occurs. the last argument passed to callback will be a
  479. SNMP::VarList reference. In case of timeout the last argument
  480. will be undef.
  481. SNMP package variables and functions:
  482.  $SNMP::VERSION       - the current version specifier (e.g., 3.1.0)
  483.  $SNMP::auto_init_mib - default '1', set to 0 to disable automatic reading
  484.                         of the MIB upon session creation. set to non-zero
  485.                         to call initMib at session creation which will result
  486.                         in MIB loading according to Net-SNMP env. variables
  487. (see man mib_api)
  488.  $SNMP::verbose       - default '0', controls warning/info output of
  489.                         SNMP module, 0 => no output, 1 => enables warning/info
  490.                         output from SNMP module itself (is also controlled
  491.                         by SNMP::debugging - see below)
  492.  $SNMP::use_long_names - default '0', set to non-zero to enable the use of
  493.                         longer Mib identifiers. see translateObj. will also
  494.                         influence the formatting of <tag> in varbinds returned
  495.                         from 'getnext' operations. Can be set on a per session
  496.                         basis (UseLongNames)
  497.  $SNMP::use_sprint_value - default '0', set to non-zero to enable formatting of
  498.                         response values using the snmp libraries sprint_value
  499.                         function. can also be set on a per session basis (see
  500.                         UseSprintValue) Note: returned values may not be
  501.                         suitable for 'set' operations
  502.  $SNMP::use_enums     - default '0',set non-zero to return values as enums and
  503.                         allow sets using enums where appropriate. integer data
  504.                         will still be accepted for set operations. can also be
  505.                         set on a per session basis (see UseEnums)
  506.  $SNMP::use_numeric   - default '0', set to non-zero to return tags as numeric
  507.                         OID's, instead of translating them.  Also setting
  508.                         $SNMP::use_long_names to non-zero is highly recommended.
  509.  $SNMP::best_guess    - default '0'.  this setting controls how <tags> are 
  510.                         parsed.  setting to 0 causes a regular lookup.  setting 
  511.                         to 1 causes a regular expression match (defined as -Ib 
  512.                         in snmpcmd) and setting to 2 causes a random access 
  513.                         lookup (defined as -IR in snmpcmd).  can also be set 
  514.                         on a per session basis (see BestGuess)
  515.  $SNMP::save_descriptions - default '0',set non-zero to have mib parser save
  516.                         attribute descriptions. must be set prior to mib
  517.                         initialization
  518.  $SNMP::debugging     - default '0', controls debugging output level
  519.                         within SNMP module and libsnmp
  520.                         1 => enables 'SNMP::verbose' (see above)
  521.                         2 => level 1 plus snmp_set_do_debugging(1),
  522.                         3 => level 2 plus snmp_set_dump_packet(1)
  523.  $SNMP::dump_packet   - default '0', set [non-]zero to independently set
  524.                         snmp_set_dump_packet()
  525.  %SNMP::MIB           - a tied hash to access parsed MIB information. After
  526.                         the MIB has been loaded this hash allows access to
  527.                         to the parsed in MIB meta-data(the structure of the
  528.                         MIB (i.e., schema)). The hash returns blessed
  529.                         references to SNMP::MIB::NODE objects which represent
  530.                         a single MIB attribute. The nodes can be fetched with
  531.                         multiple 'key' formats - the leaf name (e.g.,sysDescr)
  532.                         or fully/partially qualified name (e.g.,
  533.                         system.sysDescr) or fully qualified numeric OID. The
  534.                         returned node object supports the following fields:
  535.         objectID      - dotted decimal fully qualified OID
  536.         label         - leaf textual identifier (e.g., 'sysDescr')
  537.         subID         - leaf numeric OID component of objectID (e.g., '1')
  538.         moduleID      - textual identifier for module (e.g., 'RFC1213-MIB')
  539.         parent        - parent node
  540.         children      - array reference of children nodes
  541.         nextNode      - next lexico node (BUG!does not return in lexico order)
  542.         type          - returns application type (see getType for values)
  543.         access        - returns ACCESS (ReadOnly, ReadWrite, WriteOnly,
  544.                         NoAccess, Notify, Create)
  545.         status        - returns STATUS (Mandatory, Optional, Obsolete,
  546.                         Deprecated, Current)
  547.         syntax        - returns 'textualConvention' if defined else 'type'
  548.         textualConvention - returns TEXTUAL-CONVENTION
  549.         units         - returns UNITS
  550.         hint          - returns HINT
  551.         enums         - returns hash ref {tag => num, ...}
  552.         ranges        - returns array ref of hash ref [{low=>num, high=>num}]
  553.         defaultValue  - returns default value
  554.         description   - returns DESCRIPTION ($SNMP::save_descriptions must
  555.                         be set prior to MIB initialization/parsing)
  556.  &SNMP::setMib(<file>) - allows dynamic parsing of the mib and explicit
  557.                          specification of mib file independent of environment
  558.                          variables. called with no args acts like initMib,
  559.                          loading MIBs indicated by environment variables (see
  560.                          Net-SNMP mib_api docs). passing non-zero second arg
  561.                          forces previous mib to be freed and replaced
  562.                          (Note: second arg not working since freeing previous
  563.                           Mib is more involved than before).
  564.  &SNMP::initMib()     - calls library init_mib function if Mib not already
  565.                         loaded - does nothing if Mib already loaded. will
  566.                         parse directories and load modules according to
  567.                         environment variables described in Net-SNMP
  568.                         documentations.
  569.                         (see man mib_api, MIBDIRS, MIBS, MIBFILE(S), etc.)
  570.  &SNMP::addMibDirs(<dir>,...) - calls library add_mibdir for each directory
  571.                         supplied. will cause directory(s) to be added to
  572.                         internal list and made available for searching in
  573.                         subsequent loadModules calls
  574.  &SNMP::addMibFiles(<file>,...) - calls library read_mib function. The file(s)
  575.                        supplied will be read and all Mib module definitions
  576.                        contained therein will be added to internal mib tree
  577.                        structure
  578.  &SNMP::loadModules(<mod>,...) - calls library read_module function. The
  579.                        module(s) supplied will be searched for in the
  580.                        current mibdirs and and added to internal mib tree
  581.                        structure. Passing special <mod>, 'ALL', will cause
  582.                        all known modules to be loaded.
  583.  &SNMP::unloadModules(<mod>,...) - *Not Implemented*
  584.  &SNMP::translateObj(<var>[,arg,[arg]]) - will convert a text obj tag to an 
  585.                        OID and vice-versa. Any iid suffix is retained 
  586.                        numerically.  Default behaviour when converting a 
  587.                        numeric OID to text form is to return leaf identifier 
  588.                        only (e.g.,'sysDescr') but when $SNMP::use_long_names 
  589.                        is non-zero or a non-zero second arg is supplied it 
  590.                        will return a longer textual identifier.  An optional 
  591.                        third argument of non-zero will cause the module name 
  592.                        to be prepended to the text name (e.g. 
  593.                        'SNMPv2-MIB::sysDescr').  When converting a text obj, 
  594.                        the $SNMP::best_guess option is used.  If no Mib is 
  595.                        loaded when called and $SNMP::auto_init_mib is enabled 
  596.                        then the Mib will be loaded. Will return 'undef' upon 
  597.                        failure.
  598.  &SNMP::getType(<var>) - return SNMP data type for given textual identifier
  599.                         OBJECTID, OCTETSTR, INTEGER, NETADDR, IPADDR, COUNTER
  600.                         GAUGE, TIMETICKS, OPAQUE, or undef
  601.  &SNMP::mapEnum(<var>) - converts integer value to enumeration tag defined
  602.                          in Mib or converts tag to integer depending on
  603.                          input. the function will return the corresponding
  604.                          integer value *or* tag for a given MIB attribute
  605.                          and value. The function will sense which direction
  606.                          to perform the conversion. Various arg formats are
  607.                          supported
  608.                          $val = SNMP::mapEnum($varbind);
  609.                          # where $varbind is SNMP::Varbind or equiv
  610.                          # note: $varbind will be updated
  611.                          $val = SNMP::mapEnum('ipForwarding', 'forwarding');
  612.                          $val = SNMP::mapEnum('ipForwarding', 1);
  613.  &SNMP::MainLoop([<timeout>, [<callback>]])
  614.                    - to be used with async SNMP::Session
  615.                      calls. MainLoop must be called after initial async calls
  616.                      so return packets from the agent will not be processed.
  617.                      If no args supplied this function enters an infinite loop
  618.                      so program must be exited in a callback or externally
  619.                      interrupted. If <timeout
  620.  &SNMP::finish()
  621.    - This function, when called from an SNMP::MainLoop()
  622.      callback function, will cause the current SNMP::MainLoop
  623.      to return after the callback is completed. finish() can
  624.      be used to terminate an otherwise-infinite MainLoop. A
  625.      new MainLoop() instance can then be started to handle
  626.      further requests.
  627. Exported SNMP utility functions
  628. &snmp_get() - takes args of SNMP::Session::new followed by those of
  629.               SNMP::Session::get
  630. &snmp_getnext() - takes args of SNMP::Session::new followed by those of
  631.                   SNMP::Session::getnext
  632. &snmp_set() - takes args of SNMP::Session::new followed by those of
  633.               SNMP::Session::set
  634. &snmp_trap() - takes args of SNMP::TrapSession::new followed by those of
  635.                SNMP::TrapSession::trap
  636. Note: utility functions do not support async operation yet.
  637. Trouble Shooting:
  638. If problems occur there are number areas to look at to narrow down the
  639. possibilities.
  640. The first step should be to test the Net-SNMP installation
  641. independently from the Perl5 SNMP interface.
  642. Try running the apps from the Net-SNMP distribution.
  643. Make sure your agent (snmpd) is running and properly configured with
  644. read-write access for the community you are using.
  645. Ensure that your MIBs are installed and environment variables are set
  646. appropriately (see man mib_api)
  647. Be sure to ensure headers and libraries from old CMU installations are
  648. not being used by mistake (see -NET-SNMP-PATH).
  649. If the problem occurs during compilation/linking check that the snmp
  650. library being linked is actually the Net-SNMP library (there have been
  651. name conflicts with existing snmp libs).
  652. Also check that the header files are correct and up to date.
  653. Sometimes compiling the Net-SNMP library with
  654. 'position-independent-code' enabled is required (HPUX specifically).
  655. If you cannot resolve the problem you can post to
  656. comp.lang.perl.modules or email net-snmp-users@lists.sourceforge.net.
  657. please give sufficient information to analyze the problem (OS type,
  658. versions for OS/Perl/net-SNMP/compiler, complete error output, etc.)
  659. Acknowledgments:
  660. Many thanks to all those who supplied patches, suggestions and
  661. feedback.
  662. Joe Marzot (the original author)
  663. Wes Hardaker and the net-snmp-coders
  664. Dave Perkins
  665. Marcel Wiget
  666. David Blackburn
  667. John Stofell
  668. Gary Hayward
  669. Claire Harrison
  670. Achim Bohnet
  671. Doug Kingston
  672. Jacques Vidrine
  673. Carl Jacobsen
  674. Wayne Marquette
  675. Scott Schumate
  676. Michael Slifcak
  677. Srivathsan Srinivasagopalan
  678. Bill Fenner
  679. Jef Peeraer
  680. Daniel Hagerty
  681. Karl "Rat" Schilke and Electric Lightwave, Inc.
  682. Perl5 Porters
  683. Alex Burger
  684. Apologies to any/all who's patch/feature/request was not mentioned or
  685. included - most likely it was lost when paying work intruded on my
  686. fun. Please try again if you do not see a desired feature. This may
  687. actually turn out to be a decent package with such excellent help and
  688. the fact that I have more time to work on it than in the past.
  689. ------
  690. History:
  691. Bugs fixed and changes in 3.1.0
  692. 1) update to ucd-snmp-4.1.0
  693. 2) support much of SNMPv3
  694. 3) add support for getbulk - Thanks Daniel
  695. 4) further regularize error return codes - will return undef on error
  696. for most cases except where values are expected from a varbind (will
  697. themselves be undef)
  698. 5) fix bug where session deletion inadvertently occurred with async calls
  699. if calling Session went out of scope - a reference is saved which will
  700. not destruct until after async callback completes
  701. 6) pass protocol errors to callbacks
  702. 7) added lower level async API so SNMP events can be integrated with
  703. arbitrary event loop (Event.pm?) - thanks Jef
  704. 8) Major enhancement to 'make test' - thanks Sri
  705. 9) POD documentation - thanks Bill
  706. 10) fix OBJECTID translations (unsigned long)
  707. 11) display Mib info on 'status' and 'indexes'
  708. Bugs fixed and changes in 1.8.2
  709. 1) minor bug fix
  710. Bugs fixed and changes in 1.8.1
  711. 1) updated docs
  712. 2) fixed #defines from MAX_NAME_LEN to MAX_OID_LEN (mslifcak)
  713. 3) reverted __tag2oid to use read_objid rather than get_node. this
  714. gives full name resolution provided by libsnmp and no longer creates
  715. problems on failure since 3.6.2 removes the call to 'exit' in
  716. read_objid
  717. 4) fixed Makefile.PL to use win32 'type' vs. 'cat'
  718. Bugs fixed and changes in 1.8
  719. 1) added async API (async api should be considered beta -
  720.    potential changes are most likely in the event loop integration
  721.    area - would like to integrate with Event.pm)
  722. 2) added trap generation API (implemented v1 traps only for now)
  723. 3) added and exported non-OO utility API (snmp_get, snmp_set, etc.)
  724. 4) added $SNMP::debugging to dynamically control libsnmp debugging output
  725. 5) added $SNMP::save_descriptions to control libsnmp parsing/saving
  726.    of MIB descriptions
  727. 6) added $SNMP::dump_packet to control libsnmp packet dumping
  728. 7) implemented the SNMP::mapEnum function (thanks to Wayne Marquette)
  729. 8) officially added(documented) tied %SNMP::MIB hash to allow access
  730.    to parsed MIB meta-data (new support for textualConvention and syntax)
  731. 9) fixed bug related to AUTOLOAD recursion
  732. 10) fixed bug with SNMP::use_enums so 'set' (and trap) should now accept
  733.    enums as input values
  734. 11) fixed bug with fget[next] - formatted values are supplied as return
  735.     values as well as within args passed
  736. 12) fixed Makefile to link with -kstat on solaris
  737. 13) fixed bug when handling noSuchName returns for getnext calls with
  738.     varbinds w/ no iid supplied (__get_label_iid should not use the
  739.     FAIL_ON_NULL_IID flag)
  740. 14) fixed bug with uninitialized sprintval_flag
  741. 15) fixed bug when no val is passed to SNMP::Session::set - now
  742.     will not core or complain about uninitialized data
  743. 16) fixed bug with __translate_appl_type in case of NULL or empty string
  744. 17) eliminated the use of strtoul for portability - use sscanf(,"%lu",)
  745. 18) getType() supports all tag formats now
  746. 19) fixed bug when setting values of type OBJID (thanks Scott Schumate)
  747. 20) *WARNING* RetryNoSuch in session creation had a bug which prevented
  748.     it from being disabled. It now defaults to being disabled - this may
  749.     break code *WARNING*
  750. Bugs fixed and changes in 1.7
  751. 1) fixed seg fault on use of unknown/unparsed attribute in Varbind or
  752.    passed to translateObj
  753. 2) fixed truncation of last char of attribute name in translateObj
  754. 3) handles variable args to setMib without complaint
  755. 4) added SNMP::getType to query data type of a given attribute and
  756.    extended Varbind structure to return type wherever possible
  757. 5) added RemotePort to SNMP::Session initialization list to allow override
  758.    of port 161
  759. 6) removed noisy announcement of mib parse success unless verbose is set
  760.        *WARNING*  *this may break existing scripts*
  761. 7) changed return format for IpAddress and ObjID data types - these are
  762.    now always returned as dotted decimal strings as opposed to the
  763.    packed binary forms in 1.6
  764.        *WARNING*  *this may break existing scripts*
  765. 8) Session now sets ErrorInd (e.g., $session->{ErrorInd}) where appropriate
  766. 9) Support for ucd-snmp-3.2 (and greater) style of Mib loading
  767. 10) Fully qualified attribute names and numeric OIDs are now valid <obj>
  768.    definitions.
  769. 11) Numeric OIDs can be used even if they have not been parsed in the
  770.     current Mib - Mib loading is now optional
  771. 12) Support for Win32 perl
  772. 13) Updated docs and examples
  773. 14) Reworked/extended the test harness to use the perl t/* facility
  774.     (thanks to jfs@fluent.com)
  775. 15) fixed up error handling to be more consistent with library and more
  776.     useful in general. Now returns both library API errors and snmp
  777.     protocol error numbers and strings.
  778. 16) added per object and per type formatting of returned values - more
  779.     control of value formatting with UseEnums and UseSprintValue
  780. Copyright:
  781.      Copyright (c) 1995-2000 G. S. Marzot. All rights reserved.
  782.      This program is free software; you can redistribute it and/or
  783.      modify it under the same terms as Perl itself.
  784.      Copyright (c) 2001-2002 Networks Associates Technology, Inc.  All
  785.      Rights Reserved.  This program is free software; you can
  786.      redistribute it and/or modify it under the same terms as Perl
  787.      itself.