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
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
|
-- ====================================================================
-- Copyright (C) 2007 by HUAWEI TECHNOLOGIES. All rights reserved.
--
-- Description: Huawei IPHC MIB Definition
-- Reference:
-- Version: V1.0
-- History:
-- wanglili create first version v1.0
-- =====================================================================
HUAWEI-IPHC-MIB DEFINITIONS ::= BEGIN
IMPORTS
hwDatacomm
FROM HUAWEI-MIB
OBJECT-TYPE, MODULE-IDENTITY, Counter64, Integer32, NOTIFICATION-TYPE
FROM SNMPv2-SMI -- [RFC2578]
RowStatus, TEXTUAL-CONVENTION
FROM SNMPv2-TC -- [RFC2579]
OBJECT-GROUP, MODULE-COMPLIANCE, NOTIFICATION-GROUP
FROM SNMPv2-CONF -- [RFC2580]
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB -- [RFC3411]
ifIndex
FROM RFC1213-MIB
ifName
FROM IF-MIB -- [RFC2233]
;
hwIphcMIB MODULE-IDENTITY
LAST-UPDATED "200707230000Z"
ORGANIZATION
"Huawei Technologies Co., Ltd."
CONTACT-INFO
"R&D BeiJing, Huawei Technologies co.,Ltd.
Huawei Bld.,NO.3 Xinxi Rd.,
Shang-Di Information Industry Base,
Hai-Dian District Beijing P.R. China
Zip:100085
Http://www.huawei.com
E-mail:support@huawei.com"
DESCRIPTION
"HUAWEI-IPHC-MIB is a private MIB defined by Huawei.
It describes the configurations, configuration status,
and statistics of IP packet header compression.
"
::= { hwDatacomm 154 }
--
--Textual conventions
--
--HWCompressType
HWCompressType ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The Compress type:
withoutCompress(1),
enableTcpCompress(2),
enableRtpCompress(3),
enableEcRtpCompress(4),
enableUdpCompressOnly(5),
enableUdpandRtpCompressOnly(6)
"
SYNTAX INTEGER {
withoutCompress(1),
enableTcpCompress(2),
enableRtpCompress(3),
enableEcRtpCompress(4),
enableUdpCompressOnly(5),
enableUdpandRtpCompressOnly(6)
}
--Compress packet in ietf-format or not
HWCompressFormat ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"Compress packets in ietf-format(defined in RFC2507) or not
"
SYNTAX INTEGER {
ietf(1),
nonstandard(2)
}
--
-- Config Node definitions
--
hwIphcInfoObjects OBJECT IDENTIFIER ::= { hwIphcMIB 1 }
hwIphcTcpConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwIphcTcpConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to configure the parameters of IP/TCP header compression."
::= { hwIphcInfoObjects 1 }
hwIphcTcpConfigEntry OBJECT-TYPE
SYNTAX HwIphcTcpConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in this table."
INDEX { hwIphcTcpIfIndex }
::= { hwIphcTcpConfigTable 1 }
HwIphcTcpConfigEntry ::=
SEQUENCE {
hwIphcTcpIfIndex
Integer32,
hwIphcTcpEnable
HWCompressType,
hwIphcTcpConnnectionNumber
Integer32,
hwIphcTcpRowStatus
RowStatus
}
hwIphcTcpIfIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index of the interface enabled with IP/TCP header compression, the same as IfIndex of this interface. "
::= { hwIphcTcpConfigEntry 1 }
hwIphcTcpEnable OBJECT-TYPE
SYNTAX HWCompressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Identifies whether IP/TCP header compression is enabled on the interface. The default value is 2."
::= { hwIphcTcpConfigEntry 2 }
hwIphcTcpConnnectionNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The maximum number of IP/TCP header compression sessions on the interface.The default value is 16."
::= { hwIphcTcpConfigEntry 3 }
hwIphcTcpRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Row status."
::= { hwIphcTcpConfigEntry 4 }
hwIphcTcpConfigEffectTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwIphcTcpConfigEffectEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table lists the valid parameters of IP/TCP header compression on the interface after negotiation with the peer interface. "
::= { hwIphcInfoObjects 2 }
hwIphcTcpConfigEffectEntry OBJECT-TYPE
SYNTAX HwIphcTcpConfigEffectEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in this table."
INDEX { hwIphcTcpIfIndex }
::= { hwIphcTcpConfigEffectTable 1 }
HwIphcTcpConfigEffectEntry ::=
SEQUENCE {
hwIphcTcpEffectEnable
HWCompressType,
hwIphcTcpEffectConnnectionNumber
Integer32
}
hwIphcTcpEffectEnable OBJECT-TYPE
SYNTAX HWCompressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies whether the IP/TCP header compression is effective on the interface after negotiation with the peer interface. "
::= { hwIphcTcpConfigEffectEntry 1 }
hwIphcTcpEffectConnnectionNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of valid IP/TCP header compression sessions on the interface after negotiation with the peer interface. "
::= { hwIphcTcpConfigEffectEntry 2 }
hwIphcRtpConfigTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwIphcRtpConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table is used to configure the parameters of IP/UDP or IP/UDP/RTP header compression."
::= { hwIphcInfoObjects 3 }
hwIphcRtpConfigEntry OBJECT-TYPE
SYNTAX HwIphcRtpConfigEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in this table."
INDEX { hwIphcRtpIfIndex }
::= { hwIphcRtpConfigTable 1 }
HwIphcRtpConfigEntry ::=
SEQUENCE {
hwIphcRtpIfIndex
Integer32,
hwIphcRtpEnable
HWCompressType,
hwIphcRtpConnnectionNumber
Integer32,
hwIphcRtpNValue
Integer32,
hwIphcRtpFormatType
HWCompressFormat,
hwIphcRtpRowStatus
RowStatus
}
hwIphcRtpIfIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Index of the interface enabled with IP/UDP or IP/UDP/RTP header compression, the same as IfIndex of this interface"
::= { hwIphcRtpConfigEntry 1 }
hwIphcRtpEnable OBJECT-TYPE
SYNTAX HWCompressType
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Identifies whether IP/UDP and IP/UDP/RTP header compression is enabled on the interface. "
::= { hwIphcRtpConfigEntry 2 }
hwIphcRtpConnnectionNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The maximum number of IP/UDP and IP/UDP/RTP header compression sessions on the interface."
::= { hwIphcRtpConfigEntry 3 }
hwIphcRtpNValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The number of packet retransmissions when EcRTP is enabled on the interface."
::= { hwIphcRtpConfigEntry 4 }
hwIphcRtpFormatType OBJECT-TYPE
SYNTAX HWCompressFormat
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Compressed packet format supported by the interface. "
::= { hwIphcRtpConfigEntry 5 }
hwIphcRtpRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Row status."
::= { hwIphcRtpConfigEntry 6 }
hwIphcRtpConfigEffectTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwIphcRtpConfigEffectEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table lists the valid parameters of IP/UDP and IP/UDP/RTP header compression on the interface after negotiation with the peer interface. "
::= { hwIphcInfoObjects 4 }
hwIphcRtpConfigEffectEntry OBJECT-TYPE
SYNTAX HwIphcRtpConfigEffectEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in this table."
INDEX { hwIphcRtpIfIndex }
::= { hwIphcRtpConfigEffectTable 1 }
HwIphcRtpConfigEffectEntry ::=
SEQUENCE {
hwIphcRtpEffectEnable
HWCompressType,
hwIphcRtpEffectConnnectionNumber
Integer32,
hwIphcRtpEffectNValue
Integer32
}
hwIphcRtpEffectEnable OBJECT-TYPE
SYNTAX HWCompressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Identifies whether IP/UDP and IP/UDP/RTP header compression is effective on the interface after negotiation with the peer interface."
::= { hwIphcRtpConfigEffectEntry 1 }
hwIphcRtpEffectConnnectionNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of valid IP/UDP and IP/UDP/RTP header compression sessions on the interface."
::= { hwIphcRtpConfigEffectEntry 2 }
hwIphcRtpEffectNValue OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packet retransmissions when EcRTP is enabled on the interface after negotiation with the peer interface."
::= { hwIphcRtpConfigEffectEntry 3 }
--
-- Statistics Node definitions
--
hwIphcStatisticsObjects OBJECT IDENTIFIER ::= { hwIphcMIB 2 }
hwIphcTcpRunInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwIphcTcpRunInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table lists statistics on IP/TCP header compression."
::= { hwIphcStatisticsObjects 1 }
hwIphcTcpRunInfoEntry OBJECT-TYPE
SYNTAX HwIphcTcpRunInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in this table."
INDEX { hwIphcTcpIfIndex }
::= { hwIphcTcpRunInfoTable 1 }
HwIphcTcpRunInfoEntry ::=
SEQUENCE {
hwIphcTcpSentTotalPackets
Counter64,
hwIphcTcpSentTotalBytes
Counter64,
hwIphcTcpSentCompressPackets
Counter64,
hwIphcTcpSentCompressBytes
Counter64,
hwIphcTcpSavedBytes
Counter64,
hwIphcTcpCompressRatio
Integer32,
hwIphcTcpReceivedTotalPackets
Counter64,
hwIphcTcpReceivedCompressPackets
Counter64,
hwIphcTcpReceivedCompressErrorPackets
Counter64,
hwIphcTcpReceivedCompressDiscardPackets
Counter64
}
hwIphcTcpSentTotalPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of sent packets with IP/TCP header."
::= { hwIphcTcpRunInfoEntry 1 }
hwIphcTcpSentTotalBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of the bytes of sent packets with IP/TCP header."
::= { hwIphcTcpRunInfoEntry 2 }
hwIphcTcpSentCompressPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of compressed packets."
::= { hwIphcTcpRunInfoEntry 3 }
hwIphcTcpSentCompressBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of the bytes of compressed packets with IP/TCP header."
::= { hwIphcTcpRunInfoEntry 4 }
hwIphcTcpSavedBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of the bytes saved after compression with IP/TCP header."
::= { hwIphcTcpRunInfoEntry 5 }
hwIphcTcpCompressRatio OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Compression ratio."
::= { hwIphcTcpRunInfoEntry 6 }
hwIphcTcpReceivedTotalPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of received packets with IP/TCP header."
::= { hwIphcTcpRunInfoEntry 7 }
hwIphcTcpReceivedCompressPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of received compressed packets with IP/TCP header."
::= { hwIphcTcpRunInfoEntry 8 }
hwIphcTcpReceivedCompressErrorPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of incorrectly-compressed packets with IP/TCP header."
::= { hwIphcTcpRunInfoEntry 9 }
hwIphcTcpReceivedCompressDiscardPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of the packets discarded due to failed decompression with IP/TCP header."
::= { hwIphcTcpRunInfoEntry 10 }
hwIphcRtpRunInfoTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwIphcRtpRunInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table lists statistics on IP/UDP or IP/UDP/RTP header compression."
::= { hwIphcStatisticsObjects 2 }
hwIphcRtpRunInfoEntry OBJECT-TYPE
SYNTAX HwIphcRtpRunInfoEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in this table."
INDEX { hwIphcRtpIfIndex }
::= { hwIphcRtpRunInfoTable 1 }
HwIphcRtpRunInfoEntry ::=
SEQUENCE {
hwIphcRtpSentTotalPackets
Counter64,
hwIphcRtpSentTotalBytes
Counter64,
hwIphcRtpSentCompressPackets
Counter64,
hwIphcRtpSentCompressBytes
Counter64,
hwIphcRtpSavedBytes
Counter64,
hwIphcRtpCompressRatio
Integer32,
hwIphcRtpReceivedTotalPackets
Counter64,
hwIphcRtpReceivedCompressPackets
Counter64,
hwIphcRtpReceivedCompressErrorPackets
Counter64,
hwIphcRtpReceivedCompressDiscardPackets
Counter64
}
hwIphcRtpSentTotalPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of sent packets with IP/UDP or IP/UDP/RTP header."
::= { hwIphcRtpRunInfoEntry 1 }
hwIphcRtpSentTotalBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of the bytes of sent packets with IP/UDP or IP/UDP/RTP header."
::= { hwIphcRtpRunInfoEntry 2 }
hwIphcRtpSentCompressPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of sent compressed packets with IP/UDP or IP/UDP/RTP header."
::= { hwIphcRtpRunInfoEntry 3 }
hwIphcRtpSentCompressBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of the bytes of sent compressed packets with IP/UDP or IP/UDP/RTP header."
::= { hwIphcRtpRunInfoEntry 4 }
hwIphcRtpSavedBytes OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of saved bytes after compression with IP/UDP or IP/UDP/RTP header."
::= { hwIphcRtpRunInfoEntry 5 }
hwIphcRtpCompressRatio OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Compression ratio."
::= { hwIphcRtpRunInfoEntry 6 }
hwIphcRtpReceivedTotalPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of received packets with IP/UDP or IP/UDP/RTP header."
::= { hwIphcRtpRunInfoEntry 7 }
hwIphcRtpReceivedCompressPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of the bytes of received compressed packets with IP/UDP or IP/UDP/RTP header."
::= { hwIphcRtpRunInfoEntry 8 }
hwIphcRtpReceivedCompressErrorPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of received incorrectly-compressed packets with IP/UDP or IP/UDP/RTP header."
::= { hwIphcRtpRunInfoEntry 9 }
hwIphcRtpReceivedCompressDiscardPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets discarded due to failed compression with IP/UDP or IP/UDP/RTP header."
::= { hwIphcRtpRunInfoEntry 10 }
--
-- Notifications
--
hwIphcTraps OBJECT IDENTIFIER ::= { hwIphcMIB 3 }
hwIphcContextError NOTIFICATION-TYPE
OBJECTS { ifIndex, ifName }
STATUS current
DESCRIPTION
"During a specified period, the number of the CONTEXT_STATE packets received by the compressor exceeds the threshold. "
::= { hwIphcTraps 1 }
hwIphcContextErrorResume NOTIFICATION-TYPE
OBJECTS { ifIndex, ifName }
STATUS current
DESCRIPTION
"During a specified period, the number of the CONTEXT_STATE packets received by the compressor restores to the normal state. "
::= { hwIphcTraps 2 }
-- Conformance and Compliance
--
hwIphcConformance OBJECT IDENTIFIER ::= { hwIphcMIB 4 }
hwIphcCompliances OBJECT IDENTIFIER ::= { hwIphcConformance 1 }
-- this module
hwIphcCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for systems supporting the HUAWEI-IPHC-MIB."
MODULE -- this module
MANDATORY-GROUPS { hwIphcInfoGroup, hwIphcStatisticsGroup, hwIphcNotificationGroup }
OBJECT hwIphcTcpEnable
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT hwIphcTcpConnnectionNumber
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT hwIphcTcpRowStatus
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT hwIphcRtpEnable
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT hwIphcRtpConnnectionNumber
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT hwIphcRtpNValue
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT hwIphcRtpFormatType
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
OBJECT hwIphcRtpRowStatus
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
::= { hwIphcCompliances 1 }
hwIphcGroups OBJECT IDENTIFIER ::= { hwIphcConformance 2 }
hwIphcInfoGroup OBJECT-GROUP
OBJECTS { hwIphcTcpEnable, hwIphcTcpConnnectionNumber, hwIphcTcpRowStatus,
hwIphcTcpEffectEnable, hwIphcTcpEffectConnnectionNumber,
hwIphcRtpEnable, hwIphcRtpConnnectionNumber, hwIphcRtpNValue, hwIphcRtpFormatType, hwIphcRtpRowStatus,
hwIphcRtpEffectEnable, hwIphcRtpEffectConnnectionNumber, hwIphcRtpEffectNValue
}
STATUS current
DESCRIPTION
"Standard HUAWEI IPHC Configuration group."
::= { hwIphcGroups 1 }
hwIphcStatisticsGroup OBJECT-GROUP
OBJECTS { hwIphcTcpSentTotalPackets, hwIphcTcpSentTotalBytes, hwIphcTcpSentCompressPackets, hwIphcTcpSentCompressBytes,
hwIphcTcpSavedBytes, hwIphcTcpCompressRatio, hwIphcTcpReceivedTotalPackets, hwIphcTcpReceivedCompressPackets,
hwIphcTcpReceivedCompressErrorPackets, hwIphcTcpReceivedCompressDiscardPackets, hwIphcRtpSentTotalPackets,
hwIphcRtpSentTotalBytes, hwIphcRtpSentCompressPackets, hwIphcRtpSentCompressBytes, hwIphcRtpSavedBytes,
hwIphcRtpCompressRatio, hwIphcRtpReceivedTotalPackets, hwIphcRtpReceivedCompressPackets,
hwIphcRtpReceivedCompressErrorPackets, hwIphcRtpReceivedCompressDiscardPackets
}
STATUS current
DESCRIPTION
"Standard HUAWEI IPHC Statistics group."
::= { hwIphcGroups 2 }
hwIphcNotificationGroup NOTIFICATION-GROUP
NOTIFICATIONS { hwIphcContextError, hwIphcContextErrorResume }
STATUS current
DESCRIPTION
"Standard HUAWEI IPHC Notification group."
::= { hwIphcGroups 3 }
END
--
-- HUAWEI-IPHC-MIB.mib
--
|