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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
|
-- ================================================================
-- Copyright (C) 2017 by HUAWEI TECHNOLOGIES. All rights reserved
--
-- Description:The mib file is for management of VRRP extension
-- Reference:
-- Version: V2.14
-- History:
-- 2006.6.20, publish
-- ================================================================
HUAWEI-VRRP-EXT-MIB DEFINITIONS ::= BEGIN
IMPORTS
hwDatacomm
FROM HUAWEI-MIB
NOTIFICATION-GROUP, MODULE-COMPLIANCE, OBJECT-GROUP
FROM SNMPv2-CONF
Integer32, Counter64, Counter32, OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE
FROM SNMPv2-SMI
RowStatus, DisplayString, TimeStamp
FROM SNMPv2-TC
InterfaceIndex, ifIndex
FROM IF-MIB
VrId, vrrpOperState, vrrpOperMasterIpAddr, vrrpOperPrimaryIpAddr
FROM VRRP-MIB
EnabledStatus
FROM P-BRIDGE-MIB
ifName
FROM IF-MIB
sysName
FROM SNMPv2-MIB
IpAddress
FROM SNMPv2-SMI;
hwVrrpExt MODULE-IDENTITY
LAST-UPDATED "201708170000Z"
ORGANIZATION
"Huawei Technologies Co.,Ltd."
CONTACT-INFO
"Huawei Industrial Base
Bantian, Longgang
Shenzhen 518129
People's Republic of China
Website: http://www.huawei.com
Email: support@huawei.com
"
DESCRIPTION
"It supplies for VRRP tracking function."
REVISION "201708170000Z"
DESCRIPTION
"Change the hwVrrpExtStateChangeReasonString Description."
REVISION "201509100000Z"
DESCRIPTION
"Add the hwVrrpExtTrapExpectStateChange trap and hwVrrpExtTrapExpectStateResume trap."
REVISION "201507020000Z"
DESCRIPTION
"Add the table of fast-vrrp."
REVISION "201308310000Z"
DESCRIPTION
"Fix the errors checked by a tool."
::= { hwDatacomm 127 }
hwVrrpExtGlobal OBJECT IDENTIFIER ::= { hwVrrpExt 1 }
hwVrrpExtFreeArpInterval OBJECT-TYPE
SYNTAX Integer32 (0|30..1200)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This object indicates the interval at which gratuitous ARP packets are sent. Zero means the gratuitous-arp sending function is disable."
::= { hwVrrpExtGlobal 1 }
hwVrrpExtVIPPingCtr OBJECT-TYPE
SYNTAX INTEGER
{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A switch decides whether the system responds to a request message or not,
which is sent to virtual ip address. The default value is enable."
::= { hwVrrpExtGlobal 2 }
hwVrrpExtSsTimer OBJECT-TYPE
SYNTAX Integer32 (0..255)
UNITS "seconds"
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A switch decides whether the system enable VRRP SS function and set the size of VRRP SS timer or not,
which decide the VRRP packet advertisement interval during slave switchover. The default value is 100s.
But for the VRRP v3 version,this time value is truncated to 40950 milliseconds which is the maximum value according to the RFC 5798."
::= { hwVrrpExtGlobal 3 }
hwVrrpExtLearnAdvIntervalFlag OBJECT-TYPE
SYNTAX EnabledStatus
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A switch decides whether the system learn VRRP packet advertisement interval or not,
which is sended from the master router in one virtual router standby. The default value is enable."
::= { hwVrrpExtGlobal 4 }
hwVrrpExtProtocolVersion OBJECT-TYPE
SYNTAX INTEGER
{
v2(2),
v3(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Current protocol verison for VRRP on the specified device.The default value is v2(2) ,
and the other value for this element is v3(3)."
DEFVAL { 2 }
::= { hwVrrpExtGlobal 5 }
hwVrrpExtSendV3AdverPktMode OBJECT-TYPE
SYNTAX INTEGER
{
v2only(1),
v3only(2),
v2v3both(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This value specifies the mode of sending advertisement packet for VRRP v3.It has three
configurable value: VRRP_PROTO_V3_SEND_V2_ONLY(1), VRRP_PROTO_V3_SEND_V3_ONLY(2) and
VRRP_PROTO_V3_SEND_V3V2_BOTH(3)."
DEFVAL { 2 }
::= { hwVrrpExtGlobal 6 }
hwVrrpExtStateChangeReasonString OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (0..255))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Reason of VRRP state transition."
::= { hwVrrpExtGlobal 7 }
vrrpExtOperations OBJECT IDENTIFIER ::= { hwVrrpExt 2 }
hwVrrpTrackInterTable OBJECT-TYPE
SYNTAX SEQUENCE OF HWVrrpTrackInterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The VRRP tracking interface table, it can accomodate eight rows at most."
::= { vrrpExtOperations 1 }
hwVrrpTrackInterEntry OBJECT-TYPE
SYNTAX HWVrrpTrackInterEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the VRRP tracking interface table."
INDEX { hwVrrpTrackInterVRID,hwVrrpTrackInterStandByIfnet,hwVrrpTrackInterIfnet }
::= { hwVrrpTrackInterTable 1 }
HWVrrpTrackInterEntry ::=
SEQUENCE {
hwVrrpTrackInterVRID
VrId,
hwVrrpTrackInterStandByIfnet
InterfaceIndex,
hwVrrpTrackInterIfnet
InterfaceIndex,
hwVrrpTrackInterPriReduce
Integer32,
hwVrrpTrackInterOperRowStatus
RowStatus,
hwVrrpTrackInterPriIncrease
Integer32
}
hwVrrpTrackInterVRID OBJECT-TYPE
SYNTAX VrId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of the VRRP tracking interface table, it identifies the standby's ID."
::= { hwVrrpTrackInterEntry 1 }
hwVrrpTrackInterStandByIfnet OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of the VRRP tracking interface table, it identifies the standby's interface index."
::= { hwVrrpTrackInterEntry 2 }
hwVrrpTrackInterIfnet OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of the VRRP tracking interface table, it identifies the tracked interface index."
::= { hwVrrpTrackInterEntry 3 }
hwVrrpTrackInterPriReduce OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If the tracked interface is down, priority of standby will reduce this value. '0'
specifies this attribute hasn't been configured. The minimum availability value is '1'."
::= { hwVrrpTrackInterEntry 4 }
hwVrrpTrackInterOperRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status variable. "
::= { hwVrrpTrackInterEntry 5 }
hwVrrpTrackInterPriIncrease OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If the tracked interface is down, this value will be added to the priority of standby.
'0' specifies this attribute hasn't been configured. The minimum availability value is '1'."
::= { hwVrrpTrackInterEntry 6 }
hwVrrpTrackBfdTable OBJECT-TYPE
SYNTAX SEQUENCE OF HWVrrpTrackBfdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The VRRP tracking BFD table, it can append eight rows at most."
::= { vrrpExtOperations 2 }
hwVrrpTrackBfdEntry OBJECT-TYPE
SYNTAX HWVrrpTrackBfdEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the VRRP tracking BFD table."
INDEX { hwVrrpTrackInterVRID,hwVrrpTrackInterStandByIfnet,hwVrrpTrackBfdId }
::= { hwVrrpTrackBfdTable 1 }
HWVrrpTrackBfdEntry ::=
SEQUENCE {
hwVrrpTrackBfdId
Integer32,
hwVrrpTrackBfdPriReduce
Integer32,
hwVrrpTrackBfdOperRowStatus
RowStatus,
hwVrrpTrackBfdPriIncrease
Integer32,
hwVrrpTrackBfdType
INTEGER,
hwVrrpTrackBfdName
DisplayString
}
hwVrrpTrackBfdId OBJECT-TYPE
SYNTAX Integer32 (1..16383)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of the table, it only identifies BFD link."
::= { hwVrrpTrackBfdEntry 1 }
hwVrrpTrackBfdPriReduce OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If the tracked BFD is down, the priority of standby will reduce this value.
'0' specifies this attribute hasn't been configured.
The minimum availability value is '1'."
::= { hwVrrpTrackBfdEntry 2 }
hwVrrpTrackBfdOperRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status variable. "
::= { hwVrrpTrackBfdEntry 3 }
hwVrrpTrackBfdPriIncrease OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If the tracked BFD is down, this value will be added to the priority of standby.
'0' specifies this attribute hasn't been configured.
The minimum availability value is '1'."
::= { hwVrrpTrackBfdEntry 4 }
hwVrrpTrackBfdType OBJECT-TYPE
SYNTAX INTEGER
{
link(1),
peer(2),
normal(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The bfd type that vrrp tracks,including Normal, Link, Peer.
The attribute cannot be modified after created.
"
DEFVAL { normal }
::= { hwVrrpTrackBfdEntry 5 }
hwVrrpTrackBfdName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..15))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The bfd name that vrrp tracks. The attribute cannot be modified after created."
::= { hwVrrpTrackBfdEntry 6 }
hwAdminVrrpCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF HWAdminVrrpCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The admin-vrrp's configure table."
::= { vrrpExtOperations 3 }
hwAdminVrrpCfgEntry OBJECT-TYPE
SYNTAX HWAdminVrrpCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The admin-vrrp's configure entry."
INDEX { hwAdminVrrpCfgIfIndex, hwAdminVrrpCfgVRID}
::= { hwAdminVrrpCfgTable 1 }
HWAdminVrrpCfgEntry ::=
SEQUENCE {
hwAdminVrrpCfgIfIndex
InterfaceIndex,
hwAdminVrrpCfgVRID
VrId,
hwAdminVrrpCfgOperRowStatus
RowStatus,
hwAdminVrrpCfgIgnoreIfDownMode
EnabledStatus
}
hwAdminVrrpCfgIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The admin-vrrp's configure interface index."
::= { hwAdminVrrpCfgEntry 1 }
hwAdminVrrpCfgVRID OBJECT-TYPE
SYNTAX VrId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The admin-vrrp's configure VRID."
::= { hwAdminVrrpCfgEntry 2 }
hwAdminVrrpCfgOperRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status variable. "
::= { hwAdminVrrpCfgEntry 3 }
hwAdminVrrpCfgIgnoreIfDownMode OBJECT-TYPE
SYNTAX EnabledStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The mode of ignore interface down. "
DEFVAL { disabled }
::= { hwAdminVrrpCfgEntry 4 }
hwAdminVrrpMemberTable OBJECT-TYPE
SYNTAX SEQUENCE OF HWAdminVrrpMemberEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The member-vrrp's configure table."
::= { vrrpExtOperations 4 }
hwAdminVrrpMemberEntry OBJECT-TYPE
SYNTAX HWAdminVrrpMemberEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The admin-vrrp's configure entry."
INDEX { hwAdminVrrpCfgIfIndex,hwAdminVrrpCfgVRID,hwAdminVrrpMemberIfIndex,hwAdminVrrpMemberVRID}
::= { hwAdminVrrpMemberTable 1 }
HWAdminVrrpMemberEntry ::=
SEQUENCE {
hwAdminVrrpMemberIfIndex
InterfaceIndex,
hwAdminVrrpMemberVRID
VrId,
hwAdminVrrpMemberDiscardPkts
Counter32,
hwAdminVrrpMemberOperRowStatus
RowStatus,
hwAdminVrrpMemberFlowdownMode
EnabledStatus
}
hwAdminVrrpMemberIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The admin-vrrp's member interface index."
::= { hwAdminVrrpMemberEntry 1 }
hwAdminVrrpMemberVRID OBJECT-TYPE
SYNTAX VrId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The admin-vrrp's member VRID."
::= { hwAdminVrrpMemberEntry 2 }
hwAdminVrrpMemberDiscardPkts OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The admin-vrrp's member discarded packets."
::= { hwAdminVrrpMemberEntry 3 }
hwAdminVrrpMemberOperRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status variable. "
::= { hwAdminVrrpMemberEntry 4 }
hwAdminVrrpMemberFlowdownMode OBJECT-TYPE
SYNTAX EnabledStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The mode of flowdown interface. "
DEFVAL { enabled }
::= { hwAdminVrrpMemberEntry 5 }
hwVrrpStatResetTable OBJECT-TYPE
SYNTAX SEQUENCE OF HWVrrpStatResetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The vrrp statistics reset Table."
::= { vrrpExtOperations 5 }
hwVrrpStatResetEntry OBJECT-TYPE
SYNTAX HWVrrpStatResetEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The vrrp statistics reset entry."
INDEX { hwVrrpStatResetIfIndex,hwVrrpStatResetVRID}
::= { hwVrrpStatResetTable 1 }
HWVrrpStatResetEntry ::=
SEQUENCE {
hwVrrpStatResetIfIndex
InterfaceIndex,
hwVrrpStatResetVRID
VrId,
hwVrrpStatResetFlag
INTEGER
}
hwVrrpStatResetIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The vrrp's configure interface index."
::= { hwVrrpStatResetEntry 1 }
hwVrrpStatResetVRID OBJECT-TYPE
SYNTAX VrId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The vrrp vrid."
::= { hwVrrpStatResetEntry 2 }
hwVrrpStatResetFlag OBJECT-TYPE
SYNTAX INTEGER
{
enable(1),
disable(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"A reset signal of vrrp statistics. "
DEFVAL { disable }
::= { hwVrrpStatResetEntry 3 }
hwAdminVrrpTrackIfTable OBJECT-TYPE
SYNTAX SEQUENCE OF HwAdminVrrpTrackIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The interface bound to VRRP table."
::= { vrrpExtOperations 6 }
hwAdminVrrpTrackIfEntry OBJECT-TYPE
SYNTAX HwAdminVrrpTrackIfEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Entries of the interface bound to VRRP table."
INDEX{ hwAdminVrrpTrackIfIndex }
::= { hwAdminVrrpTrackIfTable 1}
HwAdminVrrpTrackIfEntry ::=
SEQUENCE {
hwAdminVrrpTrackIfIndex
InterfaceIndex,
hwAdminVrrpIfIndex
InterfaceIndex,
hwAdminVrrpVrid
VrId,
hwAdminVrrpTrackIfRowStatus
RowStatus
}
hwAdminVrrpTrackIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The number of the interface."
::= { hwAdminVrrpTrackIfEntry 1 }
hwAdminVrrpIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The administrator VRRP's configure interface index."
::= { hwAdminVrrpTrackIfEntry 2 }
hwAdminVrrpVrid OBJECT-TYPE
SYNTAX VrId
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The administrator VRRP vrid."
::= { hwAdminVrrpTrackIfEntry 3 }
hwAdminVrrpTrackIfRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Current operation status of the row."
::= { hwAdminVrrpTrackIfEntry 4 }
hwVrrpTrackEfmTable OBJECT-TYPE
SYNTAX SEQUENCE OF HWVrrpTrackEfmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The VRRP tracking EFM table."
::= { vrrpExtOperations 7 }
hwVrrpTrackEfmEntry OBJECT-TYPE
SYNTAX HWVrrpTrackEfmEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the VRRP tracking EFM table."
INDEX { hwVrrpTrackEfmIfIndex,hwVrrpTrackEfmVRID,hwVrrpTrackEfmIndex }
::= { hwVrrpTrackEfmTable 1 }
HWVrrpTrackEfmEntry ::=
SEQUENCE {
hwVrrpTrackEfmIfIndex
InterfaceIndex,
hwVrrpTrackEfmIfName
DisplayString,
hwVrrpTrackEfmVRID
VrId,
hwVrrpTrackEfmIndex
InterfaceIndex,
hwVrrpTrackEfmName
DisplayString,
hwVrrpTrackEfmOperRowStatus
RowStatus
}
hwVrrpTrackEfmIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of the table, it identifies vrrp's interface index."
::= { hwVrrpTrackEfmEntry 1 }
hwVrrpTrackEfmIfName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A textual string containing information about the interface of vrrp."
::= { hwVrrpTrackEfmEntry 2 }
hwVrrpTrackEfmVRID OBJECT-TYPE
SYNTAX VrId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of the table, it identifies vrrp's vrid."
::= { hwVrrpTrackEfmEntry 3 }
hwVrrpTrackEfmIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of the table, it identifies EFM's interface index."
::= { hwVrrpTrackEfmEntry 4 }
hwVrrpTrackEfmName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..255))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"A textual string containing information about the interface of efm."
::= { hwVrrpTrackEfmEntry 5 }
hwVrrpTrackEfmOperRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status variable. "
::= { hwVrrpTrackEfmEntry 6 }
hwVrrpTriggerRouteTable OBJECT-TYPE
SYNTAX SEQUENCE OF HWVrrpTriggerRouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The VRRP trigger route table."
::= { vrrpExtOperations 8 }
hwVrrpTriggerRouteEntry OBJECT-TYPE
SYNTAX HWVrrpTriggerRouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the VRRP trigger route table."
INDEX { hwVrrpTriggerRouteIfIndex}
::= { hwVrrpTriggerRouteTable 1 }
HWVrrpTriggerRouteEntry ::=
SEQUENCE {
hwVrrpTriggerRouteIfIndex
InterfaceIndex,
hwVrrpTriggerRouteMode
INTEGER,
hwVrrpTriggerRouteOperRowStatus
RowStatus
}
hwVrrpTriggerRouteIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of the table, it identifies vrrp's interface index."
::= { hwVrrpTriggerRouteEntry 1 }
hwVrrpTriggerRouteMode OBJECT-TYPE
SYNTAX INTEGER
{
enable(1),
disable(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A switch decides whether the system responds to a request message or not,
which is sent to virtual ip address. "
::= { hwVrrpTriggerRouteEntry 2 }
hwVrrpTriggerRouteOperRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status variable. "
::= { hwVrrpTriggerRouteEntry 51 }
hwVrrpCfgTable OBJECT-TYPE
SYNTAX SEQUENCE OF HWVrrpCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The VRRP configure table."
::= { vrrpExtOperations 9 }
hwVrrpCfgEntry OBJECT-TYPE
SYNTAX HWVrrpCfgEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the VRRP configure route table."
INDEX { hwVrrpCfgIfIndex,hwVrrpCfgVrId }
::= { hwVrrpCfgTable 1 }
HWVrrpCfgEntry ::=
SEQUENCE {
hwVrrpCfgIfIndex
InterfaceIndex,
hwVrrpCfgVrId
VrId,
hwVrrpCfgLinkBfdDownNumber
Integer32,
hwVrrpCfgMsecAdvInterval
Integer32,
hwVrrpExpectState
INTEGER,
hwVrrpCfgFastResumeFlag
INTEGER,
hwVrrpCfgOperRowStatus
RowStatus
}
hwVrrpCfgIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of the table, it identifies vrrp's interface index."
::= { hwVrrpCfgEntry 1 }
hwVrrpCfgVrId OBJECT-TYPE
SYNTAX VrId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The vrrp vrid."
::= { hwVrrpCfgEntry 2 }
hwVrrpCfgLinkBfdDownNumber OBJECT-TYPE
SYNTAX Integer32 (0..8)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The state of link BFD will really down when reach the configured down number.
Enter '0' to delete this configuration."
::= { hwVrrpCfgEntry 3 }
hwVrrpCfgMsecAdvInterval OBJECT-TYPE
SYNTAX Integer32 (100..999)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The value of VRRP advertise interval in milliseconds, when the interval is less than 1 second,
otherwise it should be set or got in VRRP-MIB.
when the advertise interval is equal to or larger than 1 second, this value will be 0."
::= { hwVrrpCfgEntry 4 }
hwVrrpExpectState OBJECT-TYPE
SYNTAX INTEGER {
backup(2),
master(3)
}
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Expected state of VRRP.
Used by hwVrrpExtTrapExpectStateChange trap and hwVrrpExtTrapExpectStateResume trap."
::= { hwVrrpCfgEntry 5 }
hwVrrpCfgFastResumeFlag OBJECT-TYPE
SYNTAX INTEGER
{
enabled(1),
disabled(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A switch indicates whether the VRRP fast-resume function is enabled. "
DEFVAL { disabled }
::= { hwVrrpCfgEntry 50 }
hwVrrpCfgOperRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status variable. "
::= { hwVrrpCfgEntry 51 }
hwVrrpStatExtTable OBJECT-TYPE
SYNTAX SEQUENCE OF HWVrrpStatExtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The VRRP statistics extend table."
::= { vrrpExtOperations 10 }
hwVrrpStatExtEntry OBJECT-TYPE
SYNTAX HWVrrpStatExtEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in The VRRP statistics extend table."
INDEX { hwVrrpStatExtIfIndex,hwVrrpStatExtVRID }
::= { hwVrrpStatExtTable 1 }
HWVrrpStatExtEntry ::=
SEQUENCE {
hwVrrpStatExtIfIndex
InterfaceIndex,
hwVrrpStatExtVRID
VrId,
hwVrrpStatExtBecomeBackup
Counter32,
hwVrrpStatExtBecomeInit
Counter32,
hwVrrpStatExtCreateTime
DisplayString,
hwVrrpStatExtLastChangeTime
DisplayString
}
hwVrrpStatExtIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of the table, it identifies vrrp's interface index."
::= { hwVrrpStatExtEntry 1 }
hwVrrpStatExtVRID OBJECT-TYPE
SYNTAX VrId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The vrrp vrid."
::= { hwVrrpStatExtEntry 2 }
hwVrrpStatExtBecomeBackup OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of times that this virtual router's state
has transitioned to BACKUP."
::= { hwVrrpStatExtEntry 3 }
hwVrrpStatExtBecomeInit OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of times that this virtual router's state
has transitioned to INITIALIZE."
::= { hwVrrpStatExtEntry 4 }
hwVrrpStatExtCreateTime OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The create time of vrrp."
::= { hwVrrpStatExtEntry 5 }
hwVrrpStatExtLastChangeTime OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..40))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The last change time of vrrp."
::= { hwVrrpStatExtEntry 6 }
-- *******************************************************************
-- Trap Definitions
-- *******************************************************************
hwVrrpExtNotifications OBJECT IDENTIFIER ::= { vrrpExtOperations 30 }
hwVrrpExtTrapMasterDown NOTIFICATION-TYPE
OBJECTS {vrrpOperMasterIpAddr,
sysName,
ifName,
vrrpOperState,
hwVrrpExtStateChangeReasonString
}
STATUS current
DESCRIPTION
"The MasterDown trap indicates that the state of vrrp
has transitioned from 'Master' to other state. The other state
can be noactive(0), initialize(1) and backup(2)."
::= { hwVrrpExtNotifications 1 }
hwVrrpExtTrapNonMaster NOTIFICATION-TYPE
OBJECTS {vrrpOperPrimaryIpAddr,
sysName,
ifName,
vrrpOperState,
hwVrrpExtStateChangeReasonString
}
STATUS current
DESCRIPTION
"The NonMaster trap indicates that the state of vrrp
has transitioned between Backup and Initialize state."
::= { hwVrrpExtNotifications 2 }
hwVrrpExtTrapExpectStateChange NOTIFICATION-TYPE
OBJECTS {ifName,
hwVrrpExpectState,
hwVrrpExtStateChangeReasonString
}
STATUS current
DESCRIPTION
"The ExpectStateChange trap indicates that the state of vrrp
is inconsistant with the expected state."
::= { hwVrrpExtNotifications 3 }
hwVrrpExtTrapExpectStateResume NOTIFICATION-TYPE
OBJECTS {ifName,
hwVrrpExpectState,
hwVrrpExtStateChangeReasonString
}
STATUS current
DESCRIPTION
"The ExpectStateResume trap indicates that the state of vrrp
is consistant with the expected state."
::= { hwVrrpExtNotifications 4 }
vrrpExtConformance OBJECT IDENTIFIER ::= { hwVrrpExt 3 }
hwvrrpExtCompliances OBJECT IDENTIFIER ::= { vrrpExtConformance 1 }
hwvrrpExtGroups OBJECT IDENTIFIER ::= { hwvrrpExtCompliances 1 }
hwvrrpExtCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"The core compliance statement for all VRRP implementations."
MODULE -- this module
MANDATORY-GROUPS {
hwvrrpExtGlobalGroup,
hwvrrpExtTrackInterGroup,
hwvrrpExtTrackBFDGroup,
hwAdminVrrpCfgGroup,
hwAdminVrrpMemberGroup,
hwVrrpStatResetGroup,
hwAdminVrrpTrackIfGroup,
hwVrrpTrackEfmGroup,
hwVrrpTriggerRouteGroup,
hwVrrpCfgGroup,
hwVrrpStatExtGroup
}
::= { hwvrrpExtCompliances 2 }
hwvrrpExtGlobalGroup OBJECT-GROUP
OBJECTS { hwVrrpExtFreeArpInterval,
hwVrrpExtVIPPingCtr,
hwVrrpExtSsTimer,
hwVrrpExtLearnAdvIntervalFlag,
hwVrrpExtStateChangeReasonString,
hwVrrpExtSendV3AdverPktMode,
hwVrrpExtProtocolVersion
}
STATUS current
DESCRIPTION
"The VRRP global attributes."
::= { hwvrrpExtGroups 1 }
hwvrrpExtTrackInterGroup OBJECT-GROUP
OBJECTS { hwVrrpTrackInterPriReduce, hwVrrpTrackInterOperRowStatus, hwVrrpTrackInterPriIncrease }
STATUS current
DESCRIPTION
"The VRRP tracking inter attributes."
::= { hwvrrpExtGroups 2 }
hwvrrpExtTrackBFDGroup OBJECT-GROUP
OBJECTS { hwVrrpTrackBfdPriReduce, hwVrrpTrackBfdOperRowStatus, hwVrrpTrackBfdPriIncrease,hwVrrpTrackBfdType }
STATUS current
DESCRIPTION
"The VRRP tracking BFD attributes."
::= { hwvrrpExtGroups 3 }
hwAdminVrrpCfgGroup OBJECT-GROUP
OBJECTS { hwAdminVrrpCfgOperRowStatus }
STATUS current
DESCRIPTION
"The AdminVrrpCfg attributes."
::= { hwvrrpExtGroups 4 }
hwAdminVrrpMemberGroup OBJECT-GROUP
OBJECTS { hwAdminVrrpMemberDiscardPkts,hwAdminVrrpMemberOperRowStatus,hwAdminVrrpMemberFlowdownMode}
STATUS current
DESCRIPTION
"The AdminVrrpMember attributes."
::= { hwvrrpExtGroups 5 }
hwVrrpStatResetGroup OBJECT-GROUP
OBJECTS { hwVrrpStatResetFlag}
STATUS current
DESCRIPTION
"The VrrpStatReset attributes."
::= { hwvrrpExtGroups 6 }
hwAdminVrrpTrackIfGroup OBJECT-GROUP
OBJECTS { hwAdminVrrpIfIndex,hwAdminVrrpVrid,hwAdminVrrpTrackIfRowStatus }
STATUS current
DESCRIPTION
"The AdminVrrpTrackIf attributes."
::= { hwvrrpExtGroups 7 }
hwVrrpTrackEfmGroup OBJECT-GROUP
OBJECTS {hwVrrpTrackEfmIfName,hwVrrpTrackEfmName,hwVrrpTrackEfmOperRowStatus }
STATUS current
DESCRIPTION
"The VrrpTrackEfm attributes."
::= { hwvrrpExtGroups 8 }
hwVrrpTriggerRouteGroup OBJECT-GROUP
OBJECTS {hwVrrpTriggerRouteMode,hwVrrpTriggerRouteOperRowStatus }
STATUS current
DESCRIPTION
"The VrrpTriggerRoute attributes."
::= { hwvrrpExtGroups 9 }
hwVrrpCfgGroup OBJECT-GROUP
OBJECTS {hwVrrpCfgLinkBfdDownNumber,hwVrrpCfgMsecAdvInterval,hwVrrpCfgFastResumeFlag,hwVrrpCfgOperRowStatus }
STATUS current
DESCRIPTION
"The VrrpCfg attributes."
::= { hwvrrpExtGroups 10 }
hwVrrpStatExtGroup OBJECT-GROUP
OBJECTS {hwVrrpStatExtBecomeBackup, hwVrrpStatExtBecomeInit,hwVrrpStatExtBecomeInit,hwVrrpStatExtCreateTime,hwVrrpStatExtLastChangeTime }
STATUS current
DESCRIPTION
"The VrrpStatExt attributes."
::= { hwvrrpExtGroups 11 }
hwVrrpExtNotificationGroup NOTIFICATION-GROUP
NOTIFICATIONS {hwVrrpExtTrapMasterDown, hwVrrpExtTrapNonMaster, hwVrrpExtTrapExpectStateChange, hwVrrpExtTrapExpectStateResume}
STATUS current
DESCRIPTION
"The VRRP MIB Notification Group."
::= { hwvrrpExtGroups 12 }
hwVrrpTrackIpsecInstanceTable OBJECT-TYPE
SYNTAX SEQUENCE OF HWVrrpTrackIpsecInstanceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates the VRRP tracking Ipsec-instance table, which can accommodate a maximum of eight rows."
::= { vrrpExtOperations 11 }
hwVrrpTrackIpsecInstanceEntry OBJECT-TYPE
SYNTAX HWVrrpTrackIpsecInstanceEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object indicates an entry in the VRRP tracking Ipsec-instance table."
INDEX { hwVrrpTrackIpsecInstanceVRID,hwVrrpTrackIpsecInstanceStandByIfnet,hwVrrpTrackIpsecInstanceID }
::= { hwVrrpTrackIpsecInstanceTable 1 }
HWVrrpTrackIpsecInstanceEntry ::=
SEQUENCE {
hwVrrpTrackIpsecInstanceVRID
VrId,
hwVrrpTrackIpsecInstanceStandByIfnet
InterfaceIndex,
hwVrrpTrackIpsecInstanceID
Integer32,
hwVrrpTrackIpsecInstancePriReduce
Integer32,
hwVrrpTrackIpsecInstanceOperRowStatus
RowStatus
}
hwVrrpTrackIpsecInstanceVRID OBJECT-TYPE
SYNTAX VrId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of this object identifies the ID of a backup device in the VRRP tracking Ipsec-instance table."
::= { hwVrrpTrackIpsecInstanceEntry 1 }
hwVrrpTrackIpsecInstanceStandByIfnet OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of this object identifies the interface index of a backup device in the VRRP tracking Ipsec-instance table."
::= { hwVrrpTrackIpsecInstanceEntry 2 }
hwVrrpTrackIpsecInstanceID OBJECT-TYPE
SYNTAX Integer32 (1..8)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of this object identifies the ID of a tracked Ipsec-instance in the VRRP tracking Ipsec-instance table."
::= { hwVrrpTrackIpsecInstanceEntry 3 }
hwVrrpTrackIpsecInstancePriReduce OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If the tracked Ipsec-instance is Down, priorities of backup devices decrease by the specified value.
The value 0 indicates that the attribute is not configured. The minimum value is 1."
::= { hwVrrpTrackIpsecInstanceEntry 4 }
hwVrrpTrackIpsecInstanceOperRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the row status variable."
::= { hwVrrpTrackIpsecInstanceEntry 5 }
hwVrrpTrackNQATable OBJECT-TYPE
SYNTAX SEQUENCE OF HWVrrpTrackNQAEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The VRRP tracking NQA table."
::= { vrrpExtOperations 12 }
hwVrrpTrackNQAEntry OBJECT-TYPE
SYNTAX HWVrrpTrackNQAEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the VRRP tracking NQA table."
INDEX { hwVrrpTrackNQAVRID,hwVrrpTrackNQAStandbyIfIndex,hwVrrpTrackNQAAdminName,hwVrrpTrackNQATestName }
::= { hwVrrpTrackNQATable 1 }
HWVrrpTrackNQAEntry ::=
SEQUENCE {
hwVrrpTrackNQAVRID
VrId,
hwVrrpTrackNQAStandbyIfIndex
InterfaceIndex,
hwVrrpTrackNQAAdminName
DisplayString,
hwVrrpTrackNQATestName
DisplayString,
hwVrrpTrackNQAPriReduce
Integer32,
hwVrrpTrackNQAOperRowStatus
RowStatus
}
hwVrrpTrackNQAVRID OBJECT-TYPE
SYNTAX VrId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of this object identifies the ID of a backup device in the VRRP tracking NQA table."
::= { hwVrrpTrackNQAEntry 1 }
hwVrrpTrackNQAStandbyIfIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The value of this object identifies the interface index of a backup device in the VRRP tracking NQA table."
::= { hwVrrpTrackNQAEntry 2 }
hwVrrpTrackNQAAdminName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The NQA administer name that vrrp tracks. The attribute cannot be modified after created."
::= { hwVrrpTrackNQAEntry 3 }
hwVrrpTrackNQATestName OBJECT-TYPE
SYNTAX DisplayString (SIZE (1..32))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The NQA test name that vrrp tracks. The attribute cannot be modified after created."
::= { hwVrrpTrackNQAEntry 4 }
hwVrrpTrackNQAPriReduce OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If the tracked NQA is down, the priority of standby will reduce this value.
'0' specifies this attribute hasn't been configured.
The minimum availability value is '1'."
::= { hwVrrpTrackNQAEntry 5 }
hwVrrpTrackNQAOperRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This object indicates the row status variable."
::= { hwVrrpTrackNQAEntry 6 }
hwVrrpTrackRouteTable OBJECT-TYPE
SYNTAX SEQUENCE OF HWVrrpTrackRouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The VRRP tracking Route table."
::= { vrrpExtOperations 13}
hwVrrpTrackRouteEntry OBJECT-TYPE
SYNTAX HWVrrpTrackRouteEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the VRRP tracking Route table."
INDEX { hwVrrpTrackRouteIndex, hwVrrpTrackRouteVRID, hwVrrpTrackRoutePrefix, hwVrrpTrackRouteMask, hwVrrpTrackRouteVrf }
::= { hwVrrpTrackRouteTable 1 }
HWVrrpTrackRouteEntry ::=
SEQUENCE {
hwVrrpTrackRouteVRID
VrId,
hwVrrpTrackRouteIndex
InterfaceIndex,
hwVrrpTrackRoutePrefix
IpAddress,
hwVrrpTrackRouteMask
IpAddress,
hwVrrpTrackRouteVrf
DisplayString,
hwVrrpTrackRoutePriReduce
Integer32,
hwVrrpTrackRouteOperRowStatus
RowStatus
}
hwVrrpTrackRouteVRID OBJECT-TYPE
SYNTAX VrId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of the VRRP tracking Route table, it identifies the standby's ID."
::= { hwVrrpTrackRouteEntry 1 }
hwVrrpTrackRouteIndex OBJECT-TYPE
SYNTAX InterfaceIndex
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of the VRRP tracking Route table, it identifies the standby's interface index."
::= { hwVrrpTrackRouteEntry 2 }
hwVrrpTrackRoutePrefix OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of the VRRP tracking Route table, it identifies the tracked ip address."
::= { hwVrrpTrackRouteEntry 3 }
hwVrrpTrackRouteMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of the VRRP tracking Route table, it identifies the tracked ip address's mask."
::= { hwVrrpTrackRouteEntry 4 }
hwVrrpTrackRouteVrf OBJECT-TYPE
SYNTAX DisplayString (SIZE (0..31))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The index of the VRRP tracking Route table, it identifies the tracked VPN instance name "
::= { hwVrrpTrackRouteEntry 5 }
hwVrrpTrackRoutePriReduce OBJECT-TYPE
SYNTAX Integer32 (0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"If the tracked route is unreachable, the priority of standby will reduce this value.
'0' specifies this attribute hasn't been configured.
The minimum availability value is '1'."
::= { hwVrrpTrackRouteEntry 6 }
hwVrrpTrackRouteOperRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The row status variable. "
::= { hwVrrpTrackRouteEntry 7 }
-- *******************************************************************
-- FAST-VRRP Operations Table
-- *******************************************************************
hwVrrpFastTable OBJECT-TYPE
SYNTAX SEQUENCE OF HWVrrpFastEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Operations table for a Fast-VRRP router which consists of a
sequence (i.e., one or more conceptual rows) of
'hwVrrpFastEntry' items."
::= { vrrpExtOperations 14 }
hwVrrpFastEntry OBJECT-TYPE
SYNTAX HWVrrpFastEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry in the hwVrrpFastTable containing the operational
characteristics of a virtual router. On a VRRP router,
a given virtual router is identified by a combination
of the IF index and VRID."
INDEX { ifIndex, hwVrrpFastVrId }
::= { hwVrrpFastTable 1 }
HWVrrpFastEntry ::=
SEQUENCE {
hwVrrpFastVrId
VrId,
hwVrrpFastState
INTEGER
}
hwVrrpFastVrId OBJECT-TYPE
SYNTAX VrId
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This object contains the Virtual Router Identifier (VRID)."
::= { hwVrrpFastEntry 1 }
hwVrrpFastState OBJECT-TYPE
SYNTAX INTEGER {
initialize(1),
backup(2),
master(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The current state of the virtual router. This object has
three defined values:
- `initialize', which indicates that all the
virtual router is waiting for a startup event.
- `backup', which indicates the virtual router is
monitoring the availability of the master router.
- `master', which indicates that the virtual router
is forwarding packets for IP addresses that are
associated with this router."
::= { hwVrrpFastEntry 2 }
END
|