~ubuntu-branches/ubuntu/wily/net-snmp/wily-proposed

« back to all changes in this revision

Viewing changes to mibs/SMUX-MIB.txt

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2010-06-28 14:59:36 UTC
  • mfrom: (1.2.3 upstream) (1.1.12 sid)
  • Revision ID: james.westby@ubuntu.com-20100628145936-cbiallic69pn044g
Tags: 5.4.3~dfsg-1ubuntu1
* Merge from debian unstable.  Remaining changes:
  - Set Ubuntu maintainer address.
  - net-snmp-config: Use bash. (LP: #104738)
  - Removed multiuser option when calling update-rc.d. (LP: #254261)
  - debian/snmpd.init: LSBify the init script.
  - debian/patches/52_fix_snmpcmd_1_typo.patch: Adjust a typo in snmpcmd.1
    (LP: #250459)
  - debian/snmpd.postinst: source debconf before doing work, LP: #589056
  - debian/snmp.preinst, debian/snmp.prerm: kill any/all processes owned by
    snmp user before install/uninstall, LP: #573391
  - Add apport hook (LP: #533603):
  - debian/{snmp,snmpd}.apport: Added.
  - debian/control: Build-depends on dh-apport.
  - debian/rules: 
    + Add --with apport.
    + override_dh_apport to install hook on snmpd package only.
 * Dropped patches:
   - debian/patches/99-fix-ubuntu-div0.patch: Fix dvision by zero.. 

Show diffs side-by-side

added added

removed removed

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