• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

examples/H27-Jun-2000-1,4101,196

t/H27-Jun-2000-246181

MANIFESTH A D27-Jun-2000204 1514

Makefile.PLH A D03-May-2022563 2318

READMEH A D27-Jun-20002.4 KiB7350

Util.pmH A D27-Jun-200064.1 KiB2,7631,779

Util.pm.textH A D27-Jun-200016.7 KiB476339

Util_env.pmH A D27-Jun-2000223 103

README

1
2  Description
3  __________
4
5  This is a set of snmp utilities that work with Joe Marzot's SNMP Perl library.
6  Refer the the html file in this directory for details.
7
8
9  Version
10  ________
11
12    1.0 Initial Release
13    1.1 Fixed Manifest File
14    1.2 Added get_hash / walk_hash now calls walk / Modified output in poll_value
15    1.3 Added use strict to library and fixed some bugs with my vars
16    1.4 Fixed code to elminate perl warning
17    1.5 Changed all mapInt functions to mapEnum - (support for mapInt not in
18        Joe Marzot's version 1.8).
19    1.6 Updated docs (html and text)
20    1.7 Updated 1.6 with patches from Charles Anderson
21    1.8 Updated 1.7 with patches from tyoshida
22
23  Documentation
24  -------------
25
26    User documentation in POD format is contained within the module
27    source (i.e. the .pm file).  Installing using "make install"
28    places this documentation in a man page in the perl library under
29    the directory "man/man3".  There is also html documentation in this
30    directory.
31
32
33
34  Installation
35  ------------
36
37    To install, cd to the directory containing the unpacked
38    distribution and do one of the following:
39
40        Create a makefile by running Makefile.PL using the perl
41        program into whose library you want to install and then run
42        make three times:
43
44            perl Makefile.PL
45            make
46
47            *********************************************************************************
48            Note: Edit the Util_env.pm file and add the correct mibs before executing make test
49            *********************************************************************************
50
51            make test
52            make install
53
54        To install into a private library, for example your home
55        directory:
56
57            perl Makefile.PL INSTALLSITELIB=$HOME/lib INSTALLMAN3DIR=$HOME/man
58            make
59
60            *********************************************************************************
61            Note: Edit the Util_env.pm file and add the correct mibs before executing make test
62            *********************************************************************************
63
64            make test
65            make pure_install
66
67        Alternatively, you can just copy or move Util.pm
68        from the distribution into a directory named SNMP/ in the Perl
69        library.  You can then manually build the documentation using
70        pod2man or pod2html.
71
72
73