home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / php / php4-win.exe / mibs / SNMPv2-TC.txt < prev    next >
Text File  |  1999-11-14  |  38KB  |  745 lines

  1. SNMPv2-TC DEFINITIONS ::= BEGIN
  2.  
  3. IMPORTS
  4.     TimeTicks         FROM SNMPv2-SMI;
  5.  
  6.  
  7. -- definition of textual conventions
  8.  
  9.  
  10. DisplayString ::= TEXTUAL-CONVENTION
  11.     DISPLAY-HINT "255a"
  12.     STATUS       current
  13.     DESCRIPTION
  14.             "Represents textual information taken from the NVT ASCII
  15.             character set, as defined in pages 4, 10-11 of RFC 854.
  16.  
  17.             To summarize RFC 854, the NVT ASCII repertoire specifies:
  18.  
  19.               - the use of character codes 0-127 (decimal)
  20.  
  21.               - the graphics characters (32-126) are interpreted as
  22.                 US ASCII
  23.  
  24.               - NUL, LF, CR, BEL, BS, HT, VT and FF have the special
  25.                 meanings specified in RFC 854
  26.  
  27.               - the other 25 codes have no standard interpretation
  28.  
  29.               - the sequence 'CR LF' means newline
  30.  
  31.               - the sequence 'CR NUL' means carriage-return
  32.  
  33.               - an 'LF' not preceded by a 'CR' means moving to the
  34.                 same column on the next line.
  35.  
  36.               - the sequence 'CR x' for any x other than LF or NUL is
  37.                 illegal.  (Note that this also means that a string may
  38.                 end with either 'CR LF' or 'CR NUL', but not with CR.)
  39.  
  40.             Any object defined using this syntax may not exceed 255
  41.             characters in length."
  42.     SYNTAX       OCTET STRING (SIZE (0..255))
  43.  
  44. PhysAddress ::= TEXTUAL-CONVENTION
  45.     DISPLAY-HINT "1x:"
  46.     STATUS       current
  47.     DESCRIPTION
  48.             "Represents media- or physical-level addresses."
  49.     SYNTAX       OCTET STRING
  50.  
  51.  
  52. MacAddress ::= TEXTUAL-CONVENTION
  53.     DISPLAY-HINT "1x:"
  54.     STATUS       current
  55.     DESCRIPTION
  56.             "Represents an 802 MAC address represented in the
  57.             `canonical' order defined by IEEE 802.1a, i.e., as if it
  58.             were transmitted least significant bit first, even though
  59.             802.5 (in contrast to other 802.x protocols) requires MAC
  60.             addresses to be transmitted most significant bit first."
  61.     SYNTAX       OCTET STRING (SIZE (6))
  62.  
  63. TruthValue ::= TEXTUAL-CONVENTION
  64.     STATUS       current
  65.     DESCRIPTION
  66.             "Represents a boolean value."
  67.     SYNTAX       INTEGER { true(1), false(2) }
  68.  
  69. TestAndIncr ::= TEXTUAL-CONVENTION
  70.     STATUS       current
  71.     DESCRIPTION
  72.             "Represents integer-valued information used for atomic
  73.             operations.  When the management protocol is used to specify
  74.             that an object instance having this syntax is to be
  75.             modified, the new value supplied via the management protocol
  76.             must precisely match the value presently held by the
  77.             instance.  If not, the management protocol set operation
  78.             fails with an error of `inconsistentValue'.  Otherwise, if
  79.             the current value is the maximum value of 2^31-1 (2147483647
  80.             decimal), then the value held by the instance is wrapped to
  81.             zero; otherwise, the value held by the instance is
  82.             incremented by one.  (Note that regardless of whether the
  83.             management protocol set operation succeeds, the variable-
  84.             binding in the request and response PDUs are identical.)
  85.  
  86.             The value of the ACCESS clause for objects having this
  87.             syntax is either `read-write' or `read-create'.  When an
  88.             instance of a columnar object having this syntax is created,
  89.             any value may be supplied via the management protocol.
  90.  
  91.             When the network management portion of the system is re-
  92.             initialized, the value of every object instance having this
  93.             syntax must either be incremented from its value prior to
  94.             the re-initialization, or (if the value prior to the re-
  95.             initialization is unknown) be set to a pseudo-randomly
  96.             generated value."
  97.     SYNTAX       INTEGER (0..2147483647)
  98.  
  99. AutonomousType ::= TEXTUAL-CONVENTION
  100.     STATUS       current
  101.     DESCRIPTION
  102.             "Represents an independently extensible type identification
  103.             value.  It may, for example, indicate a particular sub-tree
  104.             with further MIB definitions, or define a particular type of
  105.             protocol or hardware."
  106.     SYNTAX       OBJECT IDENTIFIER
  107.  
  108.  
  109. InstancePointer ::= TEXTUAL-CONVENTION
  110.     STATUS       obsolete
  111.     DESCRIPTION
  112.             "A pointer to either a specific instance of a MIB object or
  113.             a conceptual row of a MIB table in the managed device.  In
  114.             the latter case, by convention, it is the name of the
  115.             particular instance of the first accessible columnar object
  116.             in the conceptual row.
  117.  
  118.             The two uses of this textual convention are replaced by
  119.             VariablePointer and RowPointer, respectively."
  120.     SYNTAX       OBJECT IDENTIFIER
  121.  
  122.  
  123. VariablePointer ::= TEXTUAL-CONVENTION
  124.     STATUS       current
  125.     DESCRIPTION
  126.             "A pointer to a specific object instance.  For example,
  127.             sysContact.0 or ifInOctets.3."
  128.     SYNTAX       OBJECT IDENTIFIER
  129.  
  130.  
  131. RowPointer ::= TEXTUAL-CONVENTION
  132.     STATUS       current
  133.     DESCRIPTION
  134.             "Represents a pointer to a conceptual row.  The value is the
  135.             name of the instance of the first accessible columnar object
  136.             in the conceptual row.
  137.  
  138.             For example, ifIndex.3 would point to the 3rd row in the
  139.             ifTable (note that if ifIndex were not-accessible, then
  140.             ifDescr.3 would be used instead)."
  141.     SYNTAX       OBJECT IDENTIFIER
  142.  
  143. RowStatus ::= TEXTUAL-CONVENTION
  144.     STATUS       current
  145.     DESCRIPTION
  146.             "The RowStatus textual convention is used to manage the
  147.             creation and deletion of conceptual rows, and is used as the
  148.             value of the SYNTAX clause for the status column of a
  149.             conceptual row (as described in Section 7.7.1 of [2].)
  150.  
  151.             The status column has six defined values:
  152.  
  153.                  - `active', which indicates that the conceptual row is
  154.                  available for use by the managed device;
  155.  
  156.                  - `notInService', which indicates that the conceptual
  157.                  row exists in the agent, but is unavailable for use by
  158.                  the managed device (see NOTE below); 'notInService' has
  159.                  no implication regarding the internal consistency of
  160.                  the row, availability of resources, or consistency with
  161.                  the current state of the managed device;
  162.  
  163.                  - `notReady', which indicates that the conceptual row
  164.                  exists in the agent, but is missing information
  165.                  necessary in order to be available for use by the
  166.                  managed device (i.e., one or more required columns in
  167.                  the conceptual row have not been instanciated);
  168.  
  169.                  - `createAndGo', which is supplied by a management
  170.                  station wishing to create a new instance of a
  171.                  conceptual row and to have its status automatically set
  172.                  to active, making it available for use by the managed
  173.                  device;
  174.  
  175.                  - `createAndWait', which is supplied by a management
  176.                  station wishing to create a new instance of a
  177.                  conceptual row (but not make it available for use by
  178.                  the managed device); and,
  179.  
  180.                  - `destroy', which is supplied by a management station
  181.                  wishing to delete all of the instances associated with
  182.                  an existing conceptual row.
  183.  
  184.             Whereas five of the six values (all except `notReady') may
  185.             be specified in a management protocol set operation, only
  186.             three values will be returned in response to a management
  187.             protocol retrieval operation:  `notReady', `notInService' or
  188.             `active'.  That is, when queried, an existing conceptual row
  189.             has only three states:  it is either available for use by
  190.             the managed device (the status column has value `active');
  191.             it is not available for use by the managed device, though
  192.             the agent has sufficient information to attempt to make it
  193.             so (the status column has value `notInService'); or, it is
  194.             not available for use by the managed device, and an attempt
  195.             to make it so would fail because the agent has insufficient
  196.             information (the state column has value `notReady').
  197.  
  198.                                      NOTE WELL
  199.  
  200.                  This textual convention may be used for a MIB table,
  201.                  irrespective of whether the values of that table's
  202.                  conceptual rows are able to be modified while it is
  203.                  active, or whether its conceptual rows must be taken
  204.                  out of service in order to be modified.  That is, it is
  205.                  the responsibility of the DESCRIPTION clause of the
  206.                  status column to specify whether the status column must
  207.                  not be `active' in order for the value of some other
  208.                  column of the same conceptual row to be modified.  If
  209.                  such a specification is made, affected columns may be
  210.                  changed by an SNMP set PDU if the RowStatus would not
  211.                  be equal to `active' either immediately before or after
  212.                  processing the PDU.  In other words, if the PDU also
  213.                  contained a varbind that would change the RowStatus
  214.                  value, the column in question may be changed if the
  215.                  RowStatus was not equal to `active' as the PDU was
  216.                  received, or if the varbind sets the status to a value
  217.                  other than 'active'.
  218.  
  219.  
  220.             Also note that whenever any elements of a row exist, the
  221.             RowStatus column must also exist.
  222.  
  223.             To summarize the effect of having a conceptual row with a
  224.             status column having a SYNTAX clause value of RowStatus,
  225.             consider the following state diagram:
  226.  
  227.  
  228.                                          STATE
  229.               +--------------+-----------+-------------+-------------
  230.               |      A       |     B     |      C      |      D
  231.               |              |status col.|status column|
  232.               |status column |    is     |      is     |status column
  233.     ACTION    |does not exist|  notReady | notInService|  is active
  234. --------------+--------------+-----------+-------------+-------------
  235. set status    |noError    ->D|inconsist- |inconsistent-|inconsistent-
  236. column to     |       or     |   entValue|        Value|        Value
  237. createAndGo   |inconsistent- |           |             |
  238.               |         Value|           |             |
  239. --------------+--------------+-----------+-------------+-------------
  240. set status    |noError  see 1|inconsist- |inconsistent-|inconsistent-
  241. column to     |       or     |   entValue|        Value|        Value
  242. createAndWait |wrongValue    |           |             |
  243. --------------+--------------+-----------+-------------+-------------
  244. set status    |inconsistent- |inconsist- |noError      |noError
  245. column to     |         Value|   entValue|             |
  246. active        |              |           |             |
  247.               |              |     or    |             |
  248.               |              |           |             |
  249.               |              |see 2   ->D|see 8     ->D|          ->D
  250. --------------+--------------+-----------+-------------+-------------
  251. set status    |inconsistent- |inconsist- |noError      |noError   ->C
  252. column to     |         Value|   entValue|             |
  253. notInService  |              |           |             |
  254.               |              |     or    |             |      or
  255.               |              |           |             |
  256.               |              |see 3   ->C|          ->C|see 6
  257. --------------+--------------+-----------+-------------+-------------
  258. set status    |noError       |noError    |noError      |noError   ->A
  259. column to     |              |           |             |      or
  260. destroy       |           ->A|        ->A|          ->A|see 7
  261. --------------+--------------+-----------+-------------+-------------
  262. set any other |see 4         |noError    |noError      |see 5
  263. column to some|              |           |             |
  264. value         |              |      see 1|          ->C|          ->D
  265. --------------+--------------+-----------+-------------+-------------
  266.  
  267.             (1) goto B or C, depending on information available to the
  268.             agent.
  269.  
  270.             (2) if other variable bindings included in the same PDU,
  271.             provide values for all columns which are missing but
  272.             required, and all columns have acceptable values, then
  273.             return noError and goto D.
  274.  
  275.             (3) if other variable bindings included in the same PDU,
  276.             provide legal values for all columns which are missing but
  277.             required, then return noError and goto C.
  278.  
  279.             (4) at the discretion of the agent, the return value may be
  280.             either:
  281.  
  282.                  inconsistentName:  because the agent does not choose to
  283.                  create such an instance when the corresponding
  284.                  RowStatus instance does not exist, or
  285.  
  286.                  inconsistentValue:  if the supplied value is
  287.                  inconsistent with the state of some other MIB object's
  288.                  value, or
  289.  
  290.                  noError: because the agent chooses to create the
  291.                  instance.
  292.  
  293.             If noError is returned, then the instance of the status
  294.             column must also be created, and the new state is B or C,
  295.             depending on the information available to the agent.  If
  296.             inconsistentName or inconsistentValue is returned, the row
  297.             remains in state A.
  298.  
  299.             (5) depending on the MIB definition for the column/table,
  300.             either noError or inconsistentValue may be returned.
  301.  
  302.             (6) the return value can indicate one of the following
  303.             errors:
  304.  
  305.                  wrongValue: because the agent does not support
  306.                  notInService (e.g., an agent which does not support
  307.                  createAndWait), or
  308.  
  309.                  inconsistentValue: because the agent is unable to take
  310.                  the row out of service at this time, perhaps because it
  311.                  is in use and cannot be de-activated.
  312.  
  313.             (7) the return value can indicate the following error:
  314.  
  315.                  inconsistentValue: because the agent is unable to
  316.                  remove the row at this time, perhaps because it is in
  317.                  use and cannot be de-activated.
  318.  
  319.             (8) the transition to D can fail, e.g., if the values of the
  320.             conceptual row are inconsistent, then the error code would
  321.             be inconsistentValue.
  322.  
  323.             NOTE: Other processing of (this and other varbinds of) the
  324.             set request may result in a response other than noError
  325.             being returned, e.g., wrongValue, noCreation, etc.
  326.  
  327.  
  328.                               Conceptual Row Creation
  329.  
  330.             There are four potential interactions when creating a
  331.             conceptual row:  selecting an instance-identifier which is
  332.             not in use; creating the conceptual row; initializing any
  333.             objects for which the agent does not supply a default; and,
  334.             making the conceptual row available for use by the managed
  335.             device.
  336.  
  337.             Interaction 1: Selecting an Instance-Identifier
  338.  
  339.             The algorithm used to select an instance-identifier varies
  340.             for each conceptual row.  In some cases, the instance-
  341.             identifier is semantically significant, e.g., the
  342.             destination address of a route, and a management station
  343.             selects the instance-identifier according to the semantics.
  344.  
  345.             In other cases, the instance-identifier is used solely to
  346.             distinguish conceptual rows, and a management station
  347.             without specific knowledge of the conceptual row might
  348.             examine the instances present in order to determine an
  349.             unused instance-identifier.  (This approach may be used, but
  350.             it is often highly sub-optimal; however, it is also a
  351.             questionable practice for a naive management station to
  352.             attempt conceptual row creation.)
  353.  
  354.             Alternately, the MIB module which defines the conceptual row
  355.             might provide one or more objects which provide assistance
  356.             in determining an unused instance-identifier.  For example,
  357.             if the conceptual row is indexed by an integer-value, then
  358.             an object having an integer-valued SYNTAX clause might be
  359.             defined for such a purpose, allowing a management station to
  360.             issue a management protocol retrieval operation.  In order
  361.             to avoid unnecessary collisions between competing management
  362.             stations, `adjacent' retrievals of this object should be
  363.             different.
  364.  
  365.             Finally, the management station could select a pseudo-random
  366.             number to use as the index.  In the event that this index
  367.             was already in use and an inconsistentValue was returned in
  368.             response to the management protocol set operation, the
  369.             management station should simply select a new pseudo-random
  370.             number and retry the operation.
  371.  
  372.             A MIB designer should choose between the two latter
  373.             algorithms based on the size of the table (and therefore the
  374.             efficiency of each algorithm).  For tables in which a large
  375.             number of entries are expected, it is recommended that a MIB
  376.             object be defined that returns an acceptable index for
  377.             creation.  For tables with small numbers of entries, it is
  378.             recommended that the latter pseudo-random index mechanism be
  379.             used.
  380.  
  381.             Interaction 2: Creating the Conceptual Row
  382.  
  383.             Once an unused instance-identifier has been selected, the
  384.             management station determines if it wishes to create and
  385.             activate the conceptual row in one transaction or in a
  386.             negotiated set of interactions.
  387.  
  388.             Interaction 2a: Creating and Activating the Conceptual Row
  389.  
  390.             The management station must first determine the column
  391.             requirements, i.e., it must determine those columns for
  392.             which it must or must not provide values.  Depending on the
  393.             complexity of the table and the management station's
  394.             knowledge of the agent's capabilities, this determination
  395.             can be made locally by the management station.  Alternately,
  396.             the management station issues a management protocol get
  397.             operation to examine all columns in the conceptual row that
  398.             it wishes to create.  In response, for each column, there
  399.             are three possible outcomes:
  400.  
  401.                  - a value is returned, indicating that some other
  402.                  management station has already created this conceptual
  403.                  row.  We return to interaction 1.
  404.  
  405.                  - the exception `noSuchInstance' is returned,
  406.                  indicating that the agent implements the object-type
  407.                  associated with this column, and that this column in at
  408.                  least one conceptual row would be accessible in the MIB
  409.                  view used by the retrieval were it to exist. For those
  410.                  columns to which the agent provides read-create access,
  411.                  the `noSuchInstance' exception tells the management
  412.                  station that it should supply a value for this column
  413.                  when the conceptual row is to be created.
  414.  
  415.                  - the exception `noSuchObject' is returned, indicating
  416.                  that the agent does not implement the object-type
  417.                  associated with this column or that there is no
  418.                  conceptual row for which this column would be
  419.                  accessible in the MIB view used by the retrieval.  As
  420.                  such, the management station can not issue any
  421.                  management protocol set operations to create an
  422.                  instance of this column.
  423.  
  424.             Once the column requirements have been determined, a
  425.             management protocol set operation is accordingly issued.
  426.             This operation also sets the new instance of the status
  427.             column to `createAndGo'.
  428.  
  429.             When the agent processes the set operation, it verifies that
  430.             it has sufficient information to make the conceptual row
  431.             available for use by the managed device.  The information
  432.             available to the agent is provided by two sources:  the
  433.             management protocol set operation which creates the
  434.             conceptual row, and, implementation-specific defaults
  435.             supplied by the agent (note that an agent must provide
  436.             implementation-specific defaults for at least those objects
  437.             which it implements as read-only).  If there is sufficient
  438.             information available, then the conceptual row is created, a
  439.             `noError' response is returned, the status column is set to
  440.             `active', and no further interactions are necessary (i.e.,
  441.             interactions 3 and 4 are skipped).  If there is insufficient
  442.             information, then the conceptual row is not created, and the
  443.             set operation fails with an error of `inconsistentValue'.
  444.             On this error, the management station can issue a management
  445.             protocol retrieval operation to determine if this was
  446.             because it failed to specify a value for a required column,
  447.             or, because the selected instance of the status column
  448.             already existed.  In the latter case, we return to
  449.             interaction 1.  In the former case, the management station
  450.             can re-issue the set operation with the additional
  451.             information, or begin interaction 2 again using
  452.             `createAndWait' in order to negotiate creation of the
  453.             conceptual row.
  454.  
  455.                                      NOTE WELL
  456.  
  457.                  Regardless of the method used to determine the column
  458.                  requirements, it is possible that the management
  459.                  station might deem a column necessary when, in fact,
  460.                  the agent will not allow that particular columnar
  461.                  instance to be created or written.  In this case, the
  462.                  management protocol set operation will fail with an
  463.                  error such as `noCreation' or `notWritable'.  In this
  464.                  case, the management station decides whether it needs
  465.                  to be able to set a value for that particular columnar
  466.                  instance.  If not, the management station re-issues the
  467.                  management protocol set operation, but without setting
  468.                  a value for that particular columnar instance;
  469.                  otherwise, the management station aborts the row
  470.                  creation algorithm.
  471.  
  472.             Interaction 2b: Negotiating the Creation of the Conceptual
  473.             Row
  474.  
  475.             The management station issues a management protocol set
  476.             operation which sets the desired instance of the status
  477.             column to `createAndWait'.  If the agent is unwilling to
  478.             process a request of this sort, the set operation fails with
  479.             an error of `wrongValue'.  (As a consequence, such an agent
  480.             must be prepared to accept a single management protocol set
  481.             operation, i.e., interaction 2a above, containing all of the
  482.             columns indicated by its column requirements.)  Otherwise,
  483.             the conceptual row is created, a `noError' response is
  484.             returned, and the status column is immediately set to either
  485.             `notInService' or `notReady', depending on whether it has
  486.             sufficient information to (attempt to) make the conceptual
  487.             row available for use by the managed device.  If there is
  488.             sufficient information available, then the status column is
  489.             set to `notInService'; otherwise, if there is insufficient
  490.             information, then the status column is set to `notReady'.
  491.             Regardless, we proceed to interaction 3.
  492.  
  493.             Interaction 3: Initializing non-defaulted Objects
  494.  
  495.             The management station must now determine the column
  496.             requirements.  It issues a management protocol get operation
  497.             to examine all columns in the created conceptual row.  In
  498.             the response, for each column, there are three possible
  499.             outcomes:
  500.  
  501.                  - a value is returned, indicating that the agent
  502.                  implements the object-type associated with this column
  503.                  and had sufficient information to provide a value.  For
  504.                  those columns to which the agent provides read-create
  505.                  access (and for which the agent allows their values to
  506.                  be changed after their creation), a value return tells
  507.                  the management station that it may issue additional
  508.                  management protocol set operations, if it desires, in
  509.                  order to change the value associated with this column.
  510.  
  511.                  - the exception `noSuchInstance' is returned,
  512.                  indicating that the agent implements the object-type
  513.                  associated with this column, and that this column in at
  514.                  least one conceptual row would be accessible in the MIB
  515.                  view used by the retrieval were it to exist. However,
  516.                  the agent does not have sufficient information to
  517.                  provide a value, and until a value is provided, the
  518.                  conceptual row may not be made available for use by the
  519.                  managed device.  For those columns to which the agent
  520.                  provides read-create access, the `noSuchInstance'
  521.                  exception tells the management station that it must
  522.                  issue additional management protocol set operations, in
  523.                  order to provide a value associated with this column.
  524.  
  525.                  - the exception `noSuchObject' is returned, indicating
  526.                  that the agent does not implement the object-type
  527.                  associated with this column or that there is no
  528.                  conceptual row for which this column would be
  529.                  accessible in the MIB view used by the retrieval.  As
  530.                  such, the management station can not issue any
  531.                  management protocol set operations to create an
  532.                  instance of this column.
  533.  
  534.             If the value associated with the status column is
  535.             `notReady', then the management station must first deal with
  536.             all `noSuchInstance' columns, if any.  Having done so, the
  537.             value of the status column becomes `notInService', and we
  538.             proceed to interaction 4.
  539.  
  540.             Interaction 4: Making the Conceptual Row Available
  541.  
  542.             Once the management station is satisfied with the values
  543.             associated with the columns of the conceptual row, it issues
  544.             a management protocol set operation to set the status column
  545.             to `active'.  If the agent has sufficient information to
  546.             make the conceptual row available for use by the managed
  547.             device, the management protocol set operation succeeds (a
  548.             `noError' response is returned).  Otherwise, the management
  549.             protocol set operation fails with an error of
  550.             `inconsistentValue'.
  551.  
  552.                                      NOTE WELL
  553.  
  554.                  A conceptual row having a status column with value
  555.                  `notInService' or `notReady' is unavailable to the
  556.                  managed device.  As such, it is possible for the
  557.                  managed device to create its own instances during the
  558.                  time between the management protocol set operation
  559.                  which sets the status column to `createAndWait' and the
  560.                  management protocol set operation which sets the status
  561.                  column to `active'.  In this case, when the management
  562.                  protocol set operation is issued to set the status
  563.                  column to `active', the values held in the agent
  564.                  supersede those used by the managed device.
  565.  
  566.             If the management station is prevented from setting the
  567.             status column to `active' (e.g., due to management station
  568.             or network failure) the conceptual row will be left in the
  569.             `notInService' or `notReady' state, consuming resources
  570.             indefinitely.  The agent must detect conceptual rows that
  571.             have been in either state for an abnormally long period of
  572.             time and remove them.  It is the responsibility of the
  573.             DESCRIPTION clause of the status column to indicate what an
  574.             abnormally long period of time would be.  This period of
  575.             time should be long enough to allow for human response time
  576.             (including `think time') between the creation of the
  577.             conceptual row and the setting of the status to `active'.
  578.             In the absence of such information in the DESCRIPTION
  579.             clause, it is suggested that this period be approximately 5
  580.             minutes in length.  This removal action applies not only to
  581.             newly-created rows, but also to previously active rows which
  582.             are set to, and left in, the notInService state for a
  583.             prolonged period exceeding that which is considered normal
  584.             for such a conceptual row.
  585.  
  586.                              Conceptual Row Suspension
  587.  
  588.             When a conceptual row is `active', the management station
  589.             may issue a management protocol set operation which sets the
  590.             instance of the status column to `notInService'.  If the
  591.             agent is unwilling to do so, the set operation fails with an
  592.             error of `wrongValue' or `inconsistentValue'.  Otherwise,
  593.             the conceptual row is taken out of service, and a `noError'
  594.             response is returned.  It is the responsibility of the
  595.             DESCRIPTION clause of the status column to indicate under
  596.             what circumstances the status column should be taken out of
  597.             service (e.g., in order for the value of some other column
  598.             of the same conceptual row to be modified).
  599.  
  600.  
  601.                               Conceptual Row Deletion
  602.  
  603.             For deletion of conceptual rows, a management protocol set
  604.             operation is issued which sets the instance of the status
  605.             column to `destroy'.  This request may be made regardless of
  606.             the current value of the status column (e.g., it is possible
  607.             to delete conceptual rows which are either `notReady',
  608.             `notInService' or `active'.)  If the operation succeeds,
  609.             then all instances associated with the conceptual row are
  610.             immediately removed."
  611.     SYNTAX       INTEGER {
  612.                      -- the following two values are states:
  613.                      -- these values may be read or written
  614.                      active(1),
  615.                      notInService(2),
  616.  
  617.                      -- the following value is a state:
  618.                      -- this value may be read, but not written
  619.                      notReady(3),
  620.  
  621.                      -- the following three values are
  622.                      -- actions: these values may be written,
  623.                      --   but are never read
  624.                      createAndGo(4),
  625.                      createAndWait(5),
  626.                      destroy(6)
  627.                  }
  628.  
  629. TimeStamp ::= TEXTUAL-CONVENTION
  630.     STATUS       current
  631.     DESCRIPTION
  632.             "The value of the sysUpTime object at which a specific
  633.             occurrence happened.  The specific occurrence must be
  634.             defined in the description of any object defined using this
  635.             type.
  636.  
  637.             If sysUpTime is reset to zero as a result of a re-
  638.             initialization of the network management (sub)system, then
  639.             the values of all TimeStamp objects are also reset.
  640.             However, after approximately 497 days without a re-
  641.             initialization, the sysUpTime object will reach 2^^32-1 and
  642.             then increment around to zero; in this case, existing values
  643.             of TimeStamp objects do not change.  This can lead to
  644.             ambiguities in the value of TimeStamp objects."
  645.     SYNTAX       TimeTicks
  646.  
  647.  
  648. TimeInterval ::= TEXTUAL-CONVENTION
  649.     STATUS       current
  650.     DESCRIPTION
  651.             "A period of time, measured in units of 0.01 seconds."
  652.     SYNTAX       INTEGER (0..2147483647)
  653.  
  654. DateAndTime ::= TEXTUAL-CONVENTION
  655.     DISPLAY-HINT "2d-1d-1d,1d:1d:1d.1d,1a1d:1d"
  656.     STATUS       current
  657.     DESCRIPTION
  658.             "A date-time specification.
  659.  
  660.             field  octets  contents                  range
  661.             -----  ------  --------                  -----
  662.               1      1-2   year*                     0..65536
  663.               2       3    month                     1..12
  664.               3       4    day                       1..31
  665.               4       5    hour                      0..23
  666.               5       6    minutes                   0..59
  667.               6       7    seconds                   0..60
  668.                            (use 60 for leap-second)
  669.               7       8    deci-seconds              0..9
  670.               8       9    direction from UTC        '+' / '-'
  671.               9      10    hours from UTC*           0..13
  672.              10      11    minutes from UTC          0..59
  673.  
  674.             * Notes:
  675.             - the value of year is in network-byte order
  676.             - daylight saving time in New Zealand is +13
  677.  
  678.             For example, Tuesday May 26, 1992 at 1:30:15 PM EDT would be
  679.             displayed as:
  680.  
  681.                              1992-5-26,13:30:15.0,-4:0
  682.  
  683.             Note that if only local time is known, then timezone
  684.             information (fields 8-10) is not present."
  685.     SYNTAX       OCTET STRING (SIZE (8 | 11))
  686.  
  687.  
  688. StorageType ::= TEXTUAL-CONVENTION
  689.     STATUS       current
  690.     DESCRIPTION
  691.             "Describes the memory realization of a conceptual row.  A
  692.             row which is volatile(2) is lost upon reboot.  A row which
  693.             is either nonVolatile(3), permanent(4) or readOnly(5), is
  694.             backed up by stable storage.  A row which is permanent(4)
  695.             can be changed but not deleted.  A row which is readOnly(5)
  696.             cannot be changed nor deleted.
  697.  
  698.             If the value of an object with this syntax is either
  699.             permanent(4) or readOnly(5), it cannot be written.
  700.             Conversely, if the value is either other(1), volatile(2) or
  701.             nonVolatile(3), it cannot be modified to be permanent(4) or
  702.             readOnly(5).  (All illegal modifications result in a
  703.             'wrongValue' error.)
  704.  
  705.             Every usage of this textual convention is required to
  706.             specify the columnar objects which a permanent(4) row must
  707.             at a minimum allow to be writable."
  708.     SYNTAX       INTEGER {
  709.                      other(1),       -- eh?
  710.                      volatile(2),    -- e.g., in RAM
  711.                      nonVolatile(3), -- e.g., in NVRAM
  712.                      permanent(4),   -- e.g., partially in ROM
  713.                      readOnly(5)     -- e.g., completely in ROM
  714.                  }
  715.  
  716. TDomain ::= TEXTUAL-CONVENTION
  717.     STATUS       current
  718.     DESCRIPTION
  719.           "Denotes a kind of transport service.
  720.  
  721.           Some possible values, such as snmpUDPDomain, are defined in
  722.           the SNMPv2-TM MIB module.  Other possible values are defined
  723.           in other MIB modules."
  724.     REFERENCE    "The SNMPv2-TM MIB module is defined in RFC 1906."
  725.     SYNTAX       OBJECT IDENTIFIER
  726.  
  727.  
  728. TAddress ::= TEXTUAL-CONVENTION
  729.     STATUS       current
  730.     DESCRIPTION
  731.           "Denotes a transport service address.
  732.  
  733.           A TAddress value is always interpreted within the context of a
  734.           TDomain value.  Thus, each definition of a TDomain value must
  735.           be accompanied by a definition of a textual convention for use
  736.           with that TDomain.  Some possible textual conventions, such as
  737.           SnmpUDPAddress for snmpUDPDomain, are defined in the SNMPv2-TM
  738.           MIB module.  Other possible textual conventions are defined in
  739.           other MIB modules."
  740.     REFERENCE    "The SNMPv2-TM MIB module is defined in RFC 1906."
  741.     SYNTAX       OCTET STRING (SIZE (1..255))
  742.  
  743.  
  744. END
  745.