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
|
SO-MUX-MIB DEFINITIONS ::= BEGIN
--
-- Solid Optics EDFAMUX MIB
--
IMPORTS
MODULE-IDENTITY, enterprises, OBJECT-TYPE, Integer32 FROM SNMPv2-SMI
MODULE-COMPLIANCE,OBJECT-GROUP FROM SNMPv2-CONF
;
solidOptics MODULE-IDENTITY
LAST-UPDATED "202007030000Z"
ORGANIZATION "Solid Optics"
CONTACT-INFO
"Solid Optics EU
solid-optics.com
EMail: thijs@solid-optics.eu"
DESCRIPTION
"This MIB contains definition of the SNMP objects
and traps to interface with SO products."
REVISION "202007030000Z"
DESCRIPTION
"RFurch minor adjustments"
::= { enterprises 51628 }
edfaMux OBJECT IDENTIFIER ::= { solidOptics 1 }
--moniMux OBJECT IDENTIFIER ::= { solidOptics 2 }
---
--- EdfaMux definitions
---
dcmDistance OBJECT-TYPE
SYNTAX Integer32(1..999)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current dispersion in kilometers."
::= {edfaMux 1}
preEdfaSeqTable OBJECT-TYPE
SYNTAX SEQUENCE OF PreEdfaSeq
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table for iterator"
::= { edfaMux 2 }
preEdfaSeqEntry OBJECT-TYPE
SYNTAX PreEdfaSeq
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Descriptive and Status Information for the pre EDFA."
INDEX { preIndex }
::= {preEdfaSeqTable 1}
postEdfaSeqTable OBJECT-TYPE
SYNTAX SEQUENCE OF PostEdfaSeq
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table for iterator"
::= { edfaMux 3 }
postEdfaSeqEntry OBJECT-TYPE
SYNTAX PostEdfaSeq
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Descriptive and Status Information for the post EDFA."
INDEX { postIndex }
::= {postEdfaSeqTable 1}
PreEdfaSeq ::= SEQUENCE {
preIndex Integer32,
prePowerGainValue OCTET STRING,
prePowerIn OCTET STRING,
prePowerOut OCTET STRING,
preTemperature OCTET STRING
}
preIndex OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Column index."
::= { preEdfaSeqEntry 1}
prePowerGainValue OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Gain value in dBm."
::= { preEdfaSeqEntry 2 }
prePowerIn OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Power in in dBm"
::= { preEdfaSeqEntry 3 }
prePowerOut OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Power out in dBm."
::= { preEdfaSeqEntry 4 }
preTemperature OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current temperature in degrees Celsius."
::= { preEdfaSeqEntry 5 }
PostEdfaSeq ::= SEQUENCE {
postIndex Integer32,
postPowerGainValue OCTET STRING,
postPowerIn OCTET STRING,
postPowerOut OCTET STRING,
postTemperature OCTET STRING
}
postIndex OBJECT-TYPE
SYNTAX Integer32 (0..100)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Column index."
::= { postEdfaSeqEntry 1}
postPowerGainValue OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Gain value in dBm."
::= { postEdfaSeqEntry 2 }
postPowerIn OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Power in in dBm"
::= { postEdfaSeqEntry 3 }
postPowerOut OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Power out in dBm."
::= { postEdfaSeqEntry 4 }
postTemperature OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Current temperature in degrees Celsius."
::= { postEdfaSeqEntry 5 }
-- conformance information
edfaConformance OBJECT IDENTIFIER ::= { edfaMux 4 }
edfaGroups OBJECT IDENTIFIER ::= { edfaConformance 1 }
edfaCompliances OBJECT IDENTIFIER ::= { edfaConformance 2 }
-- compliance statements
edfaCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for SNMP SolidOptics EDFA devices"
MODULE -- this module
MANDATORY-GROUPS { edfaGroup }
-- here we can add optional groups!
-- GROUP edfaGroup
-- DESCRIPTION
-- "All EDFA values must be in this group"
::= { edfaCompliances 1 }
-- units of conformance
-- groups
edfaGroup OBJECT-GROUP
OBJECTS {
dcmDistance, prePowerGainValue, prePowerIn, prePowerOut, preTemperature,
postPowerGainValue, postPowerIn, postPowerOut, postTemperature
}
STATUS current
DESCRIPTION
"A collection of objects"
::= { edfaGroups 1 }
END
|