SMUX-MIB.txt
上传用户:wxp200602
上传日期:2007-10-30
资源大小:4028k
文件大小:4k
源码类别:

SNMP编程

开发平台:

Unix_Linux

  1. SMUX-MIB DEFINITIONS ::= BEGIN
  2. IMPORTS
  3.         enterprises
  4.                 FROM RFC1155-SMI
  5.         OBJECT-TYPE
  6.                 FROM RFC1212;
  7. unix    OBJECT IDENTIFIER ::= { enterprises 4 }
  8. smux    OBJECT IDENTIFIER ::= { unix 4 }
  9. smuxPeerTable   OBJECT-TYPE
  10.         SYNTAX  SEQUENCE OF SmuxPeerEntry
  11.         ACCESS  not-accessible
  12.         STATUS  mandatory
  13.         DESCRIPTION
  14.             "The SMUX peer table."
  15.         ::= { smux 1 }
  16. smuxPeerEntry   OBJECT-TYPE
  17.         SYNTAX  SmuxPeerEntry
  18.         ACCESS  not-accessible
  19.         STATUS  mandatory
  20.         DESCRIPTION
  21.             "An entry in the SMUX peer table."
  22.         INDEX   { smuxPindex }
  23.         ::= { smuxPeerTable 1}
  24. SmuxPeerEntry ::=
  25.     SEQUENCE {
  26.         smuxPindex
  27.             INTEGER,
  28.         smuxPidentity
  29.             OBJECT IDENTIFIER,
  30.         smuxPdescription
  31.             DisplayString,
  32.         smuxPstatus
  33.             INTEGER
  34.     }
  35. smuxPindex      OBJECT-TYPE
  36.         SYNTAX  INTEGER
  37.         ACCESS  read-only
  38.         STATUS  mandatory
  39.         DESCRIPTION
  40.             "An index which uniquely identifies a SMUX peer."
  41.         ::= { smuxPeerEntry 1 }
  42. smuxPidentity   OBJECT-TYPE
  43.         SYNTAX  OBJECT IDENTIFIER
  44.         ACCESS  read-only
  45.         STATUS  mandatory
  46.         DESCRIPTION
  47.             "The authoritative designation for a SMUX peer."
  48.         ::= { smuxPeerEntry 2 }
  49. smuxPdescription OBJECT-TYPE
  50.         SYNTAX  DisplayString (SIZE (0..255))
  51.         ACCESS  read-only
  52.         STATUS  mandatory
  53.         DESCRIPTION
  54.             "A human-readable description of a SMUX peer."
  55.         ::= { smuxPeerEntry 3 }
  56. smuxPstatus     OBJECT-TYPE
  57.         SYNTAX  INTEGER { valid(1), invalid(2), connecting(3) }
  58.         ACCESS  read-write
  59.         STATUS  mandatory
  60.         DESCRIPTION
  61.             "The type of SMUX peer.
  62.             Setting this object to the value invalid(2) has
  63.             the effect of invaliding the corresponding entry
  64.             in the smuxPeerTable.  It is an implementation-
  65.             specific matter as to whether the agent removes an
  66.             invalidated entry from the table.  Accordingly,
  67.             management stations must be prepared to receive
  68.             tabular information from agents that correspond to
  69.             entries not currently in use.  Proper
  70.             interpretation of such entries requires
  71.             examination of the relative smuxPstatus object."
  72.         ::= { smuxPeerEntry 4 }
  73. smuxTreeTable   OBJECT-TYPE
  74.         SYNTAX  SEQUENCE OF SmuxTreeEntry
  75.         ACCESS  not-accessible
  76.         STATUS  mandatory
  77.         DESCRIPTION
  78.             "The SMUX tree table."
  79.         ::= { smux 2 }
  80. smuxTreeEntry   OBJECT-TYPE
  81.         SYNTAX  SmuxTreeEntry
  82.         ACCESS  not-accessible
  83.         STATUS  mandatory
  84.         DESCRIPTION
  85.             "An entry in the SMUX tree table."
  86.         INDEX   { smuxTsubtree, smuxTpriority }
  87.         ::= { smuxTreeTable 1}
  88. SmuxTreeEntry ::=
  89.     SEQUENCE {
  90.         smuxTsubtree
  91.             OBJECT IDENTIFIER,
  92.         smuxTpriority
  93.             INTEGER,
  94.         smuxTindex
  95.             INTEGER,
  96.         smuxTstatus
  97.             INTEGER
  98.     }
  99. smuxTsubtree    OBJECT-TYPE
  100.         SYNTAX  OBJECT IDENTIFIER
  101.         ACCESS  read-only
  102.         STATUS  mandatory
  103.         DESCRIPTION
  104.             "The MIB subtree being exported by a SMUX peer."
  105.         ::= { smuxTreeEntry 1 }
  106. smuxTpriority OBJECT-TYPE
  107.         SYNTAX  INTEGER (0..'07fffffff'h)
  108.         ACCESS  read-only
  109.         STATUS  mandatory
  110.         DESCRIPTION
  111.             "The SMUX peer's priority when exporting the MIB
  112.             subtree."
  113.         ::= { smuxTreeEntry 2 }
  114. smuxTindex OBJECT-TYPE
  115.         SYNTAX  INTEGER
  116.         ACCESS  read-only
  117.         STATUS  mandatory
  118.         DESCRIPTION
  119.             "The SMUX peer's identity."
  120.         ::= { smuxTreeEntry 3 }
  121. smuxTstatus     OBJECT-TYPE
  122.         SYNTAX  INTEGER { valid(1), invalid(2) }
  123.         ACCESS  read-write
  124.         STATUS  mandatory
  125.         DESCRIPTION
  126.             "The type of SMUX tree.
  127.             Setting this object to the value invalid(2) has
  128.             the effect of invaliding the corresponding entry
  129.             in the smuxTreeTable.  It is an implementation-
  130.             specific matter as to whether the agent removes an
  131.             invalidated entry from the table.  Accordingly,
  132.             management stations must be prepared to receive
  133.             tabular information from agents that correspond to
  134.             entries not currently in use.  Proper
  135.             interpretation of such entries requires
  136.             examination of the relative smuxTstatus object."
  137.         ::= { smuxTreeEntry 4 }
  138. END