Skip to content

Commit

Permalink
Added documentation file (snmpc_cmd.xml) for the snmpc command
Browse files Browse the repository at this point in the history
line tool. Also updated the central .gitignore file.
  • Loading branch information
bmk committed Mar 3, 2011
1 parent 8c4ece5 commit 92b2fd6
Show file tree
Hide file tree
Showing 2 changed files with 192 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,7 @@ make/win32/
# snmp

/lib/snmp/bin/snmp-v2tov1
/lib/snmp/bin/snmpc
/lib/snmp/examples/ex1/EX1-MIB.bin
/lib/snmp/mibs/Makefile
/lib/snmp/mibs/v1/OTP-SNMPEA-MIB.mib.v1
Expand Down
191 changes: 191 additions & 0 deletions lib/snmp/doc/src/snmpc_cmd.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,191 @@
<?xml version="1.0" encoding="iso-8859-1" ?>
<!DOCTYPE comref SYSTEM "comref.dtd">

<comref>
<header>
<copyright>
<year>2011</year><year>2011</year>
<holder>Ericsson AB. All Rights Reserved.</holder>
</copyright>
<legalnotice>
The contents of this file are subject to the Erlang Public License,
Version 1.1, (the "License"); you may not use this file except in
compliance with the License. You should have received a copy of the
Erlang Public License along with this software. If not, it can be
retrieved online at http://www.erlang.org/.

Software distributed under the License is distributed on an "AS IS"
basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
the License for the specific language governing rights and limitations
under the License.

</legalnotice>

<title>snmpc</title>
<prepared></prepared>
<responsible></responsible>
<docno></docno>
<approved></approved>
<checked></checked>
<date></date>
<rev></rev>
<file>snmpc_cmd.xml</file>
</header>
<com>snmpc</com>
<comsummary>SNMP MIB compiler frontend</comsummary>
<description>
<p>The <c><![CDATA[snmpc]]></c> program provides a way to run
the SNMP MIB compiler of the Erlang system. </p>
</description>

<funcs>
<func>
<name>snmpc [options] file.mib | file.bin</name>
<fsummary>Compile MIBs</fsummary>
<desc>
<p><c><![CDATA[snmpc]]></c> compile a SNMP MIB file,
see <seealso marker="snmpc#compile">compile/1,2</seealso> for
more info. </p>
<p>It can also be used to generate a header file (.hrl)
with definitions of Erlang constants for the objects in
the MIB, see
<seealso marker="snmpc#mib_to_hrl">mib_to_hrl/1</seealso>. </p>
</desc>
</func>
</funcs>

<section>
<title>Compiler options</title>
<p>The following options are supported (note that most of these relate
to the compilation of the MIB file):</p>
<taglist>
<tag>--help</tag>
<item>
<p>Prints help info.</p>
</item>

<tag>--version</tag>
<item>
<p>Prints application and mib format version.</p>
</item>

<tag>--verbosity <em>verbosity</em></tag>
<item>
<p>Print debug info. </p>
<p><c>verbosity</c> = <c>trace</c> | <c>debug</c> | <c>log</c> | <c>info</c> | <c>silence</c></p>
<p>Defaults to <c>silence</c>.</p>
</item>

<tag>--warnings</tag>
<item>
<p>Print warning messages. </p>
</item>

<tag>--o <em>directory</em></tag>
<item>
<p>The directory where the compiler should place the output files.
If not specified, output files will be placed in the current working
directory.</p>
</item>

<tag>--i <em>Directory</em></tag>
<item>
<p>Specifies the path to search for imported (compiled) MIB files.
By default, the current working directory is always included. </p>
<p>This option can be present several times, each time specifying
<em>one</em> path. </p>
</item>

<tag>--il <em>Directory</em></tag>
<item>
<p>This option (include_lib), specifies a list of directories to
search for imported MIBs. It assumes that the first element in
the directory name corresponds to an OTP application. The compiler
will find the current installed version. For example, the value
["snmp/mibs/"] will be replaced by ["snmp-3.1.1/mibs/"] (or what
the current version may be in the system). The current directory
and the "snmp-home"/priv/mibs/ are always listed last in the
include path. </p>
</item>

<tag>--sgc</tag>
<item>
<p>This option (skip group check), if present, disables the
group check of the mib compiler.
That is, should the OBJECT-GROUP and the NOTIFICATION-GROUP
macro(s) be checked for correctness or not. </p>
</item>

<tag>--dep</tag>
<item>
<p>Keep deprecated definition(s).
If not specified the compiler will ignore deprecated definitions. </p>
</item>

<tag>--desc</tag>
<item>
<p>The DESCRIPTION field will be included. </p>
</item>

<tag>--ref</tag>
<item>
<p>The REFERENCE field will be included. </p>
</item>

<tag>--imp</tag>
<item>
<p>The IMPORTS field will be included. </p>
</item>

<tag>--mi</tag>
<item>
<p>The MODULE-IDENTITY field will be included. </p>
</item>

<tag>--mc</tag>
<item>
<p>The MODULE-COMPLIANCE field will be included. </p>
</item>

<tag>--ac</tag>
<item>
<p>The AGENT-CAPABILITIES field will be included. </p>
</item>

<tag>--mod <em>module</em></tag>
<item>
<p>The module which implements all the instrumentation functions. </p>
<p>The name of all instrumentation functions must be the
same as the corresponding managed object it implements. </p>
</item>

<tag>--nd</tag>
<item>
<p>The default instrumentation functions will <em>not</em> be
used if a managed object have no instrumentation function.
Instead this will be reported as an error, and the compilation
aborts. </p>
</item>

<tag>--rrnac</tag>
<item>
<p>This option, if present, specifies that the row name assign check
shall not be done strictly according to the SMI (which allows only
the value 1). </p>
<p>With this option, all values greater than zero is allowed (>= 1).
This means that the error will be converted to a warning. </p>
<p>By default it is not included, but if this option is present
it will be. </p>
</item>

</taglist>
</section>

<section>
<title>SEE ALSO</title>
<p><seealso marker="erlc">erlc(1)</seealso>,
<seealso marker="compiler:compile">compile(3)</seealso>,
<seealso marker="snmp:snmpc">snmpc(3)</seealso></p>
</section>
</comref>

0 comments on commit 92b2fd6

Please sign in to comment.