diff options
author | Petr Gotthard <[email protected]> | 2018-02-24 22:00:13 +0100 |
---|---|---|
committer | Petr Gotthard <[email protected]> | 2018-02-24 22:00:13 +0100 |
commit | 763b431883f3a1895f302aaeb18c82df344fbe09 (patch) | |
tree | 25cdb546e2a9b6155924a11b96f50865d1f8973a /lib/snmp | |
parent | b3fd7dc1b52520065e9dc977195608baf1f206ce (diff) | |
download | otp-763b431883f3a1895f302aaeb18c82df344fbe09.tar.gz otp-763b431883f3a1895f302aaeb18c82df344fbe09.tar.bz2 otp-763b431883f3a1895f302aaeb18c82df344fbe09.zip |
Fix example MIB in the documentation
The EX1-MIB cannot be compiled because of the missing IMPORT of "experimental".
The other instances EX1-MIB.mib (otp/lib/snmp/examples/ex1, lib/snmp/test/snmp_test_data)
are correct. I synchronized the documentation with them.
Diffstat (limited to 'lib/snmp')
-rw-r--r-- | lib/snmp/doc/src/snmp_impl_example_agent.xml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/lib/snmp/doc/src/snmp_impl_example_agent.xml b/lib/snmp/doc/src/snmp_impl_example_agent.xml index a86006a0a7..e576fa51f3 100644 --- a/lib/snmp/doc/src/snmp_impl_example_agent.xml +++ b/lib/snmp/doc/src/snmp_impl_example_agent.xml @@ -47,6 +47,7 @@ EX1-MIB DEFINITIONS ::= BEGIN IMPORTS + experimental FROM RFC1155-SMI RowStatus FROM STANDARD-MIB DisplayString FROM RFC1213-MIB OBJECT-TYPE FROM RFC-1212 @@ -81,7 +82,7 @@ EX1-MIB DEFINITIONS ::= BEGIN FriendsEntry ::= SEQUENCE { - fIndex + fIndex INTEGER, fName DisplayString, @@ -105,6 +106,7 @@ EX1-MIB DEFINITIONS ::= BEGIN DESCRIPTION "Name of friend" ::= { friendsEntry 2 } + fAddress OBJECT-TYPE SYNTAX DisplayString (SIZE (0..255)) ACCESS read-write @@ -112,6 +114,7 @@ EX1-MIB DEFINITIONS ::= BEGIN DESCRIPTION "Address of friend" ::= { friendsEntry 3 } + fStatus OBJECT-TYPE SYNTAX RowStatus ACCESS read-write @@ -119,12 +122,13 @@ EX1-MIB DEFINITIONS ::= BEGIN DESCRIPTION "The status of this conceptual row." ::= { friendsEntry 4 } + fTrap TRAP-TYPE ENTERPRISE example1 VARIABLES { myName, fIndex } DESCRIPTION - "This trap is sent when something happens to - the friend specified by fIndex." + "This trap is sent when something happens to + the friend specified by fIndex." ::= 1 END </code> |