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
|
--
-- Juniper Enterprise Specific MIB: FRU management for OTN Equipments
--
-- Copyright (c) 2012-2013, Juniper Networks, Inc.
-- All rights reserved.
--
-- The contents of this document are subject to change without notice.
--
JUNIPER-FRU-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
Integer32
FROM SNMPv2-SMI
TEXTUAL-CONVENTION
FROM SNMPv2-TC
jnxFruMibRoot, jnxFruTraps
FROM JUNIPER-SMI;
jnxFruMib MODULE-IDENTITY
LAST-UPDATED "201211131414Z" -- Tue Nov 13 14:14:51 PST 2012
ORGANIZATION "Juniper Networks, Inc."
CONTACT-INFO
" Juniper Technical Assistance Center
Juniper Networks, Inc.
1133 Innovation Way
Sunnyvale, CA 94089
E-mail: support@juniper.net"
DESCRIPTION
"This MIB module defines objects used for managing the
OTN FRU's for Juniper products."
REVISION "201201260000Z"
DESCRIPTION
"Initial revision."
::= { jnxFruMibRoot 1 }
--
-- Textual Conventions
--
JnxFruAdminStates ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Admin states for a FRU"
SYNTAX INTEGER {
inService(1),
outOfService(2)
}
JnxFruOperStates ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "Operation states for a FRU"
SYNTAX INTEGER {
unEquipped(1), -- no FRU
init(2), -- init state
normal(3), -- normal state
mismatched(4), -- does not match configured FRU
fault(5), -- fru is in fault state
swul(6) -- ISSU Software upload state
}
jnxFruCfg OBJECT IDENTIFIER ::= { jnxFruMib 1 }
jnxFruCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF JnxFruCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about the otn FRU's. "
::= { jnxFruCfg 1 }
jnxFruCfgEntry OBJECT-TYPE
SYNTAX JnxFruCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about the otn FRU's."
INDEX { jnxFruCfgContentsIndex, jnxFruCfgL1Index,
jnxFruCfgL2Index, jnxFruCfgL3Index }
::= { jnxFruCfgTable 1 }
JnxFruCfgEntry ::=
SEQUENCE {
jnxFruCfgContentsIndex Integer32,
jnxFruCfgL1Index Integer32,
jnxFruCfgL2Index Integer32,
jnxFruCfgL3Index Integer32,
jnxFruCfgType OBJECT IDENTIFIER,
jnxFruCfgAdminState JnxFruAdminStates,
jnxFruCfgOperState JnxFruOperStates
}
jnxFruCfgContentsIndex OBJECT-TYPE
SYNTAX Integer32 (1..'7fffffff'h)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The associated jnxContentsContainerIndex in the
jnxContentsTable."
::= { jnxFruCfgEntry 1 }
jnxFruCfgL1Index OBJECT-TYPE
SYNTAX Integer32 (0..'7fffffff'h)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The level one index associated with this
subject. Zero if unavailable or inapplicable."
::= { jnxFruCfgEntry 2 }
jnxFruCfgL2Index OBJECT-TYPE
SYNTAX Integer32 (0..'7fffffff'h)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The level two index associated with this
subject. Zero if unavailable or inapplicable."
::= { jnxFruCfgEntry 3 }
jnxFruCfgL3Index OBJECT-TYPE
SYNTAX Integer32 (0..'7fffffff'h)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"The level three index associated with this
subject. Zero if unavailable or inapplicable."
::= { jnxFruCfgEntry 4 }
jnxFruCfgType OBJECT-TYPE
SYNTAX OBJECT IDENTIFIER
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The object ID for this FRU"
::= { jnxFruCfgEntry 5 }
jnxFruCfgAdminState OBJECT-TYPE
SYNTAX JnxFruAdminStates
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The Administrative state of this FRU"
::= { jnxFruCfgEntry 6 }
jnxFruCfgOperState OBJECT-TYPE
SYNTAX JnxFruOperStates
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Operational state of this FRU"
::= { jnxFruCfgEntry 7 }
--
-- Traps for FRU config
--
-- This can be moved to jnx-chassis.mib
jnxFruNotifMismatch NOTIFICATION-TYPE
OBJECTS { jnxFruCfgContentsIndex,
jnxFruCfgL1Index,
jnxFruCfgL2Index,
jnxFruCfgL3Index,
jnxFruCfgType
}
STATUS current
DESCRIPTION
"A jnxFruInsertion trap signifies that the SNMP
entity, acting in an agent role, has detected that
the specified FRU (Field Replaceable Unit)
inserted into the chassis does not match what was
configured."
::= { jnxFruTraps 1 }
jnxFruNotifAdminStatus NOTIFICATION-TYPE
OBJECTS { jnxFruCfgContentsIndex,
jnxFruCfgL1Index,
jnxFruCfgL2Index,
jnxFruCfgL3Index,
jnxFruCfgAdminState
}
STATUS current
DESCRIPTION
"Notification of the Administrative state of the otn interface"
::= { jnxFruTraps 2 }
jnxFruNotifOperStatus NOTIFICATION-TYPE
OBJECTS { jnxFruCfgContentsIndex,
jnxFruCfgL1Index,
jnxFruCfgL2Index,
jnxFruCfgL3Index,
jnxFruCfgOperState
}
STATUS current
DESCRIPTION
"Notification of Operational state of the otn interface"
::= { jnxFruTraps 3 }
END
|