-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFOUNDRY-SN-IP-VRRP-MIB
1158 lines (1045 loc) · 35.3 KB
/
FOUNDRY-SN-IP-VRRP-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
FOUNDRY-SN-IP-VRRP-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE,IpAddress, Counter32,Integer32
FROM SNMPv2-SMI
router
FROM FOUNDRY-SN-ROOT-MIB
TEXTUAL-CONVENTION
FROM SNMPv2-TC
ifIndex FROM IF-MIB;
snVrrp MODULE-IDENTITY
LAST-UPDATED "201006020000Z" -- 04 June 2010
ORGANIZATION "Brocade Communications Systems, Inc."
CONTACT-INFO
"Technical Support Center
130 Holger Way,
San Jose, CA 95134
Email: [email protected]
Phone: 1-800-752-8061
URL: www.brocade.com"
DESCRIPTION
"Copyright 1996-2010 Brocade Communications Systems, Inc.
All rights reserved.
This Brocade Communications Systems SNMP Management Information Base Specification
embodies Brocade Communications Systems' confidential and proprietary
intellectual property. Brocade Communications Systems retains all
title and ownership in the Specification, including any revisions.
This Specification is supplied AS IS, and Brocade Communications Systems makes
no warranty, either express or implied, as to the use,
operation, condition, or performance of the specification, and any unintended
consequence it may on the user environment."
REVISION "201006020000Z" -- 04 June 2010
DESCRIPTION
"Changed the ORGANIZATION, CONTACT-INFO and DESCRIPTION fields."
REVISION "200909300000Z" -- September 30, 2009
DESCRIPTION
"convert from SMIv1 to SMIv2"
::= { router 12 }
MacAddress ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"
This data type is used to model media addresses. For many
types of media, this will be in a binary representation.
For example, an ethernet address would be represented as
a string of 6 octets.
"
SYNTAX OCTET STRING (SIZE(6))
snVrrpGlobal OBJECT IDENTIFIER ::= { snVrrp 1 }
snVrrpIntf OBJECT IDENTIFIER ::= { snVrrp 2 }
snVrrpVirRtr OBJECT IDENTIFIER ::= { snVrrp 3 }
snVrrpIntf2 OBJECT IDENTIFIER ::= { snVrrp 4 }
snVrrpVirRtr2 OBJECT IDENTIFIER ::= { snVrrp 5 }
-- VRRP and VRRP-Extended MIBs
-- Section 1: VRRP Global Variables
snVrrpGroupOperMode OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The VRRP is configured on this system
either enabled or disabled and the
default is disabled mode.
disabled(0)..........disable VRRP
enabled(1)...........activate VRRP"
::= { snVrrpGlobal 1 }
snVrrpIfStateChangeTrap OBJECT-TYPE
SYNTAX INTEGER { disabled(0), enabled(1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the SNMP agent process is
permitted to generate vrrp and vrrpe interface state change
traps."
DEFVAL { enabled }
::= { snVrrpGlobal 2 }
snVrrpIfMaxNumVridPerIntf OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the maximum number of VRID per interface."
::= { snVrrpGlobal 3 }
snVrrpIfMaxNumVridPerSystem OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Indicates the maximum number of VRID per system."
::= { snVrrpGlobal 4 }
snVrrpClearVrrpStat OBJECT-TYPE
SYNTAX INTEGER { normal(0), clear(1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Clear VRRP statistics command."
::= { snVrrpGlobal 5 }
snVrrpGroupOperModeVrrpextended OBJECT-TYPE
SYNTAX INTEGER { disabled(0), enabled(1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION "The VRRP_extended is configured on this system either enabled
or disabled and the default is disabled mode.
disabled(0)..........disable VRRP extended
enabled(1)...........activate VRRP extended"
::= { snVrrpGlobal 6 }
-- Section 2: VRRP Interface Table
-- The following table is deprecated by snVrrpIf2Table, which is
-- ifIndex based table
snVrrpIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF SnVrrpIfEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"The VRRP Interface Table describes the interfaces from
the viewpoint of VRRP."
::= { snVrrpIntf 1 }
snVrrpIfEntry OBJECT-TYPE
SYNTAX SnVrrpIfEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"The VRRP Interface Entry describes one interface from
the viewpoint of VRRP."
INDEX { snVrrpIfPort }
::= { snVrrpIfTable 1 }
SnVrrpIfEntry ::=
SEQUENCE {
snVrrpIfPort
Integer32,
snVrrpIfAuthType
INTEGER,
snVrrpIfAuthPassword
OCTET STRING,
snVrrpIfRxHeaderErrCnts
Counter32,
snVrrpIfRxAuthTypeErrCnts
Counter32,
snVrrpIfRxAuthPwdMismatchErrCnts
Counter32,
snVrrpIfRxVridErrCnts
Counter32
}
snVrrpIfPort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The IP port of this VRRP interface."
::= { snVrrpIfEntry 1 }
snVrrpIfAuthType OBJECT-TYPE
SYNTAX INTEGER {
noAuth(0),
simpleTextPasswd(1),
ipAuthHeader(2)
}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"The authentication type of this interface."
::= { snVrrpIfEntry 2 }
snVrrpIfAuthPassword OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..8))
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"The simple text password is allowed if only if
the snVrrpIfAuthType type is simpleTextPasswd(1)."
::= { snVrrpIfEntry 3 }
snVrrpIfRxHeaderErrCnts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The received Header error counts in this interface."
::= { snVrrpIfEntry 4 }
snVrrpIfRxAuthTypeErrCnts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The received authentication type error counts in this interface."
::= { snVrrpIfEntry 5 }
snVrrpIfRxAuthPwdMismatchErrCnts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The received authentication password mismatched error counts in this interface."
::= { snVrrpIfEntry 6 }
snVrrpIfRxVridErrCnts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The received unfound VRID error counts in this interface."
::= { snVrrpIfEntry 7 }
-- Section 3: VRRP and VRRP-Extended Interface Table,
-- this is a modified vrrp/vrrpe interface table with ifIndex.
-- NOTE: Protocols VRRPE and VRRP-Extended are one and the same.
snVrrpIf2Table OBJECT-TYPE
SYNTAX SEQUENCE OF SnVrrpIf2Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The VRRP and VRRPE Interface Table describes the interfaces from
the viewpoint of VRRP and VRRPE."
::= { snVrrpIntf2 1 }
snVrrpIf2Entry OBJECT-TYPE
SYNTAX SnVrrpIf2Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The VRRP and VRRPE Interface Entry describes one interface from
the viewpoint of VRRP and VRRPE."
INDEX { ifIndex}
::= { snVrrpIf2Table 1 }
SnVrrpIf2Entry ::=
SEQUENCE {
snVrrpIf2AuthType
INTEGER,
snVrrpIf2AuthPassword
OCTET STRING,
snVrrpIf2RxHeaderErrCnts
Counter32,
snVrrpIf2RxAuthTypeErrCnts
Counter32,
snVrrpIf2RxAuthPwdMismatchErrCnts
Counter32,
snVrrpIf2RxVridErrCnts
Counter32
}
snVrrpIf2AuthType OBJECT-TYPE
SYNTAX INTEGER {
noAuth(0),
simpleTextPasswd(1),
ipAuthHeader(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The authentication type of this interface."
::= { snVrrpIf2Entry 1 }
snVrrpIf2AuthPassword OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..8))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The simple text password is allowed if only if
the snVrrpIf2AuthType type is simpleTextPasswd(1)."
::= { snVrrpIf2Entry 2 }
snVrrpIf2RxHeaderErrCnts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The received Header error counts in this interface."
::= { snVrrpIf2Entry 3 }
snVrrpIf2RxAuthTypeErrCnts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The received authentication type error counts in this interface."
::= { snVrrpIf2Entry 4 }
snVrrpIf2RxAuthPwdMismatchErrCnts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The received authentication password mismatched error counts in this interface."
::= { snVrrpIf2Entry 5 }
snVrrpIf2RxVridErrCnts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The received unfound VRID error counts in this interface."
::= { snVrrpIf2Entry 6 }
-- Section 4: VRRP virtual Router Configuration Table.
-- The VRRP (Virtual Router Redundancy Protocol) Virtual Router Table augments
-- with VRRP specific information.
-- The following table is deprecated by snVrrpVirRtr2Table, which is
-- ifIndex based table
snVrrpVirRtrTable OBJECT-TYPE
SYNTAX SEQUENCE OF SnVrrpVirRtrEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"The VRRP virtual router Entry describes one virtual router from
the viewpoint of VRRP."
::= { snVrrpVirRtr 1 }
snVrrpVirRtrEntry OBJECT-TYPE
SYNTAX SnVrrpVirRtrEntry
MAX-ACCESS not-accessible
STATUS deprecated
DESCRIPTION
"The VRRP virtual router Entry describes one virtual router from
the viewpoint of VRRP."
INDEX { snVrrpVirRtrPort, snVrrpVirRtrId }
::= { snVrrpVirRtrTable 1 }
SnVrrpVirRtrEntry ::=
SEQUENCE {
snVrrpVirRtrPort
Integer32,
snVrrpVirRtrId
INTEGER,
snVrrpVirRtrOwnership
INTEGER,
snVrrpVirRtrCfgPriority
INTEGER,
snVrrpVirRtrTrackPriority
INTEGER,
snVrrpVirRtrCurrPriority
INTEGER,
snVrrpVirRtrHelloInt
INTEGER,
snVrrpVirRtrDeadInt
INTEGER,
snVrrpVirRtrPreemptMode
INTEGER,
snVrrpVirRtrState
INTEGER,
snVrrpVirRtrActivate
INTEGER,
snVrrpVirRtrIpAddrMask
OCTET STRING,
snVrrpVirRtrTrackPortMask
OCTET STRING,
snVrrpVirRtrTrackVifMask
OCTET STRING,
snVrrpVirRtrRowStatus
INTEGER,
snVrrpVirRtrRxArpPktDropCnts
Counter32,
snVrrpVirRtrRxIpPktDropCnts
Counter32,
snVrrpVirRtrRxPortMismatchCnts
Counter32,
snVrrpVirRtrRxNumOfIpMismatchCnts
Counter32,
snVrrpVirRtrRxIpMismatchCnts
Counter32,
snVrrpVirRtrRxHelloIntMismatchCnts
Counter32,
snVrrpVirRtrRxPriorityZeroFromMasterCnts
Counter32,
snVrrpVirRtrRxHigherPriorityCnts
Counter32,
snVrrpVirRtrTransToMasterStateCnts
Counter32,
snVrrpVirRtrTransToBackupStateCnts
Counter32,
snVrrpVirRtrCurrDeadInt
Integer32,
snVrrpVirRtrTrackPortList
OCTET STRING,
snVrrpVirRtrTrackVifPortList
OCTET STRING
}
snVrrpVirRtrPort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The IP port of this VRRP interface."
::= { snVrrpVirRtrEntry 1 }
snVrrpVirRtrId OBJECT-TYPE
SYNTAX INTEGER (1..255)
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"One of the virtual router ID of this VRRP interface."
::= { snVrrpVirRtrEntry 2 }
snVrrpVirRtrOwnership OBJECT-TYPE
SYNTAX INTEGER {
incomplete(0),
owner(1),
backup(2)
}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"The ownership of this VRRP router interface
can be set either owner(1) or backup(2).
VirRtr SNMP-GET returns incomplete(0), it means
no IP address has assigned to this VRRP router interface."
::= { snVrrpVirRtrEntry 3 }
snVrrpVirRtrCfgPriority OBJECT-TYPE
SYNTAX INTEGER (3..254)
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"The higher the number the higher the priority is.
This parameter decides which backup router should becomes
the Active Router for the interface. A backup Router with
higher priority selected to becomes the Active Router.
Therefore, this Object can be set if only if snVrrpVirRtrOwnership
is set to backup(2)."
DEFVAL { 100 }
::= { snVrrpVirRtrEntry 4 }
snVrrpVirRtrTrackPriority OBJECT-TYPE
SYNTAX INTEGER (1..254)
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"The higher the number the higher the priority is.
after this object is configured, the snVrrpVirRtrCurrPriority
of this interface will be adjusted dynamically with this
track priority when the Track Port states first
changes from UP to DOWN."
::= { snVrrpVirRtrEntry 5 }
snVrrpVirRtrCurrPriority OBJECT-TYPE
SYNTAX INTEGER (1..254)
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The higher the number the higher the priority is.
This object will be adjusted dynamically with the
track priority when the Track Port states first
changes from UP to DOWN."
::= { snVrrpVirRtrEntry 6 }
snVrrpVirRtrHelloInt OBJECT-TYPE
SYNTAX INTEGER (1..84)
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Time interval between advertisements (seconds)."
DEFVAL { 1 }
::= { snVrrpVirRtrEntry 7 }
snVrrpVirRtrDeadInt OBJECT-TYPE
SYNTAX INTEGER (1..84)
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"Dead interval (seconds)."
DEFVAL { 1 }
::= { snVrrpVirRtrEntry 8 }
snVrrpVirRtrPreemptMode OBJECT-TYPE
SYNTAX INTEGER { disabled(0), enabled(1) }
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"This mode controls whether a higher priority Backup router
preempts a lower priority Master. The mode with enabled(1)
allow preemption and disabled(0) prohibit preemption."
DEFVAL { enabled }
::= { snVrrpVirRtrEntry 9 }
snVrrpVirRtrState OBJECT-TYPE
SYNTAX INTEGER {
init(0),
master(1),
backup(2)
}
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"This object specifies the VRRP Router's interface state as:
init(0)...initialization state.
master(1)...master state.
backup(2)...backup state."
::= { snVrrpVirRtrEntry 10 }
snVrrpVirRtrActivate OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1)
}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"This object specifies the VRRP Router's activate command as:
disabled(0)...deactivate this VRRP Router.
enabled(1)....activate this VRRP Router."
::= { snVrrpVirRtrEntry 11 }
snVrrpVirRtrIpAddrMask OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(64))
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"The numbers of IP Addresses of this virtual router of this interface."
::= { snVrrpVirRtrEntry 12 }
snVrrpVirRtrTrackPortMask OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(4..32))
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"This object specifies the identity of the physical port
whose state is to be monitored. Each bit is a port of
the system. Default value is 0. VirRtr this object is configured
then the Preference Level of this interface will be adjusted
dynamically depending on the state of the Track Port.
The interface's Preference Level is reduced by value of
Preference Level parameter when the Track Port states first
changes from UP to DOWN. When the Track Port next comes up
the interface's Preference Level is increased by the amount
specified by the Preference Level.
The Chassis/Stackable router VRRP Track port membership.
The size of the OCTET STRING for Chassis is 32.
The size of the OCTET STRING for Stackable is 4.
(It was obsoleted after release 07100, replaced by snVrrpVirRtrTrackPortList)"
::= { snVrrpVirRtrEntry 13 }
snVrrpVirRtrTrackVifMask OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(4..512))
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"This object specifies the identity of the virtual interface
whose state is to be monitored. Each bit is a port of
the system. Default value is 0. VirRtr this object is configured
then the Preference Level of this interface will be adjusted
dynamically depending on the state of the Track Port.
The interface's Preference Level is reduced by value of
Preference Level parameter when the Track Port states first
changes from UP to DOWN. When the Track Port next comes up
the interface's Preference Level is increased by the amount
specified by the Preference Level.
The Chassis/Stackable router VRRP Track port membership
The size of the OCTET STRING for Chassis is 8.
The size of the OCTET STRING for Stackable is 4.
(It was obsoleted after release 07100, replaced by snVrrpVirRtrTrackVifPortList)"
::= { snVrrpVirRtrEntry 14 }
snVrrpVirRtrRowStatus OBJECT-TYPE
SYNTAX INTEGER {
invalid(1),
valid(2),
delete(3),
create(4),
modify(5)
}
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"This object is used to create and
delete row in the table and control
if they are used. The values
that can be written are:
delete(3)...deletes the row
create(4)...creates a new row
modify(5)...modifies an existing row
VirRtr the row exists, then a SET with
value of create(4) returns error
'badValue'. Deleted rows go away
immediately. The following values
can be returned on reads:
noSuch(0)...no such row
invalid(1)...Setting it to 'invalid' has the effect of
rendering it inoperative..
valid(2)....the row exists and is valid"
::= { snVrrpVirRtrEntry 15 }
snVrrpVirRtrRxArpPktDropCnts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The received VRRP ARP Packet Drop Counts."
::= { snVrrpVirRtrEntry 16 }
snVrrpVirRtrRxIpPktDropCnts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The received VRRP IP Packet Drop Counts."
::= { snVrrpVirRtrEntry 17 }
snVrrpVirRtrRxPortMismatchCnts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The received VRRP Port mismatching Counts."
::= { snVrrpVirRtrEntry 18 }
snVrrpVirRtrRxNumOfIpMismatchCnts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The received VRRP Number of IP Addresses mismatching Counts."
::= { snVrrpVirRtrEntry 19 }
snVrrpVirRtrRxIpMismatchCnts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The received VRRP IP Address mismatching Counts."
::= { snVrrpVirRtrEntry 20 }
snVrrpVirRtrRxHelloIntMismatchCnts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The counts of the virtual router interface with hello interval mismatch counts."
::= { snVrrpVirRtrEntry 21 }
snVrrpVirRtrRxPriorityZeroFromMasterCnts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The counts of the virtual router interface with Priority zero from the master."
::= { snVrrpVirRtrEntry 22 }
snVrrpVirRtrRxHigherPriorityCnts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The counts of the virtual router interface with higher Priority."
::= { snVrrpVirRtrEntry 23 }
snVrrpVirRtrTransToMasterStateCnts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The counts of the virtual router interface transition to master state."
::= { snVrrpVirRtrEntry 24 }
snVrrpVirRtrTransToBackupStateCnts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"The counts of the virtual router interface transition to backup state."
::= { snVrrpVirRtrEntry 25 }
snVrrpVirRtrCurrDeadInt OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS deprecated
DESCRIPTION
"Current Dead interval (in 100 milliseconds)."
::= { snVrrpVirRtrEntry 26 }
snVrrpVirRtrTrackPortList OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"This object specifies the identity of the physical port
whose state is to be monitored. Each port index is a
16-bit integer in big endian order. 8-bit is the slot
number, the other 8-bit is the port number. Default value
is 0 length octet string. If this object is configured
then the Preference Level of this interface will be adjusted
dynamically depending on the state of the Track Port.
The interface's Preference Level is reduced by value of
Preference Level parameter when the Track Port states first
changes from UP to DOWN. When the Track Port next comes up
the interface's Preference Level is increased by the amount
specified by the Preference Level.
The router VRRP physical track port membership."
::= { snVrrpVirRtrEntry 27 }
snVrrpVirRtrTrackVifPortList OBJECT-TYPE
SYNTAX OCTET STRING
MAX-ACCESS read-write
STATUS deprecated
DESCRIPTION
"This object specifies the identity of the virtual interface
whose state is to be monitored. Each port index is a
16-bit integer in big endian order. Default value
is 0 length octet string. If this object is configured
then the Preference Level of this interface will be adjusted
dynamically depending on the state of the Track Port.
The interface's Preference Level is reduced by value of
Preference Level parameter when the Track Port states first
changes from UP to DOWN. When the Track Port next comes up
the interface's Preference Level is increased by the amount
specified by the Preference Level.
The router VRRP virtual port track membership."
::= { snVrrpVirRtrEntry 28 }
-- Section 5: VRRP and VRRPE Virtual Router Configuration Table, ifIndex based
-- The VRRP(Virtual Router Redundancy Protocol, rfc 2338 based, made an
-- enhancement!) and VRRPE (Virtual Router Redundancy Protocol foundry extended)
-- configuration.
-- Added snVrrpVirRtr2CurrDeadInt, snVrrpVirRtr2AdvertiseBackup, SnVrrpVirRtr2VirtualMacAddr
-- SnVrrpVirRtr2IpAddrCount, SnVrrpVirRtr2MasterIpAddr as new objects
-- and deleted port masks objects and virtual interface track port list.
snVrrpVirRtr2Table OBJECT-TYPE
SYNTAX SEQUENCE OF SnVrrpVirRtr2Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Vrrp and Vrrpe virtual router Entry describes one virtual router from
the viewpoint of Vrrp and Vrrpe."
::= { snVrrpVirRtr2 1 }
snVrrpVirRtr2Entry OBJECT-TYPE
SYNTAX SnVrrpVirRtr2Entry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The Vrrp and Vrrpe virtual router Entry describes one virtual router from
the viewpoint of Vrrp and Vrrpe."
INDEX { ifIndex, snVrrpVirRtr2Id }
::= { snVrrpVirRtr2Table 1 }
SnVrrpVirRtr2Entry ::=
SEQUENCE {
snVrrpVirRtr2Id
INTEGER,
snVrrpVirRtr2Ownership
INTEGER,
snVrrpVirRtr2CfgPriority
INTEGER,
snVrrpVirRtr2TrackPriority
INTEGER,
snVrrpVirRtr2CurrPriority
INTEGER,
snVrrpVirRtr2HelloInt
INTEGER,
snVrrpVirRtr2DeadInt
INTEGER,
snVrrpVirRtr2PreemptMode
INTEGER,
snVrrpVirRtr2State
INTEGER,
snVrrpVirRtr2IpAddrMask
OCTET STRING,
snVrrpVirRtr2Activate
INTEGER,
snVrrpVirRtr2BackupInt
INTEGER,
snVrrpVirRtr2RowStatus
INTEGER,
snVrrpVirRtr2RxArpPktDropCnts
Counter32,
snVrrpVirRtr2RxIpPktDropCnts
Counter32,
snVrrpVirRtr2RxPortMismatchCnts
Counter32,
snVrrpVirRtr2RxNumOfIpMismatchCnts
Counter32,
snVrrpVirRtr2RxIpMismatchCnts
Counter32,
snVrrpVirRtr2RxHelloIntMismatchCnts
Counter32,
snVrrpVirRtr2RxPriorityZeroFromMasterCnts
Counter32,
snVrrpVirRtr2RxHigherPriorityCnts
Counter32,
snVrrpVirRtr2TransToMasterStateCnts
Counter32,
snVrrpVirRtr2TransToBackupStateCnts
Counter32,
snVrrpVirRtr2CurrDeadInt
Integer32,
snVrrpVirRtr2TrackPortList
OCTET STRING,
snVrrpVirRtr2AdvertiseBackup
INTEGER,
snVrrpVirRtr2MasterIpAddr
IpAddress,
snVrrpVirRtr2IpAddrCount
INTEGER,
snVrrpVirRtr2VirtualMacAddr
MacAddress
}
snVrrpVirRtr2Id OBJECT-TYPE
SYNTAX INTEGER (1..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"One of the virtual router ID of this Vrrp and Vrrpe interface."
::= { snVrrpVirRtr2Entry 1 }
snVrrpVirRtr2Ownership OBJECT-TYPE
SYNTAX INTEGER {
incomplete(0),
owner(1),
backup(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The ownership of this Vrrp router interface
can be set either owner(1) or backup(2).
VirRtr SNMP-GET returns incomplete(0), it means
no IP address has assigned to this Vrrp router interface.
vrrpe protocol has no owner(1), can only be set to backup(2) or incomplete(0)."
::= { snVrrpVirRtr2Entry 2 }
snVrrpVirRtr2CfgPriority OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the priority to be used for the
virtual router master election process. Higher values imply
higher priority.
A priority of '0', although not settable, is sent by
the master router to indicate that this router has ceased
to participate in VRRP and a backup virtual router should
transition to become a new master.
A priority of 255 is only for VRRP - owner. Not valid for number to
configure VRRPE."
DEFVAL { 100 }
::= { snVrrpVirRtr2Entry 3 }
snVrrpVirRtr2TrackPriority OBJECT-TYPE
SYNTAX INTEGER (1..254)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The higher the number the higher the priority is.
After this object is configured, the snVrrpVirRtr2CurrPriority
of this interface will be adjusted dynamically with this
track priority when the Track Port states first
changes from UP to DOWN."
::= { snVrrpVirRtr2Entry 4 }
snVrrpVirRtr2CurrPriority OBJECT-TYPE
SYNTAX INTEGER (1..254)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The higher the number the higher the priority is.
This object will be adjusted dynamically with the
track priority when the Track Port states first
changes from UP to DOWN."
::= { snVrrpVirRtr2Entry 5 }
snVrrpVirRtr2HelloInt OBJECT-TYPE
SYNTAX INTEGER (1..84)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Time interval between advertisements (seconds)."
DEFVAL { 1 }
::= { snVrrpVirRtr2Entry 6 }
snVrrpVirRtr2DeadInt OBJECT-TYPE
SYNTAX INTEGER (0..84)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Dead interval (seconds)."
DEFVAL { 1 }
::= { snVrrpVirRtr2Entry 7 }
snVrrpVirRtr2PreemptMode OBJECT-TYPE
SYNTAX INTEGER { disabled(0), enabled(1) }
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This mode controls whether a higher priority Backup router
preempts a lower priority Master. The mode with enabled(1)
allow preemption and disabled(0) prohibit preemption."
DEFVAL { enabled }
::= { snVrrpVirRtr2Entry 8 }
snVrrpVirRtr2State OBJECT-TYPE
SYNTAX INTEGER {
init(0),
master(1),
backup(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This object specifies the Vrrp and vrrpe Router's interface state as:
init(0)...initialization state.
master(1)...master state.
backup(2)...backup state."
::= { snVrrpVirRtr2Entry 9}
snVrrpVirRtr2IpAddrMask OBJECT-TYPE
SYNTAX OCTET STRING (SIZE(4..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The numbers of IP Addresses of this virtual router of this interface."
::= { snVrrpVirRtr2Entry 10 }
snVrrpVirRtr2Activate OBJECT-TYPE
SYNTAX INTEGER {
disabled(0),
enabled(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object specifies the Vrrp Router's activate command as:
disabled(0)...deactivate this Vrrp and Vrrpe Routers.
enabled(1)....activate this Vrrp and Vrrpe Routers."
::= { snVrrpVirRtr2Entry 11 }
snVrrpVirRtr2BackupInt OBJECT-TYPE
SYNTAX INTEGER (60..3600)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Time interval between backup routers hello message advertisements (seconds)."
DEFVAL { 60 }
::= { snVrrpVirRtr2Entry 12 }
snVrrpVirRtr2RowStatus OBJECT-TYPE
SYNTAX INTEGER {
invalid(1),
valid(2),
delete(3),
create(4),
modify(5)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object is used to create and
delete row in the table and control
if they are used. The values
that can be written are:
delete(3)...deletes the row
create(4)...creates a new row
modify(5)...modifies an existing row
VirRtr the row exists, then a SET with
value of create(4) returns error
'badValue'. Deleted rows go away
immediately. The following values
can be returned on reads:
noSuch(0)...no such row
invalid(1)...Setting it to 'invalid' has the effect of
rendering it inoperative..
valid(2)....the row exists and is valid"
::= { snVrrpVirRtr2Entry 13 }