This repository has been archived by the owner. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathHP-ICF-XRRP
910 lines (794 loc) · 38.3 KB
/
HP-ICF-XRRP
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
HP-ICF-XRRP DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,
IpAddress, Integer32, Counter32
FROM SNMPv2-SMI
MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
FROM SNMPv2-CONF
VlanId
FROM Q-BRIDGE-MIB
LastCreateTime
FROM RMON2-MIB
TEXTUAL-CONVENTION, RowStatus, TimeStamp, MacAddress
FROM SNMPv2-TC
hpSwitch
FROM HP-ICF-OID
;
hpicfXrrpMIB MODULE-IDENTITY
LAST-UPDATED "200508050000Z" -- Aug 5, 2005
ORGANIZATION "Hewlett-Packard Company
ProCurve Networking Business"
CONTACT-INFO "Hewlett-Packard Company
8000 Foothills Blvd.
Roseville, CA 95747"
DESCRIPTION "This MIB module contains the definitions of Managed
Objects for the XRRP router - the device running HP
proprietory version of the Virtual Router Redundancy
Protocol (VRRP)."
REVISION "200508050000Z" -- Aug 5, 2005
DESCRIPTION "Added import objects."
REVISION "200410200000Z" -- October 20, 2004
DESCRIPTION "Revision to add objects to support controlled
failback feature for XRRP."
REVISION "200208190000Z" -- August 19, 2002
DESCRIPTION "Initial revision."
::= { hpSwitch 18 }
-- *******************************************************************
-- Textual Conventions
-- *******************************************************************
XrrpRouterId ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION "A number which serves to uniquely identify a XRRP router
within a domain."
SYNTAX Integer32 (1..255)
-- **********************************************************************
-- XRRP MIB Groups
-- **********************************************************************
hpicfXrrpOperations OBJECT IDENTIFIER ::= { hpicfXrrpMIB 2 }
hpicfXrrpStatistics OBJECT IDENTIFIER ::= { hpicfXrrpMIB 3 }
hpicfXrrpConformance OBJECT IDENTIFIER ::= { hpicfXrrpMIB 4 }
-- **********************************************************************
-- Start of MIB objects
-- **********************************************************************
hpicfXrrpVersion OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This value identifies the particular version of the XRRP
supported by this device."
::= { hpicfXrrpOperations 1 }
hpicfXrrpAdminState OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The administrative state of the XRRP protocol
on the box."
DEFVAL { 2 }
::= { hpicfXrrpOperations 2 }
hpicfXrrpDomain OBJECT-TYPE
SYNTAX Integer32 (1..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Domain that this router is in. The router can only be in
one domain. Routers in the same domain can fail-over for
each other. Up to 2 routers that have common VLANs can use
the same XRRP Domain."
DEFVAL { 1 }
::= { hpicfXrrpOperations 3 }
hpicfXrrpRouterId OBJECT-TYPE
SYNTAX XrrpRouterId
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Unique number for this router within a given domain.
The router number (in combination with a VLAN ID) is
used as an identifier for an XRRP instance within a
domain. Along with 'hpicfXrrpDomain' it is used to
create the XRRP MAC address for the XRRP instance this
router owns. No two routers in the same domain can have
the same router number in the same level 2 switching
fabric."
DEFVAL { 1 }
::= { hpicfXrrpOperations 4 }
hpicfXrrpFailback OBJECT-TYPE
SYNTAX Integer32 (10..999)
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Delay a router must wait before it can reclaim control
for the virtual router it owns after its VLANs have come
back up. This prevents any crashing for intermittent
failures."
DEFVAL { 10 }
::= { hpicfXrrpOperations 5 }
hpicfXrrpTrapCntl OBJECT-TYPE
SYNTAX BITS {
stateChange(0),
masterState(1),
authFailure(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "Indicates whether the XRRP-enabled router will generate
SNMP traps for events defined in this MIB. The set bit
means 'enabled'.
- stateChange(0)
This bit controls whether the notification trap is
allowed to be send when virtual router changes the state.
- masterState(1)
This bit controls whether the notification trap is
allowed to be send when virtual router transitions
to the Master state.
- authFailure(2)
This bit controls whether the notification trap is
allowed to be send when virtual router detects an
authentication error."
::= { hpicfXrrpOperations 6 }
-- **********************************************************************
-- XRRP Virtual Router (XRRP Instance) Operations Table
-- **********************************************************************
hpicfXrrpInstancesTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfXrrpInstanceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains operational characteristics of the
virtual routers (XRRP instances) configured on this routing
device. Currently on a given router for a given VLAN up to
2 instances can be supported (i.e. router can be the owner
of one XRRP instance and backup up to one other). The
theoretical maximum of XRRP instances on the router can
be MAX_VLAN*2, currently it is limited to 512."
::= { hpicfXrrpOperations 7 }
hpicfXrrpInstanceEntry OBJECT-TYPE
SYNTAX HpicfXrrpInstanceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry (row) in the 'hpicfXrrpInstancesTable' containing
the operational characteristics of the specific virtual
router (XRRP instance) configured on this device."
INDEX { hpicfXrrpInstanceRouterId, hpicfXrrpInstanceVlanId }
::= { hpicfXrrpInstancesTable 1 }
HpicfXrrpInstanceEntry ::=
SEQUENCE {
hpicfXrrpInstanceRouterId XrrpRouterId,
hpicfXrrpInstanceVlanId VlanId,
hpicfXrrpInstanceOperState INTEGER,
hpicfXrrpInstanceAuthType INTEGER,
hpicfXrrpInstanceAuthKey OCTET STRING,
hpicfXrrpInstanceAdvertiseInterval Integer32,
hpicfXrrpInstanceUpTime TimeStamp,
hpicfXrrpInstanceRowStatus RowStatus
}
hpicfXrrpInstanceRouterId OBJECT-TYPE
SYNTAX XrrpRouterId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The router number which owns the virtual router interface
(XRRP instance). In combination with
'hpicfXrrpInstanceVlanId' used as an index value to
uniquely identify a row in the
'hpicfXrrpInstancesTable' table."
::= { hpicfXrrpInstanceEntry 1 }
hpicfXrrpInstanceVlanId OBJECT-TYPE
SYNTAX VlanId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The VLAN ID where the virtual router (XRRP instance) is
running on. In combination with 'hpicfXrrpInstanceRouterId'
is used as an index value to uniquely identify a row in the
'hpicfXrrpInstancesTable' table."
::= { hpicfXrrpInstanceEntry 2 }
hpicfXrrpInstanceOperState OBJECT-TYPE
SYNTAX INTEGER {
initialize(1),
backup(2),
master(3),
vlandown(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current state of the virtual router (XRRP instance)
configured on this device. This object has the following
defined values:
- `initialize', which indicates that the virtual router
(XRRP instance) is waiting for a startup event.
- `backup', which indicates that virtual router (XRRP
instance) is monitoring the availability of the Master.
- `master', which indicates that the given virtual router
(XRRP instance) is forwarding packets for the IP
addresses associated with it, i.e. is in the Master
state.
- 'vlandown', which indicates that the VLAN associated
with this virtual router (XRRP instance) is in down
state."
::= { hpicfXrrpInstanceEntry 3 }
hpicfXrrpInstanceAuthType OBJECT-TYPE
SYNTAX INTEGER {
noAuthentication(1),
simpleTextPassword(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Authentication type used for VRRP protocol exchanges
between virtual routers.
- 'noAuthentication' means that VRRP protocol exchanges
are notauthenticated.
- 'simpleTextPassword' means that exchanges are
authenticated by a clear text password."
DEFVAL { noAuthentication }
::= { hpicfXrrpInstanceEntry 4 }
hpicfXrrpInstanceAuthKey OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..8))
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This is an authentication string that is used to
authenticate encapsulated VRRP packets received from
other routers the XRRP instance is composed. This value
must be consistently defined across the routers that
form this XRRP instance. When read, it always returns an
Octet String of length zero."
DEFVAL { NULL }
::= { hpicfXrrpInstanceEntry 5 }
hpicfXrrpInstanceAdvertiseInterval OBJECT-TYPE
SYNTAX Integer32 (1..60)
MAX-ACCESS read-create
STATUS current
DESCRIPTION "This parameter defines the advertisement interval in
seconds for XRRP packets sent out by the Master of the
XRRP instance."
DEFVAL { 5 }
::= { hpicfXrrpInstanceEntry 6 }
hpicfXrrpInstanceUpTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This is the value of the `sysUpTime' object when
the XRRP instance transitioned out of `initialized'
state."
::= { hpicfXrrpInstanceEntry 7 }
hpicfXrrpInstanceRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "Status of the row in the 'hpicfXrrpInstancesTable'."
::= { hpicfXrrpInstanceEntry 8 }
-- **********************************************************************
-- XRRP Virtual Routers (XRRP Instances) Associated IP addresses Table
-- **********************************************************************
hpicfXrrpInstanceAssoIpAddrTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfXrrpInstanceAssoIpAddrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "This table contains IP addresses associated with
virtual routers (XRRP instances) configured on
this device."
::= { hpicfXrrpOperations 8 }
hpicfXrrpInstanceAssoIpAddrEntry OBJECT-TYPE
SYNTAX HpicfXrrpInstanceAssoIpAddrEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "An entry in the 'hpicfXrrpInstanceAssoIpAddrTable'.
The number of rows will be equal the number of IP
addresses backed up by the all XRRP instances on this
device."
INDEX { hpicfXrrpInstanceRouterId,
hpicfXrrpInstanceVlanId,
hpicfXrrpAssoIpAddr }
::= { hpicfXrrpInstanceAssoIpAddrTable 1 }
HpicfXrrpInstanceAssoIpAddrEntry ::=
SEQUENCE {
hpicfXrrpAssoIpAddr IpAddress,
hpicfXrrpAssoIpMask IpAddress,
hpicfXrrpAssoRowStatus RowStatus
}
hpicfXrrpAssoIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The backed up IP address configured on the VLAN
'hpicfXrrpInstanceVlanId' of the router
'hpicfXrrpInstanceRouterId'."
::= { hpicfXrrpInstanceAssoIpAddrEntry 1 }
hpicfXrrpAssoIpMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The subnet mask for the IP address."
::= { hpicfXrrpInstanceAssoIpAddrEntry 2 }
hpicfXrrpAssoRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The status of the row in
'hpicfXrrpInstanceAssoIpAddrTable'."
::= { hpicfXrrpInstanceAssoIpAddrEntry 3 }
-- **********************************************************************
-- XRRP Transfer Control Object
-- **********************************************************************
hpicfXrrpTransferControl OBJECT-TYPE
SYNTAX INTEGER {
transferCtrl (1),
notransferCtrl (2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "When this object is set to transferCtrl (1), it acts
as a trigger to intimate XRRP of the transfer of control
from one router to another.
When read, this object always returns
notransferCtrl (2)."
::= { hpicfXrrpOperations 9 }
-- **********************************************************************
-- XRRP Infinite Failback object
-- **********************************************************************
hpicfXrrpInfiniteFailback OBJECT-TYPE
SYNTAX INTEGER {
enable (1),
disable (2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION "When this object is set to enable (1), it sets the
XRRP router on infinite failback. On initialization,
the default value is disable (2)."
::= { hpicfXrrpOperations 10 }
-- **********************************************************************
-- XRRP Global Statistics (Read only objects)
-- **********************************************************************
hpicfXrrpStatsXrrpMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "MAC Address used for XRRP instances for which this
router is the owner. Value is determined by XRRP
domain and unique router number."
::= { hpicfXrrpStatistics 1 }
hpicfXrrpStatsMacAndMask OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This value contains the current AND mask used by XRRP to
determine which MAC addresses can be received for
routing."
::= { hpicfXrrpStatistics 2 }
hpicfXrrpStatsPktsRcvd OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This value contains the number of XRRP packets received
by the router."
::= { hpicfXrrpStatistics 3 }
hpicfXrrpStatsNotDomainPktsReject OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This value contains the number of XRRP packets
received from the other domains."
::= { hpicfXrrpStatistics 4 }
hpicfXrrpStatsCheckSumPktsReject OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This value contains the number of XRRP packets rejected
due to checksum errors."
::= { hpicfXrrpStatistics 5 }
hpicfXrrpStatsBadValuePktsReject OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This value contains the number of received XRRP packets
with bad values."
::= { hpicfXrrpStatistics 6 }
hpicfXrrpStatsCorruptedPktsReject OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This value contains the number of received XRRP packets
that are too short."
::= { hpicfXrrpStatistics 7 }
hpicfXrrpStatsVersionErrorPktsReject OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This value contains the number of received XRRP packets
with wrong version number."
::= { hpicfXrrpStatistics 8 }
hpicfXrrpStatsBcastArpsXmtd OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This value contains the number of broacast arps sent."
::= { hpicfXrrpStatistics 9 }
hpicfXrrpStatsUpTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This is the value of the `sysUpTime' object when
the XRRP protocol has been last enabled. Used to count
elapsed time since last XRRP enable action."
::= { hpicfXrrpStatistics 10 }
hpicfXrrpStatsProtocolCreateTime OBJECT-TYPE
SYNTAX LastCreateTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sysUpTime when XRRP protocol was last
activated (initialized). This can be used for polling
applications to detect discontinuity in the above
statistics counters if protocol has been reinitialized
between polls."
::= { hpicfXrrpStatistics 11 }
-- **********************************************************************
-- XRRP Virtual Routers Statistics (Read only objects)
-- **********************************************************************
hpicfXrrpStatsInstancesTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfXrrpStatsInstanceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains statistics information for
the XRRP instances on the router."
::= { hpicfXrrpStatistics 12 }
hpicfXrrpStatsInstanceEntry OBJECT-TYPE
SYNTAX HpicfXrrpStatsInstanceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Information about a specific XRRP instance."
INDEX { hpicfXrrpInstanceRouterId,
hpicfXrrpInstanceVlanId }
::= { hpicfXrrpStatsInstancesTable 1 }
HpicfXrrpStatsInstanceEntry ::=
SEQUENCE {
hpicfXrrpInstanceRouterId XrrpRouterId,
hpicfXrrpInstanceVlanId VlanId,
hpicfXrrpStatsInstancePktsRcvd Counter32,
hpicfXrrpStatsInstancePktsXmtd Counter32,
hpicfXrrpStatsInstanceVersionErrPkts Counter32,
hpicfXrrpStatsInstancePriorityZeroPktsRcvd Counter32,
hpicfXrrpStatsInstancePriorityZeroPktsXmtd Counter32,
hpicfXrrpStatsInstanceMismatchedIpPkts Counter32,
hpicfXrrpStatsInstanceAuthFailPktsReject Counter32,
hpicfXrrpStatsInstanceIntervalMismatchPkts Counter32,
hpicfXrrpStatsInstanceCreateTime LastCreateTime
}
hpicfXrrpStatsInstancePktsRcvd OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This value contains the number of XRRP packets received
by the virtual router (XRRP instance)."
::= { hpicfXrrpStatsInstanceEntry 1 }
hpicfXrrpStatsInstancePktsXmtd OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This value contains the number of XRRP packets transmitted
by the virtual router (XRRP instance)."
::= { hpicfXrrpStatsInstanceEntry 2 }
hpicfXrrpStatsInstanceVersionErrPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This value contains the number of XRRP packets received
by the virtual router (XRRP instance) with incompatible
version value in either the XRRP or VRRP portion of the
header."
::= { hpicfXrrpStatsInstanceEntry 3 }
hpicfXrrpStatsInstancePriorityZeroPktsRcvd OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This value contains the number of XRRP packets received
with the priority set to 0 on the virtual router (i.e.
the current master is giving up control)."
::= { hpicfXrrpStatsInstanceEntry 4 }
hpicfXrrpStatsInstancePriorityZeroPktsXmtd OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This value contains the number of XRRP packets
transmitted by the virtual router with the priority set
to 0 (i.e. the virtual router is giving up control)."
::= { hpicfXrrpStatsInstanceEntry 5 }
hpicfXrrpStatsInstanceMismatchedIpPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This value contains the number of XRRP packets received
by the virtual router with an unknown mismatched IP
addresses. The Backup router will automatically accept
the addresses from a router with a priority of 255 (i.e.
the virtual router owner)."
::= { hpicfXrrpStatsInstanceEntry 6 }
hpicfXrrpStatsInstanceAuthFailPktsReject OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This value contains the number of rejected by this virtual
router XRRP packets due to authentication failure (i.e.
mismatched passwords)."
::= { hpicfXrrpStatsInstanceEntry 7 }
hpicfXrrpStatsInstanceIntervalMismatchPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This value contains the number of XRRP packets with
the advertisement interval is a mismatch. The receiving
router will change to that of the transmitter but logs
a warning."
::= { hpicfXrrpStatsInstanceEntry 8 }
hpicfXrrpStatsInstanceCreateTime OBJECT-TYPE
SYNTAX LastCreateTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sysUpTime when this virtual router
entry was last activated. This object allows to a
management station to detect deletion and recreation
cycles between polls and thus detect discontinuity
in the above statistics counters."
::= { hpicfXrrpStatsInstanceEntry 9 }
-- **********************************************************************
-- XRRP Virtual Router Coordinator Statistics (Read only objects)
-- **********************************************************************
hpicfXrrpStatsRcTable OBJECT-TYPE
SYNTAX SEQUENCE OF HpicfXrrpStatsRcEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "A table that contains statistics information for
virtual router coordinators in the domain."
::= { hpicfXrrpStatistics 13 }
hpicfXrrpStatsRcEntry OBJECT-TYPE
SYNTAX HpicfXrrpStatsRcEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "Information about a specific router coordinator."
INDEX { hpicfXrrpStatsRcRouterId }
::= { hpicfXrrpStatsRcTable 1 }
HpicfXrrpStatsRcEntry ::=
SEQUENCE {
hpicfXrrpStatsRcRouterId XrrpRouterId,
hpicfXrrpStatsRcOperState INTEGER,
hpicfXrrpStatsRcType1PktsRcvd Counter32,
hpicfXrrpStatsRcType1PktsXmtd Counter32,
hpicfXrrpStatsRcType2PktsRcvd Counter32,
hpicfXrrpStatsRcType2PktsXmtd Counter32,
hpicfXrrpStatsRcBecomeMaster Counter32,
hpicfXrrpStatsRcMasterTime TimeStamp,
hpicfXrrpStatsRcUnknownVlanId Counter32,
hpicfXrrpStatsRcCreateTime LastCreateTime
}
hpicfXrrpStatsRcRouterId OBJECT-TYPE
SYNTAX XrrpRouterId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION "The router coordinator number."
::= { hpicfXrrpStatsRcEntry 1 }
hpicfXrrpStatsRcOperState OBJECT-TYPE
SYNTAX INTEGER {
initialize(1),
backup(2),
master(3),
failback(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The current operational state of the router coordinator."
::= { hpicfXrrpStatsRcEntry 2 }
hpicfXrrpStatsRcType1PktsRcvd OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This value contains the number of type 1 XRRP packets
received by the router."
::= { hpicfXrrpStatsRcEntry 3 }
hpicfXrrpStatsRcType1PktsXmtd OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This value contains the number of type 1 XRRP packets
transmitted by the router."
::= { hpicfXrrpStatsRcEntry 4 }
hpicfXrrpStatsRcType2PktsRcvd OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This value contains the number of type 2 XRRP packets
received by the router."
::= { hpicfXrrpStatsRcEntry 5 }
hpicfXrrpStatsRcType2PktsXmtd OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "This value contains the number of type 2 XRRP packets
transmitted by the router."
::= { hpicfXrrpStatsRcEntry 6 }
hpicfXrrpStatsRcBecomeMaster OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The total number of times that this router has become
a master."
::= { hpicfXrrpStatsRcEntry 7 }
hpicfXrrpStatsRcMasterTime OBJECT-TYPE
SYNTAX TimeStamp
MAX-ACCESS read-only
STATUS current
DESCRIPTION "Duration as master (in seconds)."
::= { hpicfXrrpStatsRcEntry 8 }
hpicfXrrpStatsRcUnknownVlanId OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION ""
::= { hpicfXrrpStatsRcEntry 9 }
hpicfXrrpStatsRcCreateTime OBJECT-TYPE
SYNTAX LastCreateTime
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The value of sysUpTime when this router coordinator
entry was last activated. This object allows to a
management station to detect deletion and recreation
cycles between polls and thus detect discontinuity
in the above statistics counters."
::= { hpicfXrrpStatsRcEntry 10 }
-- **********************************************************************
-- XRRP Notifications Trap Definitions
-- **********************************************************************
hpicfXrrpNotifications OBJECT IDENTIFIER ::= { hpicfXrrpMIB 1 }
hpicfXrrpNotificationsPrefix
OBJECT IDENTIFIER ::= { hpicfXrrpNotifications 0 }
hpicfXrrpNotificationsObjects
OBJECT IDENTIFIER ::= { hpicfXrrpNotifications 1 }
hpicfXrrpTrapAuthErrorType OBJECT-TYPE
SYNTAX INTEGER {
invalidAuthType (1),
authTypeMismatch (2),
authFailure (3)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION "Potential types of configuration conflicts.
Used by hpicfXrrpTrapAuthFailure trap."
::= { hpicfXrrpNotificationsObjects 1 }
hpicfXrrpTrapStateChange NOTIFICATION-TYPE
OBJECTS {
hpicfXrrpDomain,
hpicfXrrpStatsRcRouterId,
hpicfXrrpStatsRcOperState
}
STATUS current
DESCRIPTION "This trap indicates that a XRRP router has changed
state. The trap contains the domain number, the router
coordinator number and state value for the change.
This trap is being controled by the state of
'hpicfXrrpTrapCntl' object."
::= { hpicfXrrpNotificationsPrefix 1 }
hpicfXrrpTrapAuthFailure NOTIFICATION-TYPE
OBJECTS {
hpicfXrrpDomain,
hpicfXrrpRouterId, -- The originator of the trap
hpicfXrrpInstanceRouterId,
hpicfXrrpInstanceVlanId,
hpicfXrrpTrapAuthErrorType
}
STATUS current
DESCRIPTION "This trap indicates that the authentication error occured
on a XRRP VLAN. The trap contains the domain number, this
router number, instance id (owner router number and
VLAN ID) that detected the error and type of the
authentication error. This trap is being controled by the
state of 'hpicfXrrpTrapCntl' object."
::= { hpicfXrrpNotificationsPrefix 2 }
-- **********************************************************************
-- Conformance Information
-- **********************************************************************
hpicfXrrpMIBCompliances OBJECT IDENTIFIER ::= { hpicfXrrpConformance 1 }
hpicfXrrpMIBGroups OBJECT IDENTIFIER ::= { hpicfXrrpConformance 2 }
-- ...................................................................
-- Compliance Statements
-- ...................................................................
hpicfXrrpMIBCompliance MODULE-COMPLIANCE
STATUS deprecated
DESCRIPTION "********* THIS COMPLIANCE IS DEPRECATED *********"
MODULE -- this module
MANDATORY-GROUPS { hpicfXrrpOperGroup,
hpicfXrrpStatsGroup }
::= { hpicfXrrpMIBCompliances 1 }
hpicfXrrpMIBCompliance1 MODULE-COMPLIANCE
STATUS current
DESCRIPTION "The core compliance statement for XRRP implementation."
MODULE -- this module
MANDATORY-GROUPS { hpicfXrrpOperGroup1,
hpicfXrrpStatsGroup }
::= { hpicfXrrpMIBCompliances 2 }
hpicfXrrpOperGroup OBJECT-GROUP
OBJECTS {
hpicfXrrpVersion,
hpicfXrrpAdminState,
hpicfXrrpDomain,
hpicfXrrpRouterId,
hpicfXrrpTrapCntl,
hpicfXrrpInstanceOperState,
hpicfXrrpInstanceAuthType,
hpicfXrrpInstanceAuthKey,
hpicfXrrpInstanceAdvertiseInterval,
hpicfXrrpInstanceUpTime,
hpicfXrrpInstanceRowStatus,
hpicfXrrpAssoIpMask,
hpicfXrrpAssoRowStatus
}
STATUS deprecated
DESCRIPTION "********* THIS GROUP IS DEPRECATED *********"
::= { hpicfXrrpMIBGroups 1 }
hpicfXrrpStatsGroup OBJECT-GROUP
OBJECTS {
hpicfXrrpStatsXrrpMacAddress,
hpicfXrrpStatsMacAndMask,
hpicfXrrpStatsPktsRcvd,
hpicfXrrpStatsNotDomainPktsReject,
hpicfXrrpStatsCheckSumPktsReject,
hpicfXrrpStatsBadValuePktsReject,
hpicfXrrpStatsCorruptedPktsReject,
hpicfXrrpStatsVersionErrorPktsReject,
hpicfXrrpStatsBcastArpsXmtd,
hpicfXrrpStatsUpTime,
hpicfXrrpStatsProtocolCreateTime,
hpicfXrrpStatsInstancePktsRcvd,
hpicfXrrpStatsInstancePktsXmtd,
hpicfXrrpStatsInstanceVersionErrPkts,
hpicfXrrpStatsInstancePriorityZeroPktsRcvd,
hpicfXrrpStatsInstancePriorityZeroPktsXmtd,
hpicfXrrpStatsInstanceMismatchedIpPkts,
hpicfXrrpStatsInstanceAuthFailPktsReject,
hpicfXrrpStatsInstanceIntervalMismatchPkts,
hpicfXrrpStatsInstanceCreateTime,
hpicfXrrpStatsRcOperState,
hpicfXrrpStatsRcType1PktsRcvd,
hpicfXrrpStatsRcType1PktsXmtd,
hpicfXrrpStatsRcType2PktsRcvd,
hpicfXrrpStatsRcType2PktsXmtd,
hpicfXrrpStatsRcBecomeMaster,
hpicfXrrpStatsRcMasterTime,
hpicfXrrpStatsRcUnknownVlanId,
hpicfXrrpStatsRcCreateTime
}
STATUS current
DESCRIPTION "Conformance group for XRRP statistics."
::= { hpicfXrrpMIBGroups 2 }
hpicfXrrpTrapGroup OBJECT-GROUP
OBJECTS {
hpicfXrrpTrapAuthErrorType
}
STATUS current
DESCRIPTION "Conformance group for objects contained in XRRP
notifications."
::= { hpicfXrrpMIBGroups 3 }
hpicfXrrpNotificationGroup NOTIFICATION-GROUP
NOTIFICATIONS {
hpicfXrrpTrapStateChange,
hpicfXrrpTrapAuthFailure
}
STATUS current
DESCRIPTION "The XRRP MIB Notification Group."
::= { hpicfXrrpMIBGroups 4 }
hpicfXrrpOperGroup1 OBJECT-GROUP
OBJECTS {
hpicfXrrpVersion,
hpicfXrrpAdminState,
hpicfXrrpDomain,
hpicfXrrpRouterId,
hpicfXrrpTrapCntl,
hpicfXrrpInstanceOperState,
hpicfXrrpInstanceAuthType,
hpicfXrrpInstanceAuthKey,
hpicfXrrpInstanceAdvertiseInterval,
hpicfXrrpInstanceUpTime,
hpicfXrrpInstanceRowStatus,
hpicfXrrpAssoIpMask,
hpicfXrrpAssoRowStatus,
hpicfXrrpTransferControl,
hpicfXrrpInfiniteFailback
}
STATUS current
DESCRIPTION "Conformance group for XRRP operations."
::= { hpicfXrrpMIBGroups 5 }
END