summaryrefslogtreecommitdiff
path: root/ACE/ASNMP/README
blob: 3d543a3d6582a3873ecd1ff7d8601a98e192a0f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
====================================================================
ASNMP = ACE+SNMP++ Version 2.1
By Michael R. MacFaden mrm@acm.org, mrm@yagosys.com
====================================================================

What is ASNMP ? ==> ACE+SNMP! aka Another SNMP API
  HP's SNMP++ 2.5 freely available C++ SNMP class library
  has been adapted to the ACE 4.2 Framework.

What is Simple Network Management Protocol(SNMP)?
  See the FAQ:
  http://www.snmp.com/FAQs/snmp-faq-part1.txt
  http://www.snmp.com/FAQs/snmp-faq-part2.txt

What was changed from HP version?
  See src/ChangeLog file.

Is HP SNMP++ compatible with ASNMP?
  It is neither source nor binary compatible. About 10% of the API has changed.
  There have been API changes to make the interface more orthogonal
  and to reduce implementation complexity such as consolidating constructors
  with default formal values, and to remove some inconsistencies
  with the HP interface as well as locking down valid() semantics, etc.

What platforms have the test programs been verified on?
  Solaris 2.4, 2.5.1 using SUN C++ 4.1,4.2 compiler. Linux/GCC
  fixes are now in as well.

Why use this version?
  The SNMP++ version ships only for HP-UX and for Windows.
  It is not very portable nor does it do a good job at checking
  for out of memory exhaustion conditions (asn1.cpp). There is some great
  code here. ACE needs an SNMP library to build NM type
  communications applications. Hence ASNMP was born in my spare time.

How does ASNMP differ from SNMP?
  Current version uses ACE OS Adaption layer.  All memory
  allocation is now consistent, uses ACE_NEW().
  Standard ACE Debugging (ACE_TRACE) has been inserted.
  ASNMP has less global namespace pollution by moving all non-class
  functions into interface classes or made into static locals.

  An agent intefarce has been added (asnmp/sagent.h) so both agents
  and managers can use this class library. A trivial agent
  exists in ASNMP/agent/

  X11 GUI support removed from this version since this is
  not the place to include GUI support in the new world of
  multi-threaded apps.

  The async interface does not match the HP implementation.

How to build this library
  Set ACE_ROOT and platform_macros.GNU per ../INSTALL file.
  create libasnmp.a, libasnmp.so and then run the tests

Any Support for ASNMP?
   As time permits through github.

Where to ask questions?
  Please use github issues or discussions at https://github.com/DOCGroup/ACE_TAO
  or mrm@acm.org

NOTE: Please do not bother Eric Mellquist unless you are using
   the original HP version of this library.

Where can I get the original HP SNMP++?
   From ftp://rosegarden.external.hp.com:/pub/snmp++

What version of SNMP is fully supported?
  SNMP Version 1 (RFC 1155,1157, 1215)

What about SNMP Version 2c?
  V2c is defined in RFC 1901 - 1908
  These bits are added to v1 code in this library: GetBulk PDU, Counter64
  These bits are missing Inform (RFC 1905)
  RFC 1903 defined new datatypes using existing SMI via macros.
  These should be coded as if they were SMI datatypes to encapsulate
  their behavior. V2c hasn't been deployed

What about SNMP Version 3?
   It is looking good for V3, but so far, we're just watching.
   http://www.ietf.org/html.charters/snmpv3-charter.html
   A C implemenation is now available from UC Davis.

What copyrights/legal requirements are required when using this code?
  See ./COPYRIGHT

Does this really work?
  See tests/ directory  for the current test reports (purify/purecov/...).

How does one Extend an SNMP Agent?
  Extending an agent typically means updating the agent source or
  using a dynamic link style API. RFC 2257 (AgentX) is the current design
  for doing this in a standard way. This hasn't been well formalized yet
  so extending an existing agent is still a vendor API thing.

  The agent provided here is a template. A mib compiler and agent
  library typically provide better agent support. See the UC-Davis
  SNMP software for an example Agent that is portable and can report
  on many flavors of UNIX and Windows.

Any Future Plans?
  The ASNMP library will be improved for performance and made to use
  higher level design patterns. Hopefully it will be used as a
  vehicle for grad students to learn something about network mgmt
  code work a related cousin of general distributed programming.


Regards,
Michael R. MacFaden
Member of the Technical Staff
Cabletron Systems, Inc.
215 Moffet Park Drive
Sunnyvale, CA 94089
mrm@yagosys.com
http://www.yagosys.com

====================================================================
SNMP++ For UNIX Source Code and Examples:
====================================================================
Included within this package can be found the source code and
examples for SNMP++. The following represents the directories which
are included within the compressed tar file and their contents.

For more details on the API , please refer to the API specification.

This library is a complete implementation of SNMP++ and does not
require other SNMP libraries to be present.

Required Tools:
---------------------------------------------------------------------


readme.txt ( this file)
|
|
|------ src ( .cpp files and Makefile for building libraries )
|
|------ examples ( a variety of apps, .cpp and Makefile included )
|
|------ tests - unit test routines


src Directory Contents:
--------------------------------------------------------------------
Makefile             - make file for ACE/Solaris 2. build
target.cpp           - Collection of attributes(address, timeout, etc) used
                       to define a command session
snmp.cpp             - A logical session between NM app and agent
pdu.cpp              - Pdu class source (vb list and API command)
wpdu.cpp             - Adapter pattern based class between CMU and HP code
transaction.cpp      - synchronous transaction clss
vb.cpp               - Variable Binding class source (oid + value)

<< SMI datatypes used to get/set values in SNMPv1 agents >>

address.cpp          - Address class source
gauge.cpp            - Gauge32 class source
integer.cpp          - Integer32 class source
counter.cpp          - Counter32 class source
ctr64.cpp            - Counter64 class source
timetick.cpp         - TimeTicks class source
octet.cpp            - Octet String class source
oid.cpp              - Oid class source
asn1.cpp             - ASN1 encoding and decoding code. CMU code.

examples Directory Contents:
---------------------------------------------------------------------
Makefile             - make file for building console apps
get.cpp          - source for SNMP get program
next.cpp         - source for SNMP get Next program
set.cpp          - source for SNMP set program
trap.cpp         - source for SNMP trap send program
walk.cpp         - source for SNMP walk program