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
|
-- =================================================================
-- Copyright (c) 2004-2019 New H3C Tech. Co., Ltd. All rights reserved.
--
-- Description: Private MIB File For LB
-- Reference:
-- Version: V1.3
-- History:
-- V1.0 2013-11 Initial Version created by y04448.
-- V1.1 2014-04 updated by yuhongqiang.
-- Change MAX-ACCESS from not-accessible to accessible-for-notify for the
-- following MIB nodes:
-- hh3cLBv2RSStatChassis, hh3cLBv2RSStatSlot, hh3cLBv2RSStatCpuid.
-- Add the following MIB nodes:
-- hh3cLBv2RSConnectionsLimit, hh3cLBv2RSConnectionsRateLimit,
-- hh3cLBv2RSStatConnectionsRate.
-- Add the following trap nodes:
-- hh3cLBv2RSConnOverloadTrap, hh3cLBv2RSConnRecoveryTrap,
-- hh3cLBv2RSConnsRateOverloadTrap, hh3cLBv2RSConnsRateRecoveryTrap.
-- Change the description of hh3cLBv2VSConnsRateRecoveryTrap.
-- V1.2 2016-11 modified description of hh3cLBv2VSActiveTrap, hh3cLBv2VSInactiveTrap,
-- hh3cLBv2RSAvailableTrap, hh3cLBv2RSUnavailableTrap, hh3cLBv2SFActiveTrap,
-- hh3cLBv2SFInactiveTrap, hh3cLBv2ActionInUseSFChangeTrap, hh3cLBv2VSInUseSFChangeTrap by l08992.
-- V1.3 2019-05 updated by m16825.
-- Add the following MIB table:
-- hh3cLBv2GlobalStatsTable
-- Add the following MIB nodes:
-- hh3cLBv2GlobalStatChassis,hh3cLBv2GlobalStatSlot,hh3cLBv2GlobalStatCpuid,
-- hh3cLBv2GlobalStatTotalConnections, hh3cLBv2GlobalStatActiveConnections,hh3cLBv2GlobalStatConnectionsRate.
-- =================================================================
HH3C-LBV2-MIB DEFINITIONS ::= BEGIN
IMPORTS
hh3cCommon
FROM HH3C-OID-MIB
MODULE-IDENTITY, OBJECT-TYPE, Unsigned32, Counter64, NOTIFICATION-TYPE, Gauge32
FROM SNMPv2-SMI -- [RFC2578]
RowStatus, DisplayString
FROM SNMPv2-TC; -- [RFC2578]
hh3cLBv2 MODULE-IDENTITY
LAST-UPDATED "201905130000Z"
ORGANIZATION
"New H3C Technologies Co., Ltd."
CONTACT-INFO
"Platform Team New H3C Tech. Co., Ltd.
Hai-Dian District Beijing P.R. China
http://www.h3c.com
Zip:100085
"
DESCRIPTION
"The private MIB file includes the LB information of
the device."
REVISION "201905130000Z"
DESCRIPTION
"Add MIB table hh3cLBv2GlobalStatsTable."
REVISION "201311010000Z"
DESCRIPTION
"Initial revision of this MIB module."
::= { hh3cCommon 148 }
hh3cLBv2GlobalObjects OBJECT IDENTIFIER ::= { hh3cLBv2 1 }
hh3cLBv2TrapEnable OBJECT-TYPE
SYNTAX INTEGER {
enabled (1),
disabled (2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Indicates whether the module of LB will generate
traps for events defined in this MIB. 'enabled'
results in SNMP traps; 'disabled', no traps are sent."
DEFVAL { enabled }
::= { hh3cLBv2GlobalObjects 1 }
hh3cLBv2GlobalStatsTable OBJECT-TYPE
-- =================================================================
-- LB Global Statistic Table
-- =================================================================
SYNTAX SEQUENCE OF Hh3cLBv2GlobalStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Global statistic table for LB."
::= { hh3cLBv2GlobalObjects 2 }
hh3cLBv2GlobalStatsEntry OBJECT-TYPE
SYNTAX Hh3cLBv2GlobalStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry contains the statistic information of LB."
INDEX {
hh3cLBv2GlobalStatChassis,
hh3cLBv2GlobalStatSlot,
hh3cLBv2GlobalStatCpuid
}
::= { hh3cLBv2GlobalStatsTable 1 }
Hh3cLBv2GlobalStatsEntry ::=
SEQUENCE{
hh3cLBv2GlobalStatChassis Unsigned32,
hh3cLBv2GlobalStatSlot Unsigned32,
hh3cLBv2GlobalStatCpuid Unsigned32,
hh3cLBv2GlobalStatTotalConnections Counter64,
hh3cLBv2GlobalStatActiveConnections Gauge32,
hh3cLBv2GlobalStatConnectionsRate Gauge32
}
hh3cLBv2GlobalStatChassis OBJECT-TYPE
SYNTAX Unsigned32(0..255)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"ID of the device that holds the card."
::= { hh3cLBv2GlobalStatsEntry 1 }
hh3cLBv2GlobalStatSlot OBJECT-TYPE
SYNTAX Unsigned32(0..255)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Member ID of the card on device."
::= { hh3cLBv2GlobalStatsEntry 2 }
hh3cLBv2GlobalStatCpuid OBJECT-TYPE
SYNTAX Unsigned32(0..255)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"ID of the CPU on the card."
::= { hh3cLBv2GlobalStatsEntry 3 }
hh3cLBv2GlobalStatTotalConnections OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of connections of LB."
::= { hh3cLBv2GlobalStatsEntry 4 }
hh3cLBv2GlobalStatActiveConnections OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Active connections of LB."
::= { hh3cLBv2GlobalStatsEntry 5}
hh3cLBv2GlobalStatConnectionsRate OBJECT-TYPE
SYNTAX Gauge32
UNITS "cps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Connection rate of LB."
::= { hh3cLBv2GlobalStatsEntry 6 }
hh3cLBv2ActionTables OBJECT IDENTIFIER ::= { hh3cLBv2 2 }
-- =================================================================
-- LB Action Table
-- =================================================================
hh3cLBv2ActionTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cLBv2ActionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Action table for LB."
::= { hh3cLBv2ActionTables 1 }
hh3cLBv2ActionEntry OBJECT-TYPE
SYNTAX Hh3cLBv2ActionEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry contains the information of the action."
INDEX {
hh3cLBv2ActionName
}
::= { hh3cLBv2ActionTable 1 }
Hh3cLBv2ActionEntry ::=
SEQUENCE{
hh3cLBv2ActionName DisplayString,
hh3cLBv2ActionDefaultSF DisplayString,
hh3cLBv2ActionBackupSF DisplayString,
hh3cLBv2ActionInUseSF DisplayString,
hh3cLBv2ActionRowStatus RowStatus
}
hh3cLBv2ActionName OBJECT-TYPE
SYNTAX DisplayString(SIZE(1..63))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Name of the action."
::= { hh3cLBv2ActionEntry 1 }
hh3cLBv2ActionDefaultSF OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..63))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Default server farm quoted by the action. A zero length
string indicates no default server farm has been assigned."
::= { hh3cLBv2ActionEntry 2 }
hh3cLBv2ActionBackupSF OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..63))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Backup server farm quoted by the action. A zero length
string indicates no backup server farm has been assigned."
::= { hh3cLBv2ActionEntry 3 }
hh3cLBv2ActionInUseSF OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..63))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Server farm in use quoted by the action."
::= { hh3cLBv2ActionEntry 4 }
hh3cLBv2ActionRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Status of this conceptual row. When create an action, default
server farm and backup server farm are optional."
::= { hh3cLBv2ActionEntry 5 }
hh3cLBv2VSTables OBJECT IDENTIFIER ::= { hh3cLBv2 3 }
-- =================================================================
-- LB Virtual Server Table
-- =================================================================
hh3cLBv2VSTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cLBv2VSEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Virtual server table for LB."
::= { hh3cLBv2VSTables 1 }
hh3cLBv2VSEntry OBJECT-TYPE
SYNTAX Hh3cLBv2VSEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry contains the information of the virtual server."
INDEX {
hh3cLBv2VSName
}
::= { hh3cLBv2VSTable 1 }
Hh3cLBv2VSEntry ::=
SEQUENCE{
hh3cLBv2VSName DisplayString,
hh3cLBv2VSConnectionsLimit Unsigned32,
hh3cLBv2VSConnectionsRateLimit Unsigned32,
hh3cLBv2VSDefaultSF DisplayString,
hh3cLBv2VSBackupSF DisplayString,
hh3cLBv2VSInUseSF DisplayString,
hh3cLBv2VSRowStatus RowStatus
}
hh3cLBv2VSName OBJECT-TYPE
SYNTAX DisplayString(SIZE(1..63))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Name of the virtual server."
::= { hh3cLBv2VSEntry 1 }
hh3cLBv2VSConnectionsLimit OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Max connections limit of the virtual server. 0 means there is
no limit."
DEFVAL { 0 }
::= { hh3cLBv2VSEntry 2 }
hh3cLBv2VSConnectionsRateLimit OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Max connections rate limit of the virtual server. 0 means there is
no limit."
DEFVAL { 0 }
::= { hh3cLBv2VSEntry 3 }
hh3cLBv2VSDefaultSF OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..63))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Default server farm quoted by the virtual server. A zero length
string indicates no default server farm has been assigned."
::= { hh3cLBv2VSEntry 4 }
hh3cLBv2VSBackupSF OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..63))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Backup server farm quoted by the virtual server. A zero length
string indicates no backup server farm has been assigned."
::= { hh3cLBv2VSEntry 5 }
hh3cLBv2VSInUseSF OBJECT-TYPE
SYNTAX DisplayString(SIZE(0..63))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Server farm in use quoted by the virtual server."
::= { hh3cLBv2VSEntry 6 }
hh3cLBv2VSRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Status of this conceptual row. When create an virtual server,
default server farm and backup server farm are optional."
::= { hh3cLBv2VSEntry 7 }
-- =================================================================
-- LB Virtual Server Statistic Table
-- =================================================================
hh3cLBv2VSStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cLBv2VSStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Virtual server statistic table for LB."
::= { hh3cLBv2VSTables 2 }
hh3cLBv2VSStatsEntry OBJECT-TYPE
SYNTAX Hh3cLBv2VSStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry contains the statistic information of the virtual server."
INDEX {
hh3cLBv2VSName,
hh3cLBv2VSStatChassis,
hh3cLBv2VSStatSlot,
hh3cLBv2VSStatCpuid
}
::= { hh3cLBv2VSStatsTable 1 }
Hh3cLBv2VSStatsEntry ::=
SEQUENCE{
hh3cLBv2VSStatChassis Unsigned32,
hh3cLBv2VSStatSlot Unsigned32,
hh3cLBv2VSStatCpuid Unsigned32,
hh3cLBv2VSStatTotalConnections Counter64,
hh3cLBv2VSStatActiveConnections Unsigned32,
hh3cLBv2VSStatClientSidePKTsIn Counter64,
hh3cLBv2VSStatClientSidePKTsOut Counter64,
hh3cLBv2VSStatDroppedPackets Counter64,
hh3cLBv2VSStatClientSideBytesIn Counter64,
hh3cLBv2VSStatClientSideBytesOut Counter64,
hh3cLBv2VSStatReceivedRequests Counter64,
hh3cLBv2VSStatSentResponses Counter64,
hh3cLBv2VSStatConnectionsRate Unsigned32
}
hh3cLBv2VSStatChassis OBJECT-TYPE
SYNTAX Unsigned32(0..255)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"ID of the device that holds the card."
::= { hh3cLBv2VSStatsEntry 1 }
hh3cLBv2VSStatSlot OBJECT-TYPE
SYNTAX Unsigned32(0..255)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Member ID of the card on device."
::= { hh3cLBv2VSStatsEntry 2 }
hh3cLBv2VSStatCpuid OBJECT-TYPE
SYNTAX Unsigned32(0..255)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"ID of the CPU on the card."
::= { hh3cLBv2VSStatsEntry 3 }
hh3cLBv2VSStatTotalConnections OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of connections that the virtual server received."
::= { hh3cLBv2VSStatsEntry 4 }
hh3cLBv2VSStatActiveConnections OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Active connections that the virtual server received."
::= { hh3cLBv2VSStatsEntry 5 }
hh3cLBv2VSStatClientSidePKTsIn OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets that the virtual server received from client."
::= { hh3cLBv2VSStatsEntry 6 }
hh3cLBv2VSStatClientSidePKTsOut OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets that the virtual server sent to client."
::= { hh3cLBv2VSStatsEntry 7 }
hh3cLBv2VSStatDroppedPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets that the virtual server dropped."
::= { hh3cLBv2VSStatsEntry 8 }
hh3cLBv2VSStatClientSideBytesIn OBJECT-TYPE
SYNTAX Counter64
UNITS "byte"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bytes that the virtual server received from client."
::= { hh3cLBv2VSStatsEntry 9 }
hh3cLBv2VSStatClientSideBytesOut OBJECT-TYPE
SYNTAX Counter64
UNITS "byte"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bytes that the virtual server sent to client."
::= { hh3cLBv2VSStatsEntry 10 }
hh3cLBv2VSStatReceivedRequests OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of requests that the virtual server received from client."
::= { hh3cLBv2VSStatsEntry 11 }
hh3cLBv2VSStatSentResponses OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of responses that the virtual server sent to client."
::= { hh3cLBv2VSStatsEntry 12 }
hh3cLBv2VSStatConnectionsRate OBJECT-TYPE
SYNTAX Unsigned32
UNITS "cps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Connections rate of the virtual server."
::= { hh3cLBv2VSStatsEntry 13 }
hh3cLBv2RSTables OBJECT IDENTIFIER ::= { hh3cLBv2 4 }
-- =================================================================
-- LB Real Server Table
-- =================================================================
hh3cLBv2RSTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cLBv2RSEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Real server table for LB."
::= { hh3cLBv2RSTables 1 }
hh3cLBv2RSEntry OBJECT-TYPE
SYNTAX Hh3cLBv2RSEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry contains the information of the real server."
INDEX {
hh3cLBv2RSName
}
::= { hh3cLBv2RSTable 1 }
Hh3cLBv2RSEntry ::=
SEQUENCE{
hh3cLBv2RSName DisplayString,
hh3cLBv2RSRowStatus RowStatus,
hh3cLBv2RSConnectionsLimit Unsigned32,
hh3cLBv2RSConnectionsRateLimit Unsigned32
}
hh3cLBv2RSName OBJECT-TYPE
SYNTAX DisplayString(SIZE(1..63))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Name of the real server."
::= { hh3cLBv2RSEntry 1 }
hh3cLBv2RSRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Status of this conceptual row."
::= { hh3cLBv2RSEntry 2 }
hh3cLBv2RSConnectionsLimit OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Max connections limit of the real server. 0 means there is
no limit."
DEFVAL { 0 }
::= { hh3cLBv2RSEntry 3 }
hh3cLBv2RSConnectionsRateLimit OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Max connections rate limit of the real server. 0 means there is
no limit."
DEFVAL { 0 }
::= { hh3cLBv2RSEntry 4 }
-- =================================================================
-- LB Real Server Statistic Table
-- =================================================================
hh3cLBv2RSStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cLBv2RSStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Real server statistic table for LB."
::= { hh3cLBv2RSTables 2 }
hh3cLBv2RSStatsEntry OBJECT-TYPE
SYNTAX Hh3cLBv2RSStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry contains the statistic information of the real server."
INDEX {
hh3cLBv2RSName,
hh3cLBv2RSStatChassis,
hh3cLBv2RSStatSlot,
hh3cLBv2RSStatCpuid
}
::= { hh3cLBv2RSStatsTable 1 }
Hh3cLBv2RSStatsEntry ::=
SEQUENCE{
hh3cLBv2RSStatChassis Unsigned32,
hh3cLBv2RSStatSlot Unsigned32,
hh3cLBv2RSStatCpuid Unsigned32,
hh3cLBv2RSStatTotalConnections Counter64,
hh3cLBv2RSStatActiveConnections Unsigned32,
hh3cLBv2RSStatServerSidePKTsIn Counter64,
hh3cLBv2RSStatServerSidePKTsOut Counter64,
hh3cLBv2RSStatDroppedPackets Counter64,
hh3cLBv2RSStatServerSideBytesIn Counter64,
hh3cLBv2RSStatServerSideBytesOut Counter64,
hh3cLBv2RSStatReceivedRequests Counter64,
hh3cLBv2RSStatSentResponses Counter64,
hh3cLBv2RSStatConnectionsRate Unsigned32
}
hh3cLBv2RSStatChassis OBJECT-TYPE
SYNTAX Unsigned32(0..255)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"ID of the device that holds the card."
::= { hh3cLBv2RSStatsEntry 1 }
hh3cLBv2RSStatSlot OBJECT-TYPE
SYNTAX Unsigned32(0..255)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Member ID of the card on device."
::= { hh3cLBv2RSStatsEntry 2 }
hh3cLBv2RSStatCpuid OBJECT-TYPE
SYNTAX Unsigned32(0..255)
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"ID of the CPU on the card."
::= { hh3cLBv2RSStatsEntry 3 }
hh3cLBv2RSStatTotalConnections OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of connections that the real server received."
::= { hh3cLBv2RSStatsEntry 4 }
hh3cLBv2RSStatActiveConnections OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Active connections that the real server received."
::= { hh3cLBv2RSStatsEntry 5 }
hh3cLBv2RSStatServerSidePKTsIn OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets that the real server received from device."
::= { hh3cLBv2RSStatsEntry 6 }
hh3cLBv2RSStatServerSidePKTsOut OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets that the real server sent."
::= { hh3cLBv2RSStatsEntry 7 }
hh3cLBv2RSStatDroppedPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets that the real server dropped."
::= { hh3cLBv2RSStatsEntry 8 }
hh3cLBv2RSStatServerSideBytesIn OBJECT-TYPE
SYNTAX Counter64
UNITS "byte"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bytes that the real server received from device."
::= { hh3cLBv2RSStatsEntry 9 }
hh3cLBv2RSStatServerSideBytesOut OBJECT-TYPE
SYNTAX Counter64
UNITS "byte"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bytes that the real server sent."
::= { hh3cLBv2RSStatsEntry 10 }
hh3cLBv2RSStatReceivedRequests OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of requests that the real server received from device."
::= { hh3cLBv2RSStatsEntry 11 }
hh3cLBv2RSStatSentResponses OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of responses that the real server sent to device."
::= { hh3cLBv2RSStatsEntry 12 }
hh3cLBv2RSStatConnectionsRate OBJECT-TYPE
SYNTAX Unsigned32
UNITS "cps"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Connections rate of the real server."
::= { hh3cLBv2RSStatsEntry 13 }
hh3cLBv2SFTables OBJECT IDENTIFIER ::= { hh3cLBv2 5 }
-- =================================================================
-- LB Server Farm Table
-- =================================================================
hh3cLBv2SFTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cLBv2SFEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Server farm table for LB."
::= { hh3cLBv2SFTables 1 }
hh3cLBv2SFEntry OBJECT-TYPE
SYNTAX Hh3cLBv2SFEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry contains the information of the server farm."
INDEX {
hh3cLBv2SFName
}
::= { hh3cLBv2SFTable 1 }
Hh3cLBv2SFEntry ::=
SEQUENCE{
hh3cLBv2SFName DisplayString,
hh3cLBv2SFRowStatus RowStatus
}
hh3cLBv2SFName OBJECT-TYPE
SYNTAX DisplayString(SIZE(1..63))
MAX-ACCESS accessible-for-notify
STATUS current
DESCRIPTION
"Name of the server farm."
::= { hh3cLBv2SFEntry 1 }
hh3cLBv2SFRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Status of this conceptual row."
::= { hh3cLBv2SFEntry 2 }
-- =================================================================
-- LB Server Farm Statistic Table
-- =================================================================
hh3cLBv2SFStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF Hh3cLBv2SFStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Server farm statistic for LB."
::= { hh3cLBv2SFTables 2 }
hh3cLBv2SFStatsEntry OBJECT-TYPE
SYNTAX Hh3cLBv2SFStatsEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"An entry contains the statistic information of the server farm."
INDEX {
hh3cLBv2SFName,
hh3cLBv2SFStatChassis,
hh3cLBv2SFStatSlot,
hh3cLBv2SFStatCpuid
}
::= { hh3cLBv2SFStatsTable 1 }
Hh3cLBv2SFStatsEntry ::=
SEQUENCE{
hh3cLBv2SFStatChassis Unsigned32,
hh3cLBv2SFStatSlot Unsigned32,
hh3cLBv2SFStatCpuid Unsigned32,
hh3cLBv2SFStatTotalConnections Counter64,
hh3cLBv2SFStatActiveConnections Unsigned32,
hh3cLBv2SFStatServerSidePKTsIn Counter64,
hh3cLBv2SFStatServerSidePKTsOut Counter64,
hh3cLBv2SFStatDroppedPackets Counter64,
hh3cLBv2SFStatServerSideBytesIn Counter64,
hh3cLBv2SFStatServerSideBytesOut Counter64,
hh3cLBv2SFStatReceivedRequests Counter64,
hh3cLBv2SFStatSentResponses Counter64
}
hh3cLBv2SFStatChassis OBJECT-TYPE
SYNTAX Unsigned32(0..255)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"ID of the device that holds the card."
::= { hh3cLBv2SFStatsEntry 1 }
hh3cLBv2SFStatSlot OBJECT-TYPE
SYNTAX Unsigned32(0..255)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Member ID of the card on device."
::= { hh3cLBv2SFStatsEntry 2 }
hh3cLBv2SFStatCpuid OBJECT-TYPE
SYNTAX Unsigned32(0..255)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"ID of the CPU on the card."
::= { hh3cLBv2SFStatsEntry 3 }
hh3cLBv2SFStatTotalConnections OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Total number of connections that the server farm received."
::= { hh3cLBv2SFStatsEntry 4 }
hh3cLBv2SFStatActiveConnections OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Active connections that the server farm received."
::= { hh3cLBv2SFStatsEntry 5 }
hh3cLBv2SFStatServerSidePKTsIn OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets that the server farm received from device."
::= { hh3cLBv2SFStatsEntry 6 }
hh3cLBv2SFStatServerSidePKTsOut OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets that the server farm sent."
::= { hh3cLBv2SFStatsEntry 7 }
hh3cLBv2SFStatDroppedPackets OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of packets that the server farm dropped."
::= { hh3cLBv2SFStatsEntry 8 }
hh3cLBv2SFStatServerSideBytesIn OBJECT-TYPE
SYNTAX Counter64
UNITS "byte"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bytes that the server farm received."
::= { hh3cLBv2SFStatsEntry 9 }
hh3cLBv2SFStatServerSideBytesOut OBJECT-TYPE
SYNTAX Counter64
UNITS "byte"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of bytes that the server farm sent."
::= { hh3cLBv2SFStatsEntry 10 }
hh3cLBv2SFStatReceivedRequests OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of requests that all real servers in the server farm
received from device."
::= { hh3cLBv2SFStatsEntry 11 }
hh3cLBv2SFStatSentResponses OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of responses that the server farm sent to device."
::= { hh3cLBv2SFStatsEntry 12 }
-- =================================================================
-- LB NOTIFICATION
-- =================================================================
hh3cLBv2Trap OBJECT IDENTIFIER ::= { hh3cLBv2 6 }
hh3cLBv2TrapPrefix OBJECT IDENTIFIER ::= { hh3cLBv2Trap 0 }
-- =================================================================
-- Virtual Server Connections Overload Notification
-- =================================================================
hh3cLBv2VSConnOverloadTrap NOTIFICATION-TYPE
OBJECTS
{
hh3cLBv2VSName,
hh3cLBv2VSConnectionsLimit,
hh3cLBv2VSStatChassis,
hh3cLBv2VSStatSlot,
hh3cLBv2VSStatCpuid,
hh3cLBv2VSStatActiveConnections
}
STATUS current
DESCRIPTION
"A hh3cLBv2VSConnOverloadTrap notification is sent when
the number of active connections of the virtual server
has reached the upper limit. "
::= { hh3cLBv2TrapPrefix 1 }
-- =================================================================
-- Virtual Server Connections Overload Recovery Notification
-- =================================================================
hh3cLBv2VSConnRecoveryTrap NOTIFICATION-TYPE
OBJECTS
{
hh3cLBv2VSName,
hh3cLBv2VSConnectionsLimit,
hh3cLBv2VSStatChassis,
hh3cLBv2VSStatSlot,
hh3cLBv2VSStatCpuid,
hh3cLBv2VSStatActiveConnections
}
STATUS current
DESCRIPTION
"A hh3cLBv2VSConnRecoveryTrap notification is sent when
the number of active connections of the virtual server
is less than the upper limit."
::= { hh3cLBv2TrapPrefix 2 }
-- =================================================================
-- Virtual Server Connections Rate Overload Notification
-- =================================================================
hh3cLBv2VSConnsRateOverloadTrap NOTIFICATION-TYPE
OBJECTS
{
hh3cLBv2VSName,
hh3cLBv2VSConnectionsRateLimit,
hh3cLBv2VSStatChassis,
hh3cLBv2VSStatSlot,
hh3cLBv2VSStatCpuid,
hh3cLBv2VSStatConnectionsRate
}
STATUS current
DESCRIPTION
"A hh3cLBv2VSConnsRateOverloadTrap notification is sent
when the connection rate of the virtual server has
reached the upper limit."
::= { hh3cLBv2TrapPrefix 3 }
-- =================================================================
-- Virtual Server Connections Rate Overload Recovery Notification
-- =================================================================
hh3cLBv2VSConnsRateRecoveryTrap NOTIFICATION-TYPE
OBJECTS
{
hh3cLBv2VSName,
hh3cLBv2VSConnectionsRateLimit,
hh3cLBv2VSStatChassis,
hh3cLBv2VSStatSlot,
hh3cLBv2VSStatCpuid,
hh3cLBv2VSStatConnectionsRate
}
STATUS current
DESCRIPTION
"A hh3cLBv2VSConnsRateRecoveryTrap notification is sent
when the connection rate of the virtual server is smaller than
the upper limit."
::= { hh3cLBv2TrapPrefix 4 }
-- =================================================================
-- Virtual Server Active Notification
-- =================================================================
hh3cLBv2VSActiveTrap NOTIFICATION-TYPE
OBJECTS
{
hh3cLBv2VSName
}
STATUS current
DESCRIPTION
"A hh3cLBv2VSActiveTrap notification is sent when virtual
server status changes to active."
::= { hh3cLBv2TrapPrefix 5 }
-- =================================================================
-- Virtual Server Inactive Notification
-- =================================================================
hh3cLBv2VSInactiveTrap NOTIFICATION-TYPE
OBJECTS
{
hh3cLBv2VSName
}
STATUS current
DESCRIPTION
"A hh3cLBv2VSInactiveTrap notification is sent when virtual
server status changes to inactive."
::= { hh3cLBv2TrapPrefix 6 }
-- =================================================================
-- Real Server Available Notification
-- =================================================================
hh3cLBv2RSAvailableTrap NOTIFICATION-TYPE
OBJECTS
{
hh3cLBv2RSName
}
STATUS current
DESCRIPTION
"A hh3cLBv2RSAvailableTrap notification is sent when the status of
the real server changes to available."
::= { hh3cLBv2TrapPrefix 7 }
-- =================================================================
-- Real Server Unavailable Notification
-- =================================================================
hh3cLBv2RSUnavailableTrap NOTIFICATION-TYPE
OBJECTS
{
hh3cLBv2RSName
}
STATUS current
DESCRIPTION
"A hh3cLBv2RSUnavailableTrap notification is sent when the status of
the real server changes to unavailable."
::= { hh3cLBv2TrapPrefix 8 }
-- =================================================================
-- Server Farm Active Notification
-- =================================================================
hh3cLBv2SFActiveTrap NOTIFICATION-TYPE
OBJECTS
{
hh3cLBv2SFName
}
STATUS current
DESCRIPTION
"A hh3cLBv2SFActiveTrap notification is sent when the status of
the server farm changes to active."
::= { hh3cLBv2TrapPrefix 9 }
-- =================================================================
-- Server Farm Inactive Notification
-- =================================================================
hh3cLBv2SFInactiveTrap NOTIFICATION-TYPE
OBJECTS
{
hh3cLBv2SFName
}
STATUS current
DESCRIPTION
"A hh3cLBv2SFInactiveTrap notification is sent when the status of
the server farm changes to inactive."
::= { hh3cLBv2TrapPrefix 10 }
-- =================================================================
-- Server Farm In Use Of Action Changes Notification
-- =================================================================
hh3cLBv2ActionInUseSFChangeTrap NOTIFICATION-TYPE
OBJECTS
{
hh3cLBv2ActionName,
hh3cLBv2ActionDefaultSF,
hh3cLBv2ActionBackupSF,
hh3cLBv2ActionInUseSF
}
STATUS current
DESCRIPTION
"A hh3cLBv2ActionInUseSFChangeTrap notification is sent when the
server farm which is in use quoted by action changes."
::= { hh3cLBv2TrapPrefix 11 }
-- =================================================================
-- Server Farm In Use Of Virtual Server Changes Notification
-- =================================================================
hh3cLBv2VSInUseSFChangeTrap NOTIFICATION-TYPE
OBJECTS
{
hh3cLBv2VSName,
hh3cLBv2VSDefaultSF,
hh3cLBv2VSBackupSF,
hh3cLBv2VSInUseSF
}
STATUS current
DESCRIPTION
"A hh3cLBv2VSInUseSFChangeTrap notification is sent when
the server farm which is in use quoted by virtual server
changes."
::= { hh3cLBv2TrapPrefix 12 }
-- =================================================================
-- Real Server Connections Overload Notification
-- =================================================================
hh3cLBv2RSConnOverloadTrap NOTIFICATION-TYPE
OBJECTS
{
hh3cLBv2RSName,
hh3cLBv2RSConnectionsLimit,
hh3cLBv2RSStatChassis,
hh3cLBv2RSStatSlot,
hh3cLBv2RSStatCpuid,
hh3cLBv2RSStatActiveConnections
}
STATUS current
DESCRIPTION
"A hh3cLBv2RSConnOverloadTrap notification is sent when
the number of active connections of the real server
has reached the upper limit. "
::= { hh3cLBv2TrapPrefix 13 }
-- =================================================================
-- Real Server Connections Overload Recovery Notification
-- =================================================================
hh3cLBv2RSConnRecoveryTrap NOTIFICATION-TYPE
OBJECTS
{
hh3cLBv2RSName,
hh3cLBv2RSConnectionsLimit,
hh3cLBv2RSStatChassis,
hh3cLBv2RSStatSlot,
hh3cLBv2RSStatCpuid,
hh3cLBv2RSStatActiveConnections
}
STATUS current
DESCRIPTION
"A hh3cLBv2RSConnRecoveryTrap notification is sent when
the number of active connections of the real server
is less than the upper limit."
::= { hh3cLBv2TrapPrefix 14 }
-- =================================================================
-- Real Server Connections Rate Overload Notification
-- =================================================================
hh3cLBv2RSConnsRateOverloadTrap NOTIFICATION-TYPE
OBJECTS
{
hh3cLBv2RSName,
hh3cLBv2RSConnectionsRateLimit,
hh3cLBv2RSStatChassis,
hh3cLBv2RSStatSlot,
hh3cLBv2RSStatCpuid,
hh3cLBv2RSStatConnectionsRate
}
STATUS current
DESCRIPTION
"A hh3cLBv2RSConnsRateOverloadTrap notification is sent
when the connection rate of the real server has
reached the upper limit."
::= { hh3cLBv2TrapPrefix 15 }
-- =================================================================
-- Real Server Connections Rate Overload Recovery Notification
-- =================================================================
hh3cLBv2RSConnsRateRecoveryTrap NOTIFICATION-TYPE
OBJECTS
{
hh3cLBv2RSName,
hh3cLBv2RSConnectionsRateLimit,
hh3cLBv2RSStatChassis,
hh3cLBv2RSStatSlot,
hh3cLBv2RSStatCpuid,
hh3cLBv2RSStatConnectionsRate
}
STATUS current
DESCRIPTION
"A hh3cLBv2RSConnsRateRecoveryTrap notification is sent
when the connection rate of the real server is smaller than
the upper limit."
::= { hh3cLBv2TrapPrefix 16 }
END
|