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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
|
ARRIS-D5-DVB-PSIG-MIB DEFINITIONS ::= BEGIN
IMPORTS
enterprises, MODULE-IDENTITY, OBJECT-TYPE, Unsigned32, IpAddress
FROM SNMPv2-SMI
TEXTUAL-CONVENTION, RowStatus, DisplayString
FROM SNMPv2-TC
OBJECT-GROUP, MODULE-COMPLIANCE
FROM SNMPv2-CONF
arrisD5UEQam
FROM ARRIS-MIB;
d5DvbCasPsigMuxMib MODULE-IDENTITY
LAST-UPDATED "201002240000Z" -- 24th Feb 2010
ORGANIZATION "Arris International"
CONTACT-INFO
" Network Management
Postal: Arris International.
4300 Cork Airport Business Park
Cork Airport, Kinsale Road
Cork, Ireland.
Tel: +353 21 7305 800
Fax: +353 21 4321 972"
DESCRIPTION
"This MIB manages the PSIG interface software on the Arris D5 WAN."
::= { arrisD5UEQam 9 }
d5DvbCasPsigMuxObjects OBJECT IDENTIFIER ::= { d5DvbCasPsigMuxMib 1 }
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
-- PSIG interface table
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
d5DvbCasPsigTable OBJECT-TYPE
SYNTAX SEQUENCE OF D5DvbCasPsigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table stores the PSIG interfaces on the MUX(D5)"
::= { d5DvbCasPsigMuxObjects 1 }
d5DvbCasPsigEntry OBJECT-TYPE
SYNTAX D5DvbCasPsigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { d5PsigName }
::= { d5DvbCasPsigTable 1 }
D5DvbCasPsigEntry ::= SEQUENCE {
d5PsigName DisplayString,
d5PsigTcpPort Unsigned32,
d5PsigSrcIp IpAddress,
d5PsigRowStatus RowStatus,
d5PsigSessionNum Unsigned32,
d5PsigNumChannels Unsigned32,
d5PsigNumStreams Unsigned32,
d5PsigNumSections Unsigned32
}
d5PsigName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"DVB psig name to be used to identify psig locally."
::= { d5DvbCasPsigEntry 1 }
d5PsigTcpPort OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Tcp port over which connection with Psig is to be established."
::= { d5DvbCasPsigEntry 2 }
d5PsigSrcIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"IP source address of Psig."
::= { d5DvbCasPsigEntry 3 }
d5PsigRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The RowStatus for controlling entries in this table."
::= { d5DvbCasPsigEntry 4 }
d5PsigSessionNum OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Session-number of this PSIG interface"
::= { d5DvbCasPsigEntry 5 }
d5PsigNumChannels OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number channels configured on this PSIG interface"
::= { d5DvbCasPsigEntry 6 }
d5PsigNumStreams OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of streams configured on this PSIG interface"
::= { d5DvbCasPsigEntry 7 }
d5PsigNumSections OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of sections configured on this PSIG interface"
::= { d5DvbCasPsigEntry 8 }
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
-- PSIG channel table
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
d5DvbCasPsigChannelTable OBJECT-TYPE
SYNTAX SEQUENCE OF D5DvbCasPsigChannel
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table stores status information for PSIG channels that are
configured on the PSIG interfaces of the MUX(D5)"
::= { d5DvbCasPsigMuxObjects 2 }
d5DvbCasPsigChannel OBJECT-TYPE
SYNTAX D5DvbCasPsigChannel
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { d5PsigChanPsigName,d5PsigChanChannelId }
::= { d5DvbCasPsigChannelTable 1 }
D5DvbCasPsigChannel ::= SEQUENCE {
d5PsigChanPsigName DisplayString,
d5PsigChanChannelId Unsigned32,
d5PsigChanNetworkId Unsigned32,
d5PsigChanTsId Unsigned32,
d5PsigChanTcpPort Unsigned32,
d5PsigChanNumStreams Unsigned32
}
d5PsigChanPsigName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DVB psig name to be used to identify psig locally."
::= { d5DvbCasPsigChannel 1 }
d5PsigChanChannelId OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Channel identifier reference for the PSIG channel connection."
::= { d5DvbCasPsigChannel 2 }
d5PsigChanNetworkId OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"NetworkId which is referenced by the PSIG channel connection."
::= { d5DvbCasPsigChannel 3 }
d5PsigChanTsId OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TransportStreamId which is referenced by the PSIG channel connection."
::= { d5DvbCasPsigChannel 4 }
d5PsigChanTcpPort OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Tcp port over which PSIG channel connection is established."
::= { d5DvbCasPsigChannel 5 }
d5PsigChanNumStreams OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of streams configured on the PSIG channel connection."
::= { d5DvbCasPsigChannel 6 }
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
-- PSIG stream table
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
d5DvbCasPsigStreamTable OBJECT-TYPE
SYNTAX SEQUENCE OF D5DvbCasPsigStream
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table stores status information for PSIG streams that are
configured on the PSIG interfaces of the MUX(D5)"
::= { d5DvbCasPsigMuxObjects 3 }
d5DvbCasPsigStream OBJECT-TYPE
SYNTAX D5DvbCasPsigStream
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
""
INDEX { d5PsigStrPsigName,d5PsigStrChannelId,d5PsigStrPid }
::= { d5DvbCasPsigStreamTable 1 }
D5DvbCasPsigStream ::= SEQUENCE {
d5PsigStrPsigName DisplayString,
d5PsigStrChannelId Unsigned32,
d5PsigStrPid Unsigned32,
d5PsigStrStreamId Unsigned32,
d5PsigStrNetworkId Unsigned32,
d5PsigStrTsId Unsigned32,
d5PsigStrTcpPort Unsigned32,
d5PsigStrNumSections Unsigned32
}
d5PsigStrPsigName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"DVB psig name to be used to identify psig locally."
::= { d5DvbCasPsigStream 1 }
d5PsigStrChannelId OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Channel identifier reference for the PSIG stream."
::= { d5DvbCasPsigStream 2 }
d5PsigStrPid OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"PID which is referenced by the PSIG stream."
::= { d5DvbCasPsigStream 3 }
d5PsigStrStreamId OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"stream identifier reference for the PSIG stream."
::= { d5DvbCasPsigStream 4 }
d5PsigStrNetworkId OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"NetworkId which is referenced by the PSIG stream connection."
::= { d5DvbCasPsigStream 5 }
d5PsigStrTsId OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TransportStreamId which is referenced by the PSIG stream connection."
::= { d5DvbCasPsigStream 6 }
d5PsigStrTcpPort OBJECT-TYPE
SYNTAX Unsigned32 (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Tcp port over which PSIG stream connection is established."
::= { d5DvbCasPsigStream 7 }
d5PsigStrNumSections OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of sections configured on the PSIG stream."
::= { d5DvbCasPsigStream 8 }
d5DvbCasPsigGlobalConfigObjects OBJECT IDENTIFIER ::= { d5DvbCasPsigMuxObjects 4 }
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
-- PSIG : Global configuration settings
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
d5DvbCasPsigGlobalConfigGroup OBJECT IDENTIFIER ::= { d5DvbCasPsigGlobalConfigObjects 1 }
d5DvbCasPsigMaxChannels OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum number of PSIG channels which can concurrently supported
across all interfaces on the MUX(D5)."
::= { d5DvbCasPsigGlobalConfigGroup 1 }
d5DvbCasPsigMaxStreams OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum number of PSIG streams which can concurrently supported
on a single PSIG channel."
::= { d5DvbCasPsigGlobalConfigGroup 2 }
d5DvbCasPsigMaxSections OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum number of sections which can concurrently supported
on a single PSIG stream."
::= { d5DvbCasPsigGlobalConfigGroup 3 }
END
|