forked from simonjj/SnmpMibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CISCO-CABLE-AVAILABILITY-MIB.mib
1046 lines (911 loc) · 39.1 KB
/
CISCO-CABLE-AVAILABILITY-MIB.mib
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
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- ********************************************************************
-- CISCO-CABLE-AVAILABILITY-MIB.my:
-- Cisco Cable Availability MIB file for HCCP
--
-- May 2001, Sunethra Jawahar
--
-- Copyright (c) 2001, 2002 by Cisco Systems, Inc.
-- All rights reserved.
-- ********************************************************************
--
-- This is the MIB module for management of Hot Standby
-- Connection to Connection Protocol (HCCP) features. HCCP is
-- Cisco proprietary solution for High System Availability
-- for Cable Modem Termination Systems(CMTS).
--
-- The HCCP protocol is primarily responsible for failure
-- detection and to initiate switchover from one CMTS to
-- another.
--
-- The CMTS protection is at RF MAC domain level,
-- where protecting and working CMTS cable interfaces operate
-- on the same downstream and upstream frequency.
--
-- HCCP Terminology:
-- HCCP group : A set of RF MAC interfaces which communicate using
-- HCCP messaging.
--
-- HCCP member :Each RF MAC interface configured for HCCP.
--
-- Protect : A member in a HCCP group which acts as the
-- hot standby and protecting other members.
--
-- Working : The member in a HCCP group that is being
-- protected.
--
-- Thus a 'HCCP group' consists of 'HCCP members' which are
-- RF MAC interfaces configured to function as 'Protect' or
-- 'Working'.
CISCO-CABLE-AVAILABILITY-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
NOTIFICATION-TYPE,
OBJECT-TYPE,
Integer32,
Counter32
FROM SNMPv2-SMI
TruthValue,
DisplayString
FROM SNMPv2-TC
SnmpAdminString
FROM SNMP-FRAMEWORK-MIB
InetAddress,
InetAddressType
FROM INET-ADDRESS-MIB
OBJECT-GROUP,
MODULE-COMPLIANCE,
NOTIFICATION-GROUP
FROM SNMPv2-CONF
ifIndex
FROM IF-MIB
ciscoMgmt
FROM CISCO-SMI;
ciscoCableAvailabilityMIB MODULE-IDENTITY
LAST-UPDATED "200302200000Z"
ORGANIZATION "Cisco Systems, Inc."
CONTACT-INFO
" Cisco Systems
Customer Service
Postal: Cisco Systems
170 West Tasman Drive
San Jose, CA 95134
U.S.A.
Phone: +1 800 553-NETS
E-mail: cs-ubr@cisco.com"
DESCRIPTION
"This is the MIB module for management of Hot Standby
Connection to Connection Protocol (HCCP) features. HCCP is
a Cisco proprietary solution for High System Availability
for Cable Modem Termination Systems (CMTS).
The HCCP protocol is primarily responsible for failure
detection and to initiate switchover from one CMTS to
another.
The CMTS protection is at the RF mac domain level,
where protecting and working CMTS cable interfaces operate
on the same downstream and upstream frequency.
HCCP Terminology:
HCCP group: A set of RF MAC interfaces which communicate
using HCCP messaging.
HCCP member: Each RF MAC interface configured for HCCP.
Protect: A member in a HCCP group which acts as the
hot standby and protecting other members.
Working: The member in a HCCP group that is being
protected.
Thus a 'HCCP group' consists of 'HCCP members' which are
RF MAC interfaces configured to function as 'Protect' or
'Working'.
Some RF mac interfaces are configured to form a
'HCCP group' and members within one 'HCCP group'
communicate with each other using HCCP messaging.
By HCCP messaging, some member acting as 'Protect' or
hot standby can detect a failure on the other members
which are designated as 'Working' in the same HCCP group.
The 'Protect' can then take over traffic on the failed
interface.
Protection scenarios can be N+1 or 1+1. In the N+1
protection scenario, there is only one CMTS designated
for protection of N CMTS.
For example in 1+1 : When one linecard fails, the other
automatically takes over its traffic. During normal
operation, only one linecard forwards traffic, the other
linecard stands by and listens to the messages passed
from the active one. While in the standby mode, the
linecard does not forward traffic. HCCP will automatically
switchover to the standby in cases of software failures
(crash), linecard insertion/removal, interface shutdowns
and cable wiring failures etc.
Both Protect and Working are preconfigured on the CMTS
and all HCCP configuration must comply with the actual
cable plant deployment for correct operation of the HCCP
protocol.
This MIB includes objects to support the HCCP feature
on the CMTS."
REVISION "200302200000Z"
DESCRIPTION
"Changed range of object ccaHCCPMemChanSwitchPosition
and added ciscoCableAvailabilityComplianceRev1 to
allow MIN-ACCESS as read-only for the same. "
REVISION "200111250000Z"
DESCRIPTION
"Initial version of this MIB module."
::= { ciscoMgmt 242 }
ciscoCableAvailabilityMIBObjects OBJECT IDENTIFIER
::= { ciscoCableAvailabilityMIB 1 }
ccaHCCPObjects OBJECT IDENTIFIER
::= { ciscoCableAvailabilityMIBObjects 1 }
--
-- ccaHCCPObjects :
-- Cisco Cable Availability HCCP (Hot standby Connection to Connection
-- protocol) group
--
-- This group provides the objects that allow HCCP configuration on
-- the CMTS.
--
ccaHCCPVersion OBJECT-TYPE
SYNTAX INTEGER {
others(1),
version1(2),
version2(3),
version3(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current version of HCCP features.
others(1) : Any other HCCP Version other than the
following list.
version1(2) : HCCP Version 1.0 supports for 1+1
Availability. (1 RF MAC protecting 1
RF MAC without load sharing on the
same upstream and downstream frequencies with
DOCSIS1.0+ features)
version2(3) : HCCP Version 2.0 supports for 1+1
Availability. (1 RF MAC protecting 1
RF MAC without load sharing on the
same upstream and downstream frequencies with
DOCSIS1.1 features)
version3(4) : HCCP Version 3.0 supports for N+1
Availability. (1 RF MAC protecting N
RF MAC without load sharing on different
upstream and downstream frequencies with
DOCSIS1.1 features)."
REFERENCE
"Data-Over-Cable Service Interface Specifications (DOCSIS)
Radio Frequency Interface Specification"
::= { ccaHCCPObjects 1 }
--
-- ccaHCCPGroupTable:
--
-- This table provides information about the HCCP groups configured
-- on the Cable Modem Termination Systems (CMTS).
--
-- Each set of Working along with a Protect form a HCCP group with a
-- unique group ID number(1-255) within a domain. Each protection
-- group is assigned an identification. Only members within a group are
-- allowed to communicate with each other via HCCP messaging.
-- Each of them is protected by authentication .
--
--
ccaHCCPGroupTable OBJECT-TYPE
SYNTAX SEQUENCE OF CcaHCCPGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains information of the HCCP groups
on the CMTS.
A HCCP group consists of a set of Working along with
a Protect and each group is identified by a unique group
ID number. Only members within a group are allowed to
communicate with each other via HCCP messaging. "
::= { ccaHCCPObjects 2 }
ccaHCCPGroupEntry OBJECT-TYPE
SYNTAX CcaHCCPGroupEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A set of attributes of a HCCP group on the CMTS.
An entry in this table exists for each configured
HCCP group on the CMTS."
INDEX { ccaHCCPGroupID }
::= { ccaHCCPGroupTable 1 }
CcaHCCPGroupEntry ::= SEQUENCE {
ccaHCCPGroupID Integer32,
ccaHCCPGroupAuthentication INTEGER,
ccaHCCPGroupAuthKeyChain SnmpAdminString,
ccaHCCPGroupHelloTime Integer32,
ccaHCCPGroupHoldTime Integer32,
ccaHCCPGroupRevertEnable TruthValue,
ccaHCCPGroupProtectIpAddrType InetAddressType,
ccaHCCPGroupProtectIpAddress InetAddress
}
ccaHCCPGroupID OBJECT-TYPE
SYNTAX Integer32 (1..255)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Identification of the HCCP protection group. Only members
of the same group talk to each other via HCCP messaging."
::= { ccaHCCPGroupEntry 1 }
ccaHCCPGroupAuthentication OBJECT-TYPE
SYNTAX INTEGER {
none(1),
md5(2),
text(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of this object specifies the type of
authentication method used.
none(1) : No authentication is performed on that group.
md5(2) : The MD5 Message Digest algorithm.
text(3) : Authentication based on a textual string. "
REFERENCE
"Rivest, R., 'The MD5 Message-Digest Algorithm', RFC1321,
MIT LCS & RSA Data Security, Inc., April 1992."
::= { ccaHCCPGroupEntry 2 }
ccaHCCPGroupAuthKeyChain OBJECT-TYPE
SYNTAX SnmpAdminString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object is the name of a globally configured key
chain. It is used to enable authentication and determine
the set of keys which may be used on a particular group.
If ccaHCCPGroupAuthentication is text(3), it is used as the
authentication password.
If ccaHCCPGroupAuthentication is md5(2), it is used as the
message digest for md5.
If a key chain has not been configured, no authentication
is performed on that group."
::= { ccaHCCPGroupEntry 3 }
ccaHCCPGroupHelloTime OBJECT-TYPE
SYNTAX Integer32(333..5000)
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Hello time is the interval(in milliseconds) between
consecutive HELLO messages.
HELLO is a one-way message in HCCP sent from Protect to all
Working in the group. It indicates that Protect is ready
to receive data and expects HELLO_ACK. HELLO message
indicates the existence and state of Protect. Failing to
send this message indicates Protect is not in service."
::= { ccaHCCPGroupEntry 4 }
ccaHCCPGroupHoldTime OBJECT-TYPE
SYNTAX Integer32(1000..25000)
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Hold time is the interval(in milliseconds) between the
time of receiving the last HELLO ACK message and the time to
assume that the cable interface is out of service.
In the case of Working, it is the interval in milliseconds
between the time when the Working receives a HELLO
message and the time to assume that Protect
has failed.
In the case of Protect, it is the interval in
milliseconds between the time when the Protect sends
last HELLO message without seeing HELLO_ACK and the
time to assume that Working has failed.
It is carried by HELLO message and is used by Protect
and all Working."
::= { ccaHCCPGroupEntry 5 }
ccaHCCPGroupRevertEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Enable or disable the Protect to revert switchover after
Working is restored to operation. It can be
disabled (default) if user wants to perform some tests
before revert switching."
::= { ccaHCCPGroupEntry 6 }
ccaHCCPGroupProtectIpAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of internet address of ccaHCCPGroupProtectIpAddress."
::= { ccaHCCPGroupEntry 7 }
ccaHCCPGroupProtectIpAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address of the Protect interface for the group that
sends the HELLO message. "
::= { ccaHCCPGroupEntry 8 }
-- ccaHCCPGroupIfTable
--
-- This tables provides the mapping of the RF MAC interfaces on the CMTS
-- to its functionality in the HCCP group.
--
ccaHCCPGroupIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF CcaHCCPGroupIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table provides the mapping of the RF MAC interfaces
on the CMTS to its functionality in the HCCP group.
It indicates if the RF MAC interface has been configured
as Protect or as a Working.It provides interface specific
configuration and state information as well as statistics."
::= { ccaHCCPObjects 3 }
ccaHCCPGroupIfEntry OBJECT-TYPE
SYNTAX CcaHCCPGroupIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A mapping of a RF MAC interface to its configured
functionality as Protect or Working. It provides
interface specific configuration and state
information as well as statistics.
Entries in this table exist for each ifEntry with ifType
of docsCableUpstream(129)."
INDEX { ccaHCCPGroupID , ifIndex }
::= { ccaHCCPGroupIfTable 1 }
CcaHCCPGroupIfEntry ::= SEQUENCE {
ccaHCCPGroupIfStatus INTEGER,
ccaHCCPGroupIfRevertTime Integer32,
ccaHCCPGroupIfTrackEnable TruthValue,
ccaHCCPGroupIfState INTEGER,
ccaHCCPGroupIfLastSwitchReason INTEGER,
ccaHCCPGroupIfOnTransitions Counter32,
ccaHCCPGroupIfOffTransitions Counter32
}
ccaHCCPGroupIfStatus OBJECT-TYPE
SYNTAX INTEGER {
unknown(1),
protect(2),
working(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The value of this object identifies if the interface is
functioning as Working or Protect in the HCCP group."
::= { ccaHCCPGroupIfEntry 1 }
ccaHCCPGroupIfRevertTime OBJECT-TYPE
SYNTAX Integer32(1..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Revert time used by Working specifies the time interval
to wait before automatic revert switching.
Within that time interval, manual switchover is allowed
to happen."
::= { ccaHCCPGroupIfEntry 2 }
ccaHCCPGroupIfTrackEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Enable or disable failover based on interface state. The
interface can be any interface on the router, which is
monitored by keep alive timer.
If it is set to true, ccaHCCPGroupTrackInterfaceTable
contains the list of interfaces that are being tracked.
By default the current interface is under tracking."
::= { ccaHCCPGroupIfEntry 3 }
ccaHCCPGroupIfState OBJECT-TYPE
SYNTAX INTEGER {
forwarding(1),
blocking(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current state of the HCCP group. The members can
either be forwarding traffic or blocking all traffic. "
::= { ccaHCCPGroupIfEntry 4 }
ccaHCCPGroupIfLastSwitchReason OBJECT-TYPE
SYNTAX INTEGER {
none(1),
holdTimeExpire(2),
hwIfDown(3),
failTest(4),
failLinkDown(5),
failBundleDown(6),
internal(7)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The reason for last switch.
none(1) : No switchover has occurred.
holdTimeExpire(2) : Occurs when HCCP fails to hear
HELLO/HELLO_ACK and the hold time
expires.
hwIfDown(3) : Occurs when the hardware interface
is down. (eg shut/no shut)
failTest(3) : Failover was CLI initiated or SNMP
initiated through
ccaHCCPGroupSwitchNow.
failLinkDown(4) : Failure in the cable wiring or a
hardware interface.
failBundleDown(5) : A bundled interface failure.
internal(6) : All other failures . "
::= { ccaHCCPGroupIfEntry 5 }
ccaHCCPGroupIfOnTransitions OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of times the value of ccaHCCPGroupIfState transitioned
from 'blocking' to 'forwarding'."
::= { ccaHCCPGroupIfEntry 6 }
ccaHCCPGroupIfOffTransitions OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of times the value of ccaHCCPGroupIfState transitioned
from 'forwarding' to 'blocking'. "
::= { ccaHCCPGroupIfEntry 7 }
--
-- ccaHCCPGroupTrackInterfaceTable
--
-- This table contains the list of all the interfaces that are being
-- tracked by this interface in the group. Tracking means enabling
-- failover based on interface state. The interface can be any
-- interface on the router, which is monitored by keep alive timer.
--
ccaHCCPGroupTrackInterfaceTable OBJECT-TYPE
SYNTAX SEQUENCE OF CcaHCCPGroupTrackInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the attributes of all the interfaces
that are being tracked by this group. The interface
can be any interface on the chassis, which is monitored
by a keep alive timer."
::= { ccaHCCPObjects 4 }
ccaHCCPGroupTrackInterfaceEntry OBJECT-TYPE
SYNTAX CcaHCCPGroupTrackInterfaceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A set of attributes of an interfaces being tracked
within a group. "
INDEX { ccaHCCPGroupID, ifIndex, ccaHCCPGroupTrackIfID }
::= { ccaHCCPGroupTrackInterfaceTable 1 }
CcaHCCPGroupTrackInterfaceEntry ::= SEQUENCE {
ccaHCCPGroupTrackIfID Integer32,
ccaHCCPGroupTrackIfDescr DisplayString
}
ccaHCCPGroupTrackIfID OBJECT-TYPE
SYNTAX Integer32(1..100)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of this object uniquely identifies an
interface that is being tracked within this group."
::= { ccaHCCPGroupTrackInterfaceEntry 1 }
ccaHCCPGroupTrackIfDescr OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A textual string containing information about the
interface that is being tracked. This corresponds to the
ifDescr of the tracked interface."
::= { ccaHCCPGroupTrackInterfaceEntry 2 }
--
-- ccaHCCPMemberTable
--
-- Each RF MAC interface configured for HCCP is called a HCCP member.
-- This table provides information about the HCCP members on the
-- Cable Modem Termination Systems (CMTS).
-- Only members within a HCCP group are allowed to communicate with
-- each other via HCCP messaging.
--
ccaHCCPMemberTable OBJECT-TYPE
SYNTAX SEQUENCE OF CcaHCCPMemberEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This table contains the attributes of HCCP members.
Each RF MAC interface configured for HCCP is called a
HCCP member.
Entries in this table are created for all members.
In the case of Protect, it gives information of all the
Working members under it's protection group. In the case
of Working, it gives information about itself."
::= { ccaHCCPObjects 5 }
ccaHCCPMemberEntry OBJECT-TYPE
SYNTAX CcaHCCPMemberEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A configurable attributes of a HCCP member within a
group. "
INDEX { ccaHCCPGroupID , ifIndex , ccaHCCPMemberID }
::= { ccaHCCPMemberTable 1 }
CcaHCCPMemberEntry ::= SEQUENCE {
ccaHCCPMemberID Integer32,
ccaHCCPMemberIpAddrType InetAddressType,
ccaHCCPMemberIpAddress InetAddress,
ccaHCCPMemberState INTEGER,
ccaHCCPMemberSwitchNow TruthValue
}
ccaHCCPMemberID OBJECT-TYPE
SYNTAX Integer32 (1..255)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of this object identifies the Working member's
ID inside a group.
Members within the same group are uniquely identified by
this ID. The ID can be reused outside the group."
::= { ccaHCCPMemberEntry 1 }
ccaHCCPMemberIpAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of internet address of ccaHCCPMemberIpAddress."
::= { ccaHCCPMemberEntry 2 }
ccaHCCPMemberIpAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address of the member. If the member functions
as Working it represents an IP address on its interface.
However in case of Protect, it represents IP address of
the Working member that are being protected."
::= { ccaHCCPMemberEntry 3 }
ccaHCCPMemberState OBJECT-TYPE
SYNTAX INTEGER {
active(1),
standby(2),
nonFunctional(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current status of to this HCCP group member.
If the RF MAC interface is Working, this
represents the status of the Working member.
active(1) : Working member is forwarding traffic.
standby(2) : Working member is blocking traffic.
If the RF MAC interface is Protect, this represents
the Protect status to this member.
active(1) : The Protect is taking over and
forwarding the traffic from this Working
member which is now blocking.
standby(2) : The Protect is standby(blocking). This
means that Working member is forwarding
traffic and thus works fine.
nonFunctional(3): This member is disabled."
::= { ccaHCCPMemberEntry 4 }
ccaHCCPMemberSwitchNow OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to initiate the switchover.
When it is set to true(1) and this interface is Protect,
it will cause the switchover to specified Working member.
When it is set to true(1), and if this interface is
Working, it will cause the switchover to the Protect in
it's protection group.
Switchover can thus be initiated by either the Protect or
the Working.
Reading this object will always return false(2)."
::= { ccaHCCPMemberEntry 5 }
--
-- ccaHCCPMemChanSwitchTable :
--
-- This table provides information about the HCCP channel switch
-- which is used to switch the upstreams and
-- downstreams.This table is used to specify the channel switch
-- type, the RF switch over group, RF switch module.
--
ccaHCCPMemChanSwitchTable OBJECT-TYPE
SYNTAX SEQUENCE OF CcaHCCPMemChanSwitchEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is an adjunct to ccaHCCPMemberTable. It provides
information of HCCP member channel switches. It specifies
the RF channel switch type, the RF switch over
group and the RF switch module. The upconvertor IP addresses
can also be retrieved from this table.
This table does not exist if no channel switch has been
enabled for this member in the group."
::= { ccaHCCPObjects 6 }
ccaHCCPMemChanSwitchEntry OBJECT-TYPE
SYNTAX CcaHCCPMemChanSwitchEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A set of attributes of the channel switch
specifying the channel switch details per member
(ccaHCCPMemberID) on an interface (ifType is
docsCableMaclayer(127)) of a HCCP group. "
INDEX { ccaHCCPGroupID,
ifIndex,
ccaHCCPMemberID,
ccaHCCPMemChanSwitchID }
::= { ccaHCCPMemChanSwitchTable 1 }
CcaHCCPMemChanSwitchEntry ::= SEQUENCE {
ccaHCCPMemChanSwitchID Integer32,
ccaHCCPMemChanSwitchType INTEGER,
ccaHCCPMemChanSwitchIpAddrType InetAddressType,
ccaHCCPMemChanSwitchIpAddress InetAddress,
ccaHCCPMemChanSwitchModule Integer32,
ccaHCCPMemChanSwitchProtIpAddrType InetAddressType,
ccaHCCPMemChanSwitchProtIpAddr InetAddress,
ccaHCCPMemChanSwitchProtModule Integer32,
ccaHCCPMemChanSwitchPosition Integer32,
ccaHCCPMemChanSwitchSnmpEnable TruthValue
}
ccaHCCPMemChanSwitchID OBJECT-TYPE
SYNTAX Integer32(1..100)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Uniquely identifies the entry for channel switch for a
member. The channel switch is the RF component that allows
downstream and upstream channel switching."
::= { ccaHCCPMemChanSwitchEntry 1 }
ccaHCCPMemChanSwitchType OBJECT-TYPE
SYNTAX INTEGER {
others(1),
ucWavecom(2),
rfSwitchGrp(3),
rfSwitchModule(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of the channel switch.
others(1) : Any other channel switch which is not
in the following list.
ucWavecom(2) : Represents the Wavecom upconvertor.
rfSwitchGrp(3) : Weinschel channel switch.
If ccaHCCPMemChanSwitchModule represents
the bitmap of selected modules inside a
RF switch chassis.
rfSwitchModule(4) : Weinschel channel switch.
If ccaHCCPMemChanSwitchModule represents
the switch module number inside RF switch
chassis."
::= { ccaHCCPMemChanSwitchEntry 2 }
ccaHCCPMemChanSwitchIpAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of internet address of ccaHCCPMemChanSwitchIpAddress."
::= { ccaHCCPMemChanSwitchEntry 3 }
ccaHCCPMemChanSwitchIpAddress OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Ipv4 Address of channel switch.
It represents the IP address of the upconverter that this
Working member connects to if ccaHCCPMemChanSwitchType
is ucWavecom(2).
It specifies the RF Switch's IP address if
ccaHCCPMemChanSwitchType is rfSwitchGrp(3) or
rfSwitchModule(4)."
::= { ccaHCCPMemChanSwitchEntry 4 }
ccaHCCPMemChanSwitchModule OBJECT-TYPE
SYNTAX Integer32(1..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The module number of channel switch for this member .
It is the module number on the upconverter that this
member connects to if ccaHCCPMemChanSwitchType is
ucWavecom(2).
It specifies the RF Switch module number inside an RF Switch
chassis if ccaHCCPMemChanSwitchType is rfSwitchModule(4).
It is the bitmap of selected modules inside a
RF Switch chassis if ccaHCCPMemChanSwitchType is
rfSwitchGrp(3)."
::= { ccaHCCPMemChanSwitchEntry 5 }
ccaHCCPMemChanSwitchProtIpAddrType OBJECT-TYPE
SYNTAX InetAddressType
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The type of internet address of ccaHCCPMemChanSwitchProtIpAddr."
::= { ccaHCCPMemChanSwitchEntry 6 }
ccaHCCPMemChanSwitchProtIpAddr OBJECT-TYPE
SYNTAX InetAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP address of the Wavecom upconvertor
that is connected to the corresponding Protect for this
Working member.
This object is meaningful only if
ccaHCCPMemChanSwitchType is ucWavecom(2) and has no
meaning for other types of switches and is ignored in
this case."
::= { ccaHCCPMemChanSwitchEntry 7 }
ccaHCCPMemChanSwitchProtModule OBJECT-TYPE
SYNTAX Integer32(1..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The module number on the Wavecom upconvertor that
is connected to the corresponding Protect for this
Working member.
This object is meaningful only if
ccaHCCPMemChanSwitchType is ucWavecom(2)."
::= { ccaHCCPMemChanSwitchEntry 8 }
ccaHCCPMemChanSwitchPosition OBJECT-TYPE
SYNTAX Integer32(1..8)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The position within a switch module for this Working
member. This object is valid for
ccaHCCPMemChanSwitchType rfSwitchGrp(3) and
rfSwitchModule(4). "
::= { ccaHCCPMemChanSwitchEntry 9 }
ccaHCCPMemChanSwitchSnmpEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to enable SNMP remote control
on the Wavecom upconvertor.
When it is set to true(1), SNMP remote control is
enabled on the upconvertor.
When it is set to false(2), SNMP remote control is
disabled and front panel manual operation is enabled.
This object is meaningful only if
ccaHCCPMemChanSwitchType is ucWavecom(2)."
::= { ccaHCCPMemChanSwitchEntry 10 }
ccaHCCPOnOffNotificationEnable OBJECT-TYPE
SYNTAX TruthValue
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"An indication of whether the ccaHCCPOnNotification
and ccaHCCPOffNotification are enabled or disabled."
DEFVAL { false }
::= { ccaHCCPObjects 7 }
--
-- The Cisco Cable Availability MIB Notifications
--
ciscoCableAvailabilityMIBNotificationsPrefix OBJECT IDENTIFIER
::= { ciscoCableAvailabilityMIB 2 }
ciscoCableAvailabilityMIBNotifications OBJECT IDENTIFIER
::= { ciscoCableAvailabilityMIBNotificationsPrefix 0 }
ccaHCCPOnNotification NOTIFICATION-TYPE
OBJECTS {
ccaHCCPGroupIfStatus,
ccaHCCPGroupIfLastSwitchReason,
ccaHCCPMemberState
}
STATUS current
DESCRIPTION
"A notification that is sent when failover occurred and
this interface is taking over the traffic from the peer.
For example if Protect is taking over a Working member
from it's protection group,this notification is
sent by the Protect. When Working is restored to operation
and is now taking over from the Protect, this
notification is sent by Working."
::= { ciscoCableAvailabilityMIBNotifications 1 }
ccaHCCPOffNotification NOTIFICATION-TYPE
OBJECTS {
ccaHCCPGroupIfStatus,
ccaHCCPGroupIfLastSwitchReason,
ccaHCCPMemberState
}
STATUS current
DESCRIPTION
"A notification that is sent when failover occurs and this
interface is turning over all traffic to it's peer and is
now blocking.
For example if Protect is taking over a Working member
from it's protection group,this notification is
sent by the Working. When Working is restored to operation
and is now taking over from the Protect, this
notification is sent by Protect."
::= { ciscoCableAvailabilityMIBNotifications 2 }
ciscoCableAvailabilityMIBConformance OBJECT IDENTIFIER
::= { ciscoCableAvailabilityMIB 3 }
ciscoCableAvailabilityMIBCompliances OBJECT IDENTIFIER
::= { ciscoCableAvailabilityMIBConformance 1 }
ciscoCableAvailabilityMIBGroups OBJECT IDENTIFIER
::= { ciscoCableAvailabilityMIBConformance 2 }
-- compliance statements
ciscoCableAvailabilityCompliance MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION
"The compliance statement for CMTS devices that implement
the Hot Standby Connection to Connection Protocol. "
MODULE -- this module
MANDATORY-GROUPS {
ccaHCCPGroup,
ccaHCCPMemberGroup,
ccaHCCPNotificationGroup
}
::= { ciscoCableAvailabilityMIBCompliances 1 }
ciscoCableAvailabilityComplianceRev1 MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The compliance statement for CMTS devices that implement
the Hot Standby Connection to Connection Protocol. "
MODULE -- this module
MANDATORY-GROUPS {
ccaHCCPGroup,
ccaHCCPMemberGroup,
ccaHCCPNotificationGroup
}
OBJECT ccaHCCPMemChanSwitchPosition
MIN-ACCESS read-only
DESCRIPTION
"Write access is not required."
::= { ciscoCableAvailabilityMIBCompliances 2 }
-- units of conformance
ccaHCCPGroup OBJECT-GROUP
OBJECTS {
ccaHCCPVersion,
ccaHCCPOnOffNotificationEnable,
ccaHCCPGroupAuthentication,
ccaHCCPGroupAuthKeyChain,
ccaHCCPGroupHelloTime,
ccaHCCPGroupHoldTime,
ccaHCCPGroupRevertEnable,
ccaHCCPGroupProtectIpAddrType,
ccaHCCPGroupProtectIpAddress,
ccaHCCPGroupIfRevertTime,
ccaHCCPGroupIfTrackEnable,
ccaHCCPGroupIfStatus,