home *** CD-ROM | disk | FTP | other *** search
/ Unix System Administration Handbook 1997 October / usah_oct97.iso / rfc / 1900s / rfc1903.txt < prev    next >
Text File  |  1996-01-19  |  53KB  |  1,292 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7. Network Working Group                               SNMPv2 Working Group
  8. Request for Comments: 1903                                       J. Case
  9. Obsoletes: 1443                                      SNMP Research, Inc.
  10. Category: Standards Track                                  K. McCloghrie
  11.                                                      Cisco Systems, Inc.
  12.                                                                  M. Rose
  13.                                             Dover Beach Consulting, Inc.
  14.                                                            S. Waldbusser
  15.                                           International Network Services
  16.                                                             January 1996
  17.  
  18.  
  19.                           Textual Conventions
  20.                           for Version 2 of the
  21.               Simple Network Management Protocol (SNMPv2)
  22.  
  23. Status of this Memo
  24.  
  25.    This document specifies an Internet standards track protocol for the
  26.    Internet community, and requests discussion and suggestions for
  27.    improvements.  Please refer to the current edition of the "Internet
  28.    Official Protocol Standards" (STD 1) for the standardization state
  29.    and status of this protocol.  Distribution of this memo is unlimited.
  30.  
  31. Table of Contents
  32.  
  33.    1. Introduction ................................................    1
  34.    1.1 A Note on Terminology ......................................    2
  35.    2. Definitions .................................................    3
  36.    3. Mapping of the TEXTUAL-CONVENTION macro .....................   19
  37.    3.1 Mapping of the DISPLAY-HINT clause .........................   19
  38.    3.2 Mapping of the STATUS clause ...............................   21
  39.    3.3 Mapping of the DESCRIPTION clause ..........................   21
  40.    3.4 Mapping of the REFERENCE clause ............................   21
  41.    3.5 Mapping of the SYNTAX clause ...............................   22
  42.    4. Security Considerations .....................................   22
  43.    5. Editor's Address ............................................   22
  44.    6. Acknowledgements ............................................   22
  45.    7. References ..................................................   23
  46.  
  47. 1.  Introduction
  48.  
  49.    A management system contains:  several (potentially many) nodes, each
  50.    with a processing entity, termed an agent, which has access to
  51.    management instrumentation; at least one management station; and, a
  52.    management protocol, used to convey management information between
  53.    the agents and management stations.  Operations of the protocol are
  54.    carried out under an administrative framework which defines
  55.  
  56.  
  57.  
  58. SNMPv2 Working Group        Standards Track                     [Page 1]
  59.  
  60. RFC 1903             Textual Conventions for SNMPv2         January 1996
  61.  
  62.  
  63.    authentication, authorization, access control, and privacy policies.
  64.  
  65.    Management stations execute management applications which monitor and
  66.    control managed elements.  Managed elements are devices such as
  67.    hosts, routers, terminal servers, etc., which are monitored and
  68.    controlled via access to their management information.
  69.  
  70.    Management information is viewed as a collection of managed objects,
  71.    residing in a virtual information store, termed the Management
  72.    Information Base (MIB).  Collections of related objects are defined
  73.    in MIB modules.  These modules are written using a subset of OSI's
  74.    Abstract Syntax Notation One (ASN.1) [1], termed the Structure of
  75.    Management Information (SMI) [2].
  76.  
  77.    When designing a MIB module, it is often useful to define new types
  78.    similar to those defined in the SMI.  In comparison to a type defined
  79.    in the SMI, each of these new types has a different name, a similar
  80.    syntax, but a more precise semantics.  These newly defined types are
  81.    termed textual conventions, and are used for the convenience of
  82.    humans reading the MIB module.  It is the purpose of this document to
  83.    define the initial set of textual conventions available to all MIB
  84.    modules.
  85.  
  86.    Objects defined using a textual convention are always encoded by
  87.    means of the rules that define their primitive type.  However,
  88.    textual conventions often have special semantics associated with
  89.    them.  As such, an ASN.1 macro, TEXTUAL-CONVENTION, is used to
  90.    concisely convey the syntax and semantics of a textual convention.
  91.  
  92.    For all textual conventions defined in an information module, the
  93.    name shall be unique and mnemonic, and shall not exceed 64 characters
  94.    in length.  (However, names longer than 32 characters are not
  95.    recommended.) All names used for the textual conventions defined in
  96.    all "standard" information modules shall be unique.
  97.  
  98. 1.1.  A Note on Terminology
  99.  
  100.    For the purpose of exposition, the original Internet-standard Network
  101.    Management Framework, as described in RFCs 1155 (STD 16), 1157 (STD
  102.    15), and 1212 (STD 16), is termed the SNMP version 1 framework
  103.    (SNMPv1).  The current framework is termed the SNMP version 2
  104.    framework (SNMPv2).
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114. SNMPv2 Working Group        Standards Track                     [Page 2]
  115.  
  116. RFC 1903             Textual Conventions for SNMPv2         January 1996
  117.  
  118.  
  119. 2.  Definitions
  120.  
  121. SNMPv2-TC DEFINITIONS ::= BEGIN
  122.  
  123. IMPORTS
  124.     ObjectSyntax, TimeTicks
  125.         FROM SNMPv2-SMI;
  126.  
  127.  
  128. -- definition of textual conventions
  129.  
  130. TEXTUAL-CONVENTION MACRO ::=
  131. BEGIN
  132.     TYPE NOTATION ::=
  133.                   DisplayPart
  134.                   "STATUS" Status
  135.                   "DESCRIPTION" Text
  136.                   ReferPart
  137.                   "SYNTAX" Syntax
  138.  
  139.     VALUE NOTATION ::=
  140.                   value(VALUE Syntax)
  141.  
  142.     DisplayPart ::=
  143.                   "DISPLAY-HINT" Text
  144.                 | empty
  145.  
  146.     Status ::=
  147.                   "current"
  148.                 | "deprecated"
  149.                 | "obsolete"
  150.  
  151.     ReferPart ::=
  152.                   "REFERENCE" Text
  153.                 | empty
  154.  
  155.     -- uses the NVT ASCII character set
  156.     Text ::= """" string """"
  157.  
  158.     Syntax ::=
  159.                   type(ObjectSyntax)
  160.                 | "BITS" "{" Kibbles "}"
  161.     Kibbles ::=
  162.                   Kibble
  163.                 | Kibbles "," Kibble
  164.     Kibble ::=
  165.                   identifier "(" nonNegativeNumber ")"
  166.  
  167.  
  168.  
  169.  
  170. SNMPv2 Working Group        Standards Track                     [Page 3]
  171.  
  172. RFC 1903             Textual Conventions for SNMPv2         January 1996
  173.  
  174.  
  175. END
  176.  
  177.  
  178. DisplayString ::= TEXTUAL-CONVENTION
  179.     DISPLAY-HINT "255a"
  180.     STATUS       current
  181.     DESCRIPTION
  182.             "Represents textual information taken from the NVT ASCII
  183.             character set, as defined in pages 4, 10-11 of RFC 854.
  184.  
  185.             To summarize RFC 854, the NVT ASCII repertoire specifies:
  186.  
  187.               - the use of character codes 0-127 (decimal)
  188.  
  189.               - the graphics characters (32-126) are interpreted as
  190.                 US ASCII
  191.  
  192.               - NUL, LF, CR, BEL, BS, HT, VT and FF have the special
  193.                 meanings specified in RFC 854
  194.  
  195.               - the other 25 codes have no standard interpretation
  196.  
  197.               - the sequence 'CR LF' means newline
  198.  
  199.               - the sequence 'CR NUL' means carriage-return
  200.  
  201.               - an 'LF' not preceded by a 'CR' means moving to the
  202.                 same column on the next line.
  203.  
  204.               - the sequence 'CR x' for any x other than LF or NUL is
  205.                 illegal.  (Note that this also means that a string may
  206.                 end with either 'CR LF' or 'CR NUL', but not with CR.)
  207.  
  208.             Any object defined using this syntax may not exceed 255
  209.             characters in length."
  210.     SYNTAX       OCTET STRING (SIZE (0..255))
  211.  
  212.  
  213. PhysAddress ::= TEXTUAL-CONVENTION
  214.     DISPLAY-HINT "1x:"
  215.     STATUS       current
  216.     DESCRIPTION
  217.             "Represents media- or physical-level addresses."
  218.     SYNTAX       OCTET STRING
  219.  
  220.  
  221. MacAddress ::= TEXTUAL-CONVENTION
  222.     DISPLAY-HINT "1x:"
  223.  
  224.  
  225.  
  226. SNMPv2 Working Group        Standards Track                     [Page 4]
  227.  
  228. RFC 1903             Textual Conventions for SNMPv2         January 1996
  229.  
  230.  
  231.     STATUS       current
  232.     DESCRIPTION
  233.             "Represents an 802 MAC address represented in the
  234.             `canonical' order defined by IEEE 802.1a, i.e., as if it
  235.             were transmitted least significant bit first, even though
  236.             802.5 (in contrast to other 802.x protocols) requires MAC
  237.             addresses to be transmitted most significant bit first."
  238.     SYNTAX       OCTET STRING (SIZE (6))
  239.  
  240.  
  241. TruthValue ::= TEXTUAL-CONVENTION
  242.     STATUS       current
  243.     DESCRIPTION
  244.             "Represents a boolean value."
  245.     SYNTAX       INTEGER { true(1), false(2) }
  246.  
  247. TestAndIncr ::= TEXTUAL-CONVENTION
  248.     STATUS       current
  249.     DESCRIPTION
  250.             "Represents integer-valued information used for atomic
  251.             operations.  When the management protocol is used to specify
  252.             that an object instance having this syntax is to be
  253.             modified, the new value supplied via the management protocol
  254.             must precisely match the value presently held by the
  255.             instance.  If not, the management protocol set operation
  256.             fails with an error of `inconsistentValue'.  Otherwise, if
  257.             the current value is the maximum value of 2^31-1 (2147483647
  258.             decimal), then the value held by the instance is wrapped to
  259.             zero; otherwise, the value held by the instance is
  260.             incremented by one.  (Note that regardless of whether the
  261.             management protocol set operation succeeds, the variable-
  262.             binding in the request and response PDUs are identical.)
  263.  
  264.             The value of the ACCESS clause for objects having this
  265.             syntax is either `read-write' or `read-create'.  When an
  266.             instance of a columnar object having this syntax is created,
  267.             any value may be supplied via the management protocol.
  268.  
  269.             When the network management portion of the system is re-
  270.             initialized, the value of every object instance having this
  271.             syntax must either be incremented from its value prior to
  272.             the re-initialization, or (if the value prior to the re-
  273.             initialization is unknown) be set to a pseudo-randomly
  274.             generated value."
  275.     SYNTAX       INTEGER (0..2147483647)
  276.  
  277.  
  278. AutonomousType ::= TEXTUAL-CONVENTION
  279.  
  280.  
  281.  
  282. SNMPv2 Working Group        Standards Track                     [Page 5]
  283.  
  284. RFC 1903             Textual Conventions for SNMPv2         January 1996
  285.  
  286.  
  287.     STATUS       current
  288.     DESCRIPTION
  289.             "Represents an independently extensible type identification
  290.             value.  It may, for example, indicate a particular sub-tree
  291.             with further MIB definitions, or define a particular type of
  292.             protocol or hardware."
  293.     SYNTAX       OBJECT IDENTIFIER
  294.  
  295.  
  296. InstancePointer ::= TEXTUAL-CONVENTION
  297.     STATUS       obsolete
  298.     DESCRIPTION
  299.             "A pointer to either a specific instance of a MIB object or
  300.             a conceptual row of a MIB table in the managed device.  In
  301.             the latter case, by convention, it is the name of the
  302.             particular instance of the first accessible columnar object
  303.             in the conceptual row.
  304.  
  305.             The two uses of this textual convention are replaced by
  306.             VariablePointer and RowPointer, respectively."
  307.     SYNTAX       OBJECT IDENTIFIER
  308.  
  309.  
  310. VariablePointer ::= TEXTUAL-CONVENTION
  311.     STATUS       current
  312.     DESCRIPTION
  313.             "A pointer to a specific object instance.  For example,
  314.             sysContact.0 or ifInOctets.3."
  315.     SYNTAX       OBJECT IDENTIFIER
  316.  
  317.  
  318. RowPointer ::= TEXTUAL-CONVENTION
  319.     STATUS       current
  320.     DESCRIPTION
  321.             "Represents a pointer to a conceptual row.  The value is the
  322.             name of the instance of the first accessible columnar object
  323.             in the conceptual row.
  324.  
  325.             For example, ifIndex.3 would point to the 3rd row in the
  326.             ifTable (note that if ifIndex were not-accessible, then
  327.             ifDescr.3 would be used instead)."
  328.     SYNTAX       OBJECT IDENTIFIER
  329.  
  330.  
  331. RowStatus ::= TEXTUAL-CONVENTION
  332.     STATUS       current
  333.     DESCRIPTION
  334.             "The RowStatus textual convention is used to manage the
  335.  
  336.  
  337.  
  338. SNMPv2 Working Group        Standards Track                     [Page 6]
  339.  
  340. RFC 1903             Textual Conventions for SNMPv2         January 1996
  341.  
  342.  
  343.             creation and deletion of conceptual rows, and is used as the
  344.             value of the SYNTAX clause for the status column of a
  345.             conceptual row (as described in Section 7.7.1 of [2].)
  346.  
  347.             The status column has six defined values:
  348.  
  349.                  - `active', which indicates that the conceptual row is
  350.                  available for use by the managed device;
  351.  
  352.                  - `notInService', which indicates that the conceptual
  353.                  row exists in the agent, but is unavailable for use by
  354.                  the managed device (see NOTE below);
  355.  
  356.                  - `notReady', which indicates that the conceptual row
  357.                  exists in the agent, but is missing information
  358.                  necessary in order to be available for use by the
  359.                  managed device;
  360.  
  361.                  - `createAndGo', which is supplied by a management
  362.                  station wishing to create a new instance of a
  363.                  conceptual row and to have its status automatically set
  364.                  to active, making it available for use by the managed
  365.                  device;
  366.  
  367.                  - `createAndWait', which is supplied by a management
  368.                  station wishing to create a new instance of a
  369.                  conceptual row (but not make it available for use by
  370.                  the managed device); and,
  371.  
  372.                  - `destroy', which is supplied by a management station
  373.                  wishing to delete all of the instances associated with
  374.                  an existing conceptual row.
  375.  
  376.             Whereas five of the six values (all except `notReady') may
  377.             be specified in a management protocol set operation, only
  378.             three values will be returned in response to a management
  379.             protocol retrieval operation:  `notReady', `notInService' or
  380.             `active'.  That is, when queried, an existing conceptual row
  381.             has only three states:  it is either available for use by
  382.             the managed device (the status column has value `active');
  383.             it is not available for use by the managed device, though
  384.             the agent has sufficient information to make it so (the
  385.             status column has value `notInService'); or, it is not
  386.             available for use by the managed device, and an attempt to
  387.             make it so would fail because the agent has insufficient
  388.             information (the state column has value `notReady').
  389.  
  390.  
  391.  
  392.  
  393.  
  394. SNMPv2 Working Group        Standards Track                     [Page 7]
  395.  
  396. RFC 1903             Textual Conventions for SNMPv2         January 1996
  397.  
  398.  
  399.                                      NOTE WELL
  400.  
  401.                  This textual convention may be used for a MIB table,
  402.                  irrespective of whether the values of that table's
  403.                  conceptual rows are able to be modified while it is
  404.                  active, or whether its conceptual rows must be taken
  405.                  out of service in order to be modified.  That is, it is
  406.                  the responsibility of the DESCRIPTION clause of the
  407.                  status column to specify whether the status column must
  408.                  not be `active' in order for the value of some other
  409.                  column of the same conceptual row to be modified.  If
  410.                  such a specification is made, affected columns may be
  411.                  changed by an SNMP set PDU if the RowStatus would not
  412.                  be equal to `active' either immediately before or after
  413.                  processing the PDU.  In other words, if the PDU also
  414.                  contained a varbind that would change the RowStatus
  415.                  value, the column in question may be changed if the
  416.                  RowStatus was not equal to `active' as the PDU was
  417.                  received, or if the varbind sets the status to a value
  418.                  other than 'active'.
  419.  
  420.  
  421.             Also note that whenever any elements of a row exist, the
  422.             RowStatus column must also exist.
  423.  
  424.  
  425.  
  426.  
  427.  
  428.  
  429.  
  430.  
  431.  
  432.  
  433.  
  434.  
  435.  
  436.  
  437.  
  438.  
  439.  
  440.  
  441.  
  442.  
  443.  
  444.  
  445.  
  446.  
  447.  
  448.  
  449.  
  450. SNMPv2 Working Group        Standards Track                     [Page 8]
  451.  
  452. RFC 1903             Textual Conventions for SNMPv2         January 1996
  453.  
  454.  
  455.             To summarize the effect of having a conceptual row with a
  456.             status column having a SYNTAX clause value of RowStatus,
  457.             consider the following state diagram:
  458.  
  459.  
  460.                                          STATE
  461.               +--------------+-----------+-------------+-------------
  462.               |      A       |     B     |      C      |      D
  463.               |              |status col.|status column|
  464.               |status column |    is     |      is     |status column
  465.     ACTION    |does not exist|  notReady | notInService|  is active
  466. --------------+--------------+-----------+-------------+-------------
  467. set status    |noError    ->D|inconsist- |inconsistent-|inconsistent-
  468. column to     |       or     |   entValue|        Value|        Value
  469. createAndGo   |inconsistent- |           |             |
  470.               |         Value|           |             |
  471. --------------+--------------+-----------+-------------+-------------
  472. set status    |noError  see 1|inconsist- |inconsistent-|inconsistent-
  473. column to     |       or     |   entValue|        Value|        Value
  474. createAndWait |wrongValue    |           |             |
  475. --------------+--------------+-----------+-------------+-------------
  476. set status    |inconsistent- |inconsist- |noError      |noError
  477. column to     |         Value|   entValue|             |
  478. active        |              |           |             |
  479.               |              |     or    |             |
  480.               |              |           |             |
  481.               |              |see 2   ->D|          ->D|          ->D
  482. --------------+--------------+-----------+-------------+-------------
  483. set status    |inconsistent- |inconsist- |noError      |noError   ->C
  484. column to     |         Value|   entValue|             |
  485. notInService  |              |           |             |
  486.               |              |     or    |             |      or
  487.               |              |           |             |
  488.               |              |see 3   ->C|          ->C|wrongValue
  489. --------------+--------------+-----------+-------------+-------------
  490. set status    |noError       |noError    |noError      |noError
  491. column to     |              |           |             |
  492. destroy       |           ->A|        ->A|          ->A|          ->A
  493. --------------+--------------+-----------+-------------+-------------
  494. set any other |see 4         |noError    |noError      |see 5
  495. column to some|              |           |             |
  496. value         |              |      see 1|          ->C|          ->D
  497. --------------+--------------+-----------+-------------+-------------
  498.  
  499.             (1) goto B or C, depending on information available to the
  500.             agent.
  501.  
  502.  
  503.  
  504.  
  505.  
  506. SNMPv2 Working Group        Standards Track                     [Page 9]
  507.  
  508. RFC 1903             Textual Conventions for SNMPv2         January 1996
  509.  
  510.  
  511.             (2) if other variable bindings included in the same PDU,
  512.             provide values for all columns which are missing but
  513.             required, then return noError and goto D.
  514.  
  515.             (3) if other variable bindings included in the same PDU,
  516.             provide values for all columns which are missing but
  517.             required, then return noError and goto C.
  518.  
  519.             (4) at the discretion of the agent, the return value may be
  520.             either:
  521.  
  522.                  inconsistentName:  because the agent does not choose to
  523.                  create such an instance when the corresponding
  524.                  RowStatus instance does not exist, or
  525.  
  526.                  inconsistentValue:  if the supplied value is
  527.                  inconsistent with the state of some other MIB object's
  528.                  value, or
  529.  
  530.                  noError: because the agent chooses to create the
  531.                  instance.
  532.  
  533.             If noError is returned, then the instance of the status
  534.             column must also be created, and the new state is B or C,
  535.             depending on the information available to the agent.  If
  536.             inconsistentName or inconsistentValue is returned, the row
  537.             remains in state A.
  538.  
  539.             (5) depending on the MIB definition for the column/table,
  540.             either noError or inconsistentValue may be returned.
  541.  
  542.             NOTE: Other processing of the set request may result in a
  543.             response other than noError being returned, e.g.,
  544.             wrongValue, noCreation, etc.
  545.  
  546.  
  547.                               Conceptual Row Creation
  548.  
  549.             There are four potential interactions when creating a
  550.             conceptual row:  selecting an instance-identifier which is
  551.             not in use; creating the conceptual row; initializing any
  552.             objects for which the agent does not supply a default; and,
  553.             making the conceptual row available for use by the managed
  554.             device.
  555.  
  556.  
  557.  
  558.  
  559.  
  560.  
  561.  
  562. SNMPv2 Working Group        Standards Track                    [Page 10]
  563.  
  564. RFC 1903             Textual Conventions for SNMPv2         January 1996
  565.  
  566.  
  567.             Interaction 1: Selecting an Instance-Identifier
  568.  
  569.             The algorithm used to select an instance-identifier varies
  570.             for each conceptual row.  In some cases, the instance-
  571.             identifier is semantically significant, e.g., the
  572.             destination address of a route, and a management station
  573.             selects the instance-identifier according to the semantics.
  574.  
  575.             In other cases, the instance-identifier is used solely to
  576.             distinguish conceptual rows, and a management station
  577.             without specific knowledge of the conceptual row might
  578.             examine the instances present in order to determine an
  579.             unused instance-identifier.  (This approach may be used, but
  580.             it is often highly sub-optimal; however, it is also a
  581.             questionable practice for a naive management station to
  582.             attempt conceptual row creation.)
  583.  
  584.             Alternately, the MIB module which defines the conceptual row
  585.             might provide one or more objects which provide assistance
  586.             in determining an unused instance-identifier.  For example,
  587.             if the conceptual row is indexed by an integer-value, then
  588.             an object having an integer-valued SYNTAX clause might be
  589.             defined for such a purpose, allowing a management station to
  590.             issue a management protocol retrieval operation.  In order
  591.             to avoid unnecessary collisions between competing management
  592.             stations, `adjacent' retrievals of this object should be
  593.             different.
  594.  
  595.             Finally, the management station could select a pseudo-random
  596.             number to use as the index.  In the event that this index
  597.             was already in use and an inconsistentValue was returned in
  598.             response to the management protocol set operation, the
  599.             management station should simply select a new pseudo-random
  600.             number and retry the operation.
  601.  
  602.             A MIB designer should choose between the two latter
  603.             algorithms based on the size of the table (and therefore the
  604.             efficiency of each algorithm).  For tables in which a large
  605.             number of entries are expected, it is recommended that a MIB
  606.             object be defined that returns an acceptable index for
  607.             creation.  For tables with small numbers of entries, it is
  608.             recommended that the latter pseudo-random index mechanism be
  609.             used.
  610.  
  611.  
  612.  
  613.  
  614.  
  615.  
  616.  
  617.  
  618. SNMPv2 Working Group        Standards Track                    [Page 11]
  619.  
  620. RFC 1903             Textual Conventions for SNMPv2         January 1996
  621.  
  622.  
  623.             Interaction 2: Creating the Conceptual Row
  624.  
  625.             Once an unused instance-identifier has been selected, the
  626.             management station determines if it wishes to create and
  627.             activate the conceptual row in one transaction or in a
  628.             negotiated set of interactions.
  629.  
  630.             Interaction 2a: Creating and Activating the Conceptual Row
  631.  
  632.             The management station must first determine the column
  633.             requirements, i.e., it must determine those columns for
  634.             which it must or must not provide values.  Depending on the
  635.             complexity of the table and the management station's
  636.             knowledge of the agent's capabilities, this determination
  637.             can be made locally by the management station.  Alternately,
  638.             the management station issues a management protocol get
  639.             operation to examine all columns in the conceptual row that
  640.             it wishes to create.  In response, for each column, there
  641.             are three possible outcomes:
  642.  
  643.                  - a value is returned, indicating that some other
  644.                  management station has already created this conceptual
  645.                  row.  We return to interaction 1.
  646.  
  647.                  - the exception `noSuchInstance' is returned,
  648.                  indicating that the agent implements the object-type
  649.                  associated with this column, and that this column in at
  650.                  least one conceptual row would be accessible in the MIB
  651.                  view used by the retrieval were it to exist. For those
  652.                  columns to which the agent provides read-create access,
  653.                  the `noSuchInstance' exception tells the management
  654.                  station that it should supply a value for this column
  655.                  when the conceptual row is to be created.
  656.  
  657.                  - the exception `noSuchObject' is returned, indicating
  658.                  that the agent does not implement the object-type
  659.                  associated with this column or that there is no
  660.                  conceptual row for which this column would be
  661.                  accessible in the MIB view used by the retrieval.  As
  662.                  such, the management station can not issue any
  663.                  management protocol set operations to create an
  664.                  instance of this column.
  665.  
  666.             Once the column requirements have been determined, a
  667.             management protocol set operation is accordingly issued.
  668.             This operation also sets the new instance of the status
  669.             column to `createAndGo'.
  670.  
  671.  
  672.  
  673.  
  674. SNMPv2 Working Group        Standards Track                    [Page 12]
  675.  
  676. RFC 1903             Textual Conventions for SNMPv2         January 1996
  677.  
  678.  
  679.             When the agent processes the set operation, it verifies that
  680.             it has sufficient information to make the conceptual row
  681.             available for use by the managed device.  The information
  682.             available to the agent is provided by two sources:  the
  683.             management protocol set operation which creates the
  684.             conceptual row, and, implementation-specific defaults
  685.             supplied by the agent (note that an agent must provide
  686.             implementation-specific defaults for at least those objects
  687.             which it implements as read-only).  If there is sufficient
  688.             information available, then the conceptual row is created, a
  689.             `noError' response is returned, the status column is set to
  690.             `active', and no further interactions are necessary (i.e.,
  691.             interactions 3 and 4 are skipped).  If there is insufficient
  692.             information, then the conceptual row is not created, and the
  693.             set operation fails with an error of `inconsistentValue'.
  694.             On this error, the management station can issue a management
  695.             protocol retrieval operation to determine if this was
  696.             because it failed to specify a value for a required column,
  697.             or, because the selected instance of the status column
  698.             already existed.  In the latter case, we return to
  699.             interaction 1.  In the former case, the management station
  700.             can re-issue the set operation with the additional
  701.             information, or begin interaction 2 again using
  702.             `createAndWait' in order to negotiate creation of the
  703.             conceptual row.
  704.  
  705.                                      NOTE WELL
  706.  
  707.                  Regardless of the method used to determine the column
  708.                  requirements, it is possible that the management
  709.                  station might deem a column necessary when, in fact,
  710.                  the agent will not allow that particular columnar
  711.                  instance to be created or written.  In this case, the
  712.                  management protocol set operation will fail with an
  713.                  error such as `noCreation' or `notWritable'.  In this
  714.                  case, the management station decides whether it needs
  715.                  to be able to set a value for that particular columnar
  716.                  instance.  If not, the management station re-issues the
  717.                  management protocol set operation, but without setting
  718.                  a value for that particular columnar instance;
  719.                  otherwise, the management station aborts the row
  720.                  creation algorithm.
  721.  
  722.             Interaction 2b: Negotiating the Creation of the Conceptual
  723.             Row
  724.  
  725.             The management station issues a management protocol set
  726.             operation which sets the desired instance of the status
  727.  
  728.  
  729.  
  730. SNMPv2 Working Group        Standards Track                    [Page 13]
  731.  
  732. RFC 1903             Textual Conventions for SNMPv2         January 1996
  733.  
  734.  
  735.             column to `createAndWait'.  If the agent is unwilling to
  736.             process a request of this sort, the set operation fails with
  737.             an error of `wrongValue'.  (As a consequence, such an agent
  738.             must be prepared to accept a single management protocol set
  739.             operation, i.e., interaction 2a above, containing all of the
  740.             columns indicated by its column requirements.)  Otherwise,
  741.             the conceptual row is created, a `noError' response is
  742.             returned, and the status column is immediately set to either
  743.             `notInService' or `notReady', depending on whether it has
  744.             sufficient information to make the conceptual row available
  745.             for use by the managed device.  If there is sufficient
  746.             information available, then the status column is set to
  747.             `notInService'; otherwise, if there is insufficient
  748.             information, then the status column is set to `notReady'.
  749.             Regardless, we proceed to interaction 3.
  750.  
  751.             Interaction 3: Initializing non-defaulted Objects
  752.  
  753.             The management station must now determine the column
  754.             requirements.  It issues a management protocol get operation
  755.             to examine all columns in the created conceptual row.  In
  756.             the response, for each column, there are three possible
  757.             outcomes:
  758.  
  759.                  - a value is returned, indicating that the agent
  760.                  implements the object-type associated with this column
  761.                  and had sufficient information to provide a value.  For
  762.                  those columns to which the agent provides read-create
  763.                  access (and for which the agent allows their values to
  764.                  be changed after their creation), a value return tells
  765.                  the management station that it may issue additional
  766.                  management protocol set operations, if it desires, in
  767.                  order to change the value associated with this column.
  768.  
  769.                  - the exception `noSuchInstance' is returned,
  770.                  indicating that the agent implements the object-type
  771.                  associated with this column, and that this column in at
  772.                  least one conceptual row would be accessible in the MIB
  773.                  view used by the retrieval were it to exist. However,
  774.                  the agent does not have sufficient information to
  775.                  provide a value, and until a value is provided, the
  776.                  conceptual row may not be made available for use by the
  777.                  managed device.  For those columns to which the agent
  778.                  provides read-create access, the `noSuchInstance'
  779.                  exception tells the management station that it must
  780.                  issue additional management protocol set operations, in
  781.                  order to provide a value associated with this column.
  782.  
  783.  
  784.  
  785.  
  786. SNMPv2 Working Group        Standards Track                    [Page 14]
  787.  
  788. RFC 1903             Textual Conventions for SNMPv2         January 1996
  789.  
  790.  
  791.                  - the exception `noSuchObject' is returned, indicating
  792.                  that the agent does not implement the object-type
  793.                  associated with this column or that there is no
  794.                  conceptual row for which this column would be
  795.                  accessible in the MIB view used by the retrieval.  As
  796.                  such, the management station can not issue any
  797.                  management protocol set operations to create an
  798.                  instance of this column.
  799.  
  800.             If the value associated with the status column is
  801.             `notReady', then the management station must first deal with
  802.             all `noSuchInstance' columns, if any.  Having done so, the
  803.             value of the status column becomes `notInService', and we
  804.             proceed to interaction 4.
  805.  
  806.             Interaction 4: Making the Conceptual Row Available
  807.  
  808.             Once the management station is satisfied with the values
  809.             associated with the columns of the conceptual row, it issues
  810.             a management protocol set operation to set the status column
  811.             to `active'.  If the agent has sufficient information to
  812.             make the conceptual row available for use by the managed
  813.             device, the management protocol set operation succeeds (a
  814.             `noError' response is returned).  Otherwise, the management
  815.             protocol set operation fails with an error of
  816.             `inconsistentValue'.
  817.  
  818.  
  819.                                      NOTE WELL
  820.  
  821.                  A conceptual row having a status column with value
  822.                  `notInService' or `notReady' is unavailable to the
  823.                  managed device.  As such, it is possible for the
  824.                  managed device to create its own instances during the
  825.                  time between the management protocol set operation
  826.                  which sets the status column to `createAndWait' and the
  827.                  management protocol set operation which sets the status
  828.                  column to `active'.  In this case, when the management
  829.                  protocol set operation is issued to set the status
  830.                  column to `active', the values held in the agent
  831.                  supersede those used by the managed device.
  832.  
  833.             If the management station is prevented from setting the
  834.             status column to `active' (e.g., due to management station
  835.             or network failure) the conceptual row will be left in the
  836.             `notInService' or `notReady' state, consuming resources
  837.             indefinitely.  The agent must detect conceptual rows that
  838.             have been in either state for an abnormally long period of
  839.  
  840.  
  841.  
  842. SNMPv2 Working Group        Standards Track                    [Page 15]
  843.  
  844. RFC 1903             Textual Conventions for SNMPv2         January 1996
  845.  
  846.  
  847.             time and remove them.  It is the responsibility of the
  848.             DESCRIPTION clause of the status column to indicate what an
  849.             abnormally long period of time would be.  This period of
  850.             time should be long enough to allow for human response time
  851.             (including `think time') between the creation of the
  852.             conceptual row and the setting of the status to `active'.
  853.             In the absense of such information in the DESCRIPTION
  854.             clause, it is suggested that this period be approximately 5
  855.             minutes in length.  This removal action applies not only to
  856.             newly-created rows, but also to previously active rows which
  857.             are set to, and left in, the notInService state for a
  858.             prolonged period exceeding that which is considered normal
  859.             for such a conceptual row.
  860.  
  861.  
  862.                              Conceptual Row Suspension
  863.  
  864.             When a conceptual row is `active', the management station
  865.             may issue a management protocol set operation which sets the
  866.             instance of the status column to `notInService'.  If the
  867.             agent is unwilling to do so, the set operation fails with an
  868.             error of `wrongValue'.  Otherwise, the conceptual row is
  869.             taken out of service, and a `noError' response is returned.
  870.             It is the responsibility of the DESCRIPTION clause of the
  871.             status column to indicate under what circumstances the
  872.             status column should be taken out of service (e.g., in order
  873.             for the value of some other column of the same conceptual
  874.             row to be modified).
  875.  
  876.  
  877.                               Conceptual Row Deletion
  878.  
  879.             For deletion of conceptual rows, a management protocol set
  880.             operation is issued which sets the instance of the status
  881.             column to `destroy'.  This request may be made regardless of
  882.             the current value of the status column (e.g., it is possible
  883.             to delete conceptual rows which are either `notReady',
  884.             `notInService' or `active'.)  If the operation succeeds,
  885.             then all instances associated with the conceptual row are
  886.             immediately removed."
  887.  
  888.  
  889.     SYNTAX       INTEGER {
  890.                      -- the following two values are states:
  891.                      -- these values may be read or written
  892.                      active(1),
  893.                      notInService(2),
  894.  
  895.  
  896.  
  897.  
  898. SNMPv2 Working Group        Standards Track                    [Page 16]
  899.  
  900. RFC 1903             Textual Conventions for SNMPv2         January 1996
  901.  
  902.  
  903.                      -- the following value is a state:
  904.                      -- this value may be read, but not written
  905.                      notReady(3),
  906.  
  907.                      -- the following three values are
  908.                      -- actions: these values may be written,
  909.                      --   but are never read
  910.                      createAndGo(4),
  911.                      createAndWait(5),
  912.                      destroy(6)
  913.                  }
  914.  
  915.  
  916. TimeStamp ::= TEXTUAL-CONVENTION
  917.     STATUS       current
  918.     DESCRIPTION
  919.             "The value of the sysUpTime object at which a specific
  920.             occurrence happened.  The specific occurrence must be
  921.             defined in the description of any object defined using this
  922.             type."
  923.     SYNTAX       TimeTicks
  924.  
  925.  
  926. TimeInterval ::= TEXTUAL-CONVENTION
  927.     STATUS       current
  928.     DESCRIPTION
  929.             "A period of time, measured in units of 0.01 seconds."
  930.     SYNTAX       INTEGER (0..2147483647)
  931.  
  932.  
  933. DateAndTime ::= TEXTUAL-CONVENTION
  934.     DISPLAY-HINT "2d-1d-1d,1d:1d:1d.1d,1a1d:1d"
  935.     STATUS       current
  936.     DESCRIPTION
  937.             "A date-time specification.
  938.  
  939.             field  octets  contents                  range
  940.             -----  ------  --------                  -----
  941.               1      1-2   year                      0..65536
  942.               2       3    month                     1..12
  943.               3       4    day                       1..31
  944.               4       5    hour                      0..23
  945.               5       6    minutes                   0..59
  946.               6       7    seconds                   0..60
  947.                            (use 60 for leap-second)
  948.               7       8    deci-seconds              0..9
  949.               8       9    direction from UTC        '+' / '-'
  950.               9      10    hours from UTC            0..11
  951.  
  952.  
  953.  
  954. SNMPv2 Working Group        Standards Track                    [Page 17]
  955.  
  956. RFC 1903             Textual Conventions for SNMPv2         January 1996
  957.  
  958.  
  959.              10      11    minutes from UTC          0..59
  960.  
  961.             For example, Tuesday May 26, 1992 at 1:30:15 PM EDT would be
  962.             displayed as:
  963.  
  964.                              1992-5-26,13:30:15.0,-4:0
  965.  
  966.             Note that if only local time is known, then timezone
  967.             information (fields 8-10) is not present."
  968.     SYNTAX       OCTET STRING (SIZE (8 | 11))
  969.  
  970.  
  971. StorageType ::= TEXTUAL-CONVENTION
  972.     STATUS       current
  973.     DESCRIPTION
  974.             "Describes the memory realization of a conceptual row.  A
  975.             row which is volatile(2) is lost upon reboot.  A row which
  976.             is either nonVolatile(3), permanent(4) or readOnly(5), is
  977.             backed up by stable storage.  A row which is permanent(4)
  978.             can be changed but not deleted.  A row which is readOnly(5)
  979.             cannot be changed nor deleted.
  980.  
  981.             If the value of an object with this syntax is either
  982.             permanent(4) or readOnly(5), it cannot be modified.
  983.             Conversely, if the value is either other(1), volatile(2) or
  984.             nonVolatile(3), it cannot be modified to be permanent(4) or
  985.             readOnly(5).
  986.  
  987.             Every usage of this textual convention is required to
  988.             specify the columnar objects which a permanent(4) row must
  989.             at a minimum allow to be writable."
  990.     SYNTAX       INTEGER {
  991.                      other(1),       -- eh?
  992.                      volatile(2),    -- e.g., in RAM
  993.                      nonVolatile(3), -- e.g., in NVRAM
  994.                      permanent(4),   -- e.g., partially in ROM
  995.                      readOnly(5)     -- e.g., completely in ROM
  996.                  }
  997.  
  998.  
  999. TDomain ::= TEXTUAL-CONVENTION
  1000.     STATUS       current
  1001.     DESCRIPTION
  1002.           "Denotes a kind of transport service.
  1003.  
  1004.           Some possible values, such as snmpUDPDomain, are defined in
  1005.           'Transport Mappings for Version 2 of the Simple Network
  1006.           Management Protocol (SNMPv2)'."
  1007.  
  1008.  
  1009.  
  1010. SNMPv2 Working Group        Standards Track                    [Page 18]
  1011.  
  1012. RFC 1903             Textual Conventions for SNMPv2         January 1996
  1013.  
  1014.  
  1015.     SYNTAX       OBJECT IDENTIFIER
  1016.  
  1017.  
  1018. TAddress ::= TEXTUAL-CONVENTION
  1019.     STATUS       current
  1020.     DESCRIPTION
  1021.           "Denotes a transport service address.
  1022.  
  1023.           For snmpUDPDomain, a TAddress is 6 octets long, the initial 4
  1024.           octets containing the IP-address in network-byte order and the
  1025.           last 2 containing the UDP port in network-byte order.  Consult
  1026.           'Transport Mappings for Version 2 of the Simple Network
  1027.           Management Protocol (SNMPv2)' for further information on
  1028.           snmpUDPDomain."
  1029.     SYNTAX       OCTET STRING (SIZE (1..255))
  1030.  
  1031.  
  1032. END
  1033.  
  1034. 3.  Mapping of the TEXTUAL-CONVENTION macro
  1035.  
  1036.    The TEXTUAL-CONVENTION macro is used to convey the syntax and
  1037.    semantics associated with a textual convention.  It should be noted
  1038.    that the expansion of the TEXTUAL-CONVENTION macro is something which
  1039.    conceptually happens during implementation and not during run-time.
  1040.  
  1041.    For all descriptors appearing in an information module, the
  1042.    descriptor shall be unique and mnemonic, and shall not exceed 64
  1043.    characters in length.  (However, descriptors longer than 32
  1044.    characters are not recommended.)  Further, the hyphen is not allowed
  1045.    as a character in the name of any textual convention.
  1046.  
  1047. 3.1.  Mapping of the DISPLAY-HINT clause
  1048.  
  1049.    The DISPLAY-HINT clause, which need not be present, gives a hint as
  1050.    to how the value of an instance of an object with the syntax defined
  1051.    using this textual convention might be displayed.  The DISPLAY-HINT
  1052.    clause may be present if and only if the syntax has an underlying
  1053.    primitive type of INTEGER or OCTET STRING.  (Note, however, that the
  1054.    semantics defined for a particular syntax can cause the use of
  1055.    DISPLAY-HINT for that syntax to make no sense, e.g., for Counter32
  1056.    [2].)
  1057.  
  1058.    When the syntax has an underlying primitive type of INTEGER, the hint
  1059.    consists of an integer-format specification, containing two parts.
  1060.    The first part is a single character suggesting a display format,
  1061.    either: 'x' for hexadecimal, or 'd' for decimal, or 'o' for octal, or
  1062.    'b' for binary.  The second part is always omitted for 'x', 'o' and
  1063.  
  1064.  
  1065.  
  1066. SNMPv2 Working Group        Standards Track                    [Page 19]
  1067.  
  1068. RFC 1903             Textual Conventions for SNMPv2         January 1996
  1069.  
  1070.  
  1071.    'b', and need not be present for 'd'.  If present, the second part
  1072.    starts with a hyphen and is followed by a decimal number, which
  1073.    defines the implied decimal point when rendering the value.  For
  1074.    example:
  1075.  
  1076.      Hundredths ::= TEXTUAL-CONVENTION
  1077.          DISPLAY-HINT "d-2"
  1078.          ...
  1079.          SYNTAX     INTEGER (0..10000)
  1080.  
  1081.    suggests that a Hundredths value of 1234 be rendered as "12.34"
  1082.  
  1083.    When the syntax has an underlying primitive type of OCTET STRING, the
  1084.    hint consists of one or more octet-format specifications.  Each
  1085.    specification consists of five parts, with each part using and
  1086.    removing zero or more of the next octets from the value and producing
  1087.    the next zero or more characters to be displayed.  The octets within
  1088.    the value are processed in order of significance, most significant
  1089.    first.
  1090.  
  1091.    The five parts of a octet-format specification are:
  1092.  
  1093. (1)  the (optional) repeat indicator; if present, this part is a `*',
  1094.      and indicates that the current octet of the value is to be used as
  1095.      the repeat count.  The repeat count is an unsigned integer (which
  1096.      may be zero) which specifies how many times the remainder of this
  1097.      octet-format specification should be successively applied.  If the
  1098.      repeat indicator is not present, the repeat count is one.
  1099.  
  1100. (2)  the octet length: one or more decimal digits specifying the number
  1101.      of octets of the value to be used and formatted by this octet-
  1102.      specification.  Note that the octet length can be zero.  If less
  1103.      than this number of octets remain in the value, then the lesser
  1104.      number of octets are used.
  1105.  
  1106. (3)  the display format, either:  `x' for hexadecimal, `d' for decimal,
  1107.      `o' for octal, or `a' for ascii.  If the octet length part is
  1108.      greater than one, and the display format part refers to a numeric
  1109.      format, then network-byte ordering (big-endian encoding) is used
  1110.      interpreting the octets in the value.
  1111.  
  1112. (4)  the (optional) display separator character; if present, this part
  1113.      is a single character which is produced for display after each
  1114.      application of this octet-specification; however, this character is
  1115.      not produced for display if it would be immediately followed by the
  1116.      display of the repeat terminator character for this octet-
  1117.      specification.  This character can be any character other than a
  1118.      decimal digit and a `*'.
  1119.  
  1120.  
  1121.  
  1122. SNMPv2 Working Group        Standards Track                    [Page 20]
  1123.  
  1124. RFC 1903             Textual Conventions for SNMPv2         January 1996
  1125.  
  1126.  
  1127. (5)  the (optional) repeat terminator character, which can be present
  1128.      only if the display separator character is present and this octet-
  1129.      specification begins with a repeat indicator; if present, this part
  1130.      is a single character which is produced after all the zero or more
  1131.      repeated applications (as given by the repeat count) of this
  1132.      octet-specification.  This character can be any character other
  1133.      than a decimal digit and a `*'.
  1134.  
  1135.    Output of a display separator character or a repeat terminator
  1136.    character is suppressed if it would occur as the last character of
  1137.    the display.
  1138.  
  1139.    If the octets of the value are exhausted before all the octet-format
  1140.    specification have been used, then the excess specifications are
  1141.    ignored.  If additional octets remain in the value after interpreting
  1142.    all the octet-format specifications, then the last octet-format
  1143.    specification is re-interpreted to process the additional octets,
  1144.    until no octets remain in the value.
  1145.  
  1146. 3.2.  Mapping of the STATUS clause
  1147.  
  1148.    The STATUS clause, which must be present, indicates whether this
  1149.    definition is current or historic.
  1150.  
  1151.    The values "current", and "obsolete" are self-explanatory.  The
  1152.    "deprecated" value indicates that the definition is obsolete, but
  1153.    that an implementor may wish to support the use of this textual
  1154.    convention to foster interoperability with older implementations.
  1155.  
  1156. 3.3.  Mapping of the DESCRIPTION clause
  1157.  
  1158.    The DESCRIPTION clause, which must be present, contains a textual
  1159.    definition of the textual convention, which provides all semantic
  1160.    definitions necessary for implementation, and should embody any
  1161.    information which would otherwise be communicated in any ASN.1
  1162.    commentary annotations associated with the object.
  1163.  
  1164.    Note that, in order to conform to the ASN.1 syntax, the entire value
  1165.    of this clause must be enclosed in double quotation marks, and
  1166.    therefore cannot itself contain double quotation marks, although the
  1167.    value may be multi-line.
  1168.  
  1169. 3.4.  Mapping of the REFERENCE clause
  1170.  
  1171.    The REFERENCE clause, which need not be present, contains a textual
  1172.    cross-reference to a related item defined in some other published
  1173.    work.
  1174.  
  1175.  
  1176.  
  1177.  
  1178. SNMPv2 Working Group        Standards Track                    [Page 21]
  1179.  
  1180. RFC 1903             Textual Conventions for SNMPv2         January 1996
  1181.  
  1182.  
  1183. 3.5.  Mapping of the SYNTAX clause
  1184.  
  1185.    The SYNTAX clause, which must be present, defines abstract data
  1186.    structure corresponding to the textual convention.  The data
  1187.    structure must be one of the alternatives defined in the ObjectSyntax
  1188.    CHOICE or the BITS construct (see section 7.1 in [2]).
  1189.  
  1190. 4.  Security Considerations
  1191.  
  1192.    Security issues are not discussed in this memo.
  1193.  
  1194. 5.  Editor's Address
  1195.  
  1196.    Keith McCloghrie
  1197.    Cisco Systems, Inc.
  1198.    170 West Tasman Drive
  1199.    San Jose, CA  95134-1706
  1200.    US
  1201.  
  1202.    Phone: +1 408 526 5260
  1203.    EMail: kzm@cisco.com
  1204.  
  1205. 6.  Acknowledgements
  1206.  
  1207.    This document is the result of significant work by the four major
  1208.    contributors:
  1209.  
  1210.    Jeffrey D. Case (SNMP Research, case@snmp.com)
  1211.    Keith McCloghrie (Cisco Systems, kzm@cisco.com)
  1212.    Marshall T. Rose (Dover Beach Consulting, mrose@dbc.mtview.ca.us)
  1213.    Steven Waldbusser (International Network Services, stevew@uni.ins.com)
  1214.  
  1215.    In addition, the contributions of the SNMPv2 Working Group are
  1216.    acknowledged.  In particular, a special thanks is extended for the
  1217.    contributions of:
  1218.  
  1219.      Alexander I. Alten (Novell)
  1220.      Dave Arneson (Cabletron)
  1221.      Uri Blumenthal (IBM)
  1222.      Doug Book (Chipcom)
  1223.      Kim Curran (Bell-Northern Research)
  1224.      Jim Galvin (Trusted Information Systems)
  1225.      Maria Greene (Ascom Timeplex)
  1226.      Iain Hanson (Digital)
  1227.      Dave Harrington (Cabletron)
  1228.      Nguyen Hien (IBM)
  1229.      Jeff Johnson (Cisco Systems)
  1230.      Michael Kornegay (Object Quest)
  1231.  
  1232.  
  1233.  
  1234. SNMPv2 Working Group        Standards Track                    [Page 22]
  1235.  
  1236. RFC 1903             Textual Conventions for SNMPv2         January 1996
  1237.  
  1238.  
  1239.      Deirdre Kostick (AT&T Bell Labs)
  1240.      David Levi (SNMP Research)
  1241.      Daniel Mahoney (Cabletron)
  1242.      Bob Natale (ACE*COMM)
  1243.      Brian O'Keefe (Hewlett Packard)
  1244.      Andrew Pearson (SNMP Research)
  1245.      Dave Perkins (Peer Networks)
  1246.      Randy Presuhn (Peer Networks)
  1247.      Aleksey Romanov (Quality Quorum)
  1248.      Shawn Routhier (Epilogue)
  1249.      Jon Saperia (BGS Systems)
  1250.      Bob Stewart (Cisco Systems, bstewart@cisco.com), chair
  1251.      Kaj Tesink (Bellcore)
  1252.      Glenn Waters (Bell-Northern Research)
  1253.      Bert Wijnen (IBM)
  1254.  
  1255. 7.  References
  1256.  
  1257. [1]  Information processing systems - Open Systems Interconnection -
  1258.      Specification of Abstract Syntax Notation One (ASN.1),
  1259.      International Organization for Standardization.  International
  1260.      Standard 8824, (December, 1987).
  1261.  
  1262. [2]  SNMPv2 Working Group, Case, J., McCloghrie, K., Rose, M., and
  1263.      S. Waldbusser, "Structure of Management Information for Version 2
  1264.      of the Simple Network Management Protocol (SNMPv2)", RFC 1902,
  1265.      January 1996.
  1266.  
  1267.  
  1268.  
  1269.  
  1270.  
  1271.  
  1272.  
  1273.  
  1274.  
  1275.  
  1276.  
  1277.  
  1278.  
  1279.  
  1280.  
  1281.  
  1282.  
  1283.  
  1284.  
  1285.  
  1286.  
  1287.  
  1288.  
  1289.  
  1290. SNMPv2 Working Group        Standards Track                    [Page 23]
  1291.  
  1292.