summaryrefslogtreecommitdiff
path: root/MIBS/mrv/NBS-OPTIC-MIB
blob: fa829be6365174e1d62a9fb8263de69c9f39d2a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221

NBS-OPTIC-MIB  DEFINITIONS ::= BEGIN

IMPORTS

    OBJECT-TYPE, MODULE-IDENTITY, OBJECT-IDENTITY
        FROM SNMPv2-SMI

    InterfaceIndex
        FROM IF-MIB

    nbs
        FROM NBS-MIB
    ;

nbsOpticMib  MODULE-IDENTITY
    LAST-UPDATED "201209260000Z"  -- Sep 26, 2012
    ORGANIZATION  "NBS"
    CONTACT-INFO
      "For technical support, please contact your service channel"

    DESCRIPTION
      "Information Base for common fiber optic features."
    ::= { nbs 213 }

-- *******************************************************************
-- Groups in NBS-OPTIC-MIB
-- *******************************************************************

nbsOpticPortGrp OBJECT-IDENTITY
    STATUS      current
    DESCRIPTION
       "For describing fiber optic ports."
    ::= { nbsOpticMib 1 }


-- ********************************************************************
--
-- nbsOpticPortGrp
--
-- ********************************************************************

nbsOpticPortTableSize OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
       "The number of fiber optic ports in this system."
    ::= { nbsOpticPortGrp 1 }

nbsOpticPortTable OBJECT-TYPE
    SYNTAX      SEQUENCE OF NbsOpticPortEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
       "List of all fiber optic ports in this system."
    ::= { nbsOpticPortGrp 2 }

nbsOpticPortEntry      OBJECT-TYPE
    SYNTAX      NbsOpticPortEntry
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
       "A particular fiber optic port."
    INDEX { nbsOpticPortNdx }
    ::= { nbsOpticPortTable 1 }

NbsOpticPortEntry ::= SEQUENCE {
    nbsOpticPortNdx               InterfaceIndex,
    nbsOpticPortTxStatusAdmin     INTEGER,
    nbsOpticPortTxStatusOper      INTEGER,
    nbsOpticPortRxStatusAdmin     INTEGER,
    nbsOpticPortRxStatusOper      INTEGER,
    nbsOpticPortConnector         INTEGER,
    nbsOpticPortPolish            INTEGER,
    nbsOpticPortFiberMode         INTEGER
}

nbsOpticPortNdx      OBJECT-TYPE
    SYNTAX      InterfaceIndex
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
       "ifIndex-like unique id of this port."
    ::= { nbsOpticPortEntry 1 }

nbsOpticPortTxStatusAdmin OBJECT-TYPE
    SYNTAX      INTEGER {
        notSupported (1),
        outOfService (2),
        inService    (3)
    }
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
       "Persistent. This object is used to administratively disable or
        enable the Transmitter of this port.  It is an alias to the
        nbsCmmcPortEnableAdmin object.

        If the transmitter cannot be disabled by user, this object is
        notSupported(1).

        If the user wishes to disable this transmitter, the user should
        set this to outOfService(2). This is equivalent to setting
        nbsCmmcPortEnableAdmin to disable(2).  This action should cause
        the mib2 object ifAdminStatus to go down(2).

        If the user wishes to enable this transmitter, the user should
        set this to inService(3). If nothing else remains disabled,
        this should return the mib2 object ifAdminStatus to up(1)."
    ::= { nbsOpticPortEntry 21 }

nbsOpticPortTxStatusOper OBJECT-TYPE
    SYNTAX      INTEGER {
        notSupported (1),
        outOfService (2),
        inService    (3)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
       "This object indicates whether this port's transmitter is
        currently enabled or disabled.  It is an alias to the object
        nbsCmmcPortEnableOper.

        If the transmitter cannot be independently disabled, this
        object is notSupported(1).

        If the transmitter is currently disabled, this value will be
        outOfService(2).

        If the transmitter is currently enabled, this value will be
        inService(3)."
    ::= { nbsOpticPortEntry 22 }

nbsOpticPortRxStatusAdmin OBJECT-TYPE
    SYNTAX      INTEGER {
        notSupported (1),
        outOfService (2),
        inService    (3)
    }
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
       "Persistent. This object is used to administratively disable or
        enable the receiver of this port.

        If the receiver cannot be selectively disabled by user, this
        object is notSupported(1).

        If the user wishes to disable this receiver, the user should
        set this to outOfService(2). This action should also set the
        mib2 object ifAdminStatus to down(2).

        If the user wishes to enable this receiver, the user should
        set this to inService(3). If nothing else remains disabled,
        this should return the mib2 object ifAdminStatus to up(1)."
    ::= { nbsOpticPortEntry 31 }

nbsOpticPortRxStatusOper OBJECT-TYPE
    SYNTAX      INTEGER {
        notSupported (1),
        outOfService (2),
        inService    (3)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
       "This object indicates whether this port's receiver is
        currently enabled or disabled.

        If the receiver cannot be independently disabled, this
        object is notSupported(1).

        If the receiver is currently disabled, this value will be
        outOfService(2).

        If the receiver is currently enabled, this value will be
        inService(3)."
    ::= { nbsOpticPortEntry 32 }

nbsOpticPortConnector   OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
       "This object indicates the physical connector to the port.  It
        is an alias to the object nbsCmmcPortConnector, and the list of
        connector types is enumerated there."
    ::= { nbsOpticPortEntry 41 }

nbsOpticPortPolish   OBJECT-TYPE
    SYNTAX      INTEGER {
        notSupported (1),
        pc           (2),
        upc          (3),
        apc          (4)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
       "This object indicates the terminal polish."
    ::= { nbsOpticPortEntry 42 }

nbsOpticPortFiberMode   OBJECT-TYPE
    SYNTAX      INTEGER {
        notSupported (1),
        reserved2    (2),
        reserved3    (3),
        singleMode   (4),
        multiMode    (5)
    }
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
       "This object indicates the modality of the fiber.  It is an
        alias of nbsCmmcPortMedium"
    ::= { nbsOpticPortEntry 51 }


END