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
|
ALCATEL-IND1-SLB-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-IDENTITY,
OBJECT-TYPE,
NOTIFICATION-TYPE,
IpAddress,
Counter32,
Integer32,
Unsigned32,
Counter64 FROM SNMPv2-SMI
MODULE-COMPLIANCE,
OBJECT-GROUP,
NOTIFICATION-GROUP FROM SNMPv2-CONF
SnmpAdminString FROM SNMP-FRAMEWORK-MIB
MacAddress,
TEXTUAL-CONVENTION,
RowStatus FROM SNMPv2-TC
softentIND1Slb,
slbTraps FROM ALCATEL-IND1-BASE;
--
-- Module Identity
--
alcatelIND1SLBMIB MODULE-IDENTITY
LAST-UPDATED "200704030000Z"
ORGANIZATION "Alcatel-Lucent"
CONTACT-INFO
"Please consult with Customer Service to ensure the most appropriate
version of this document is used with the products in question:
Alcatel-Lucent, Enterprise Solutions Division
(Formerly Alcatel Internetworking, Incorporated)
26801 West Agoura Road
Agoura Hills, CA 91301-5122
United States Of America
Telephone: North America +1 800 995 2696
Latin America +1 877 919 9526
Europe +31 23 556 0100
Asia +65 394 7933
All Other +1 818 878 4507
Electronic Mail: support@ind.alcatel.com
World Wide Web: http://alcatel-lucent.com/wps/portal/enterprise
File Transfer Protocol: ftp://ftp.ind.alcatel.com/pub/products/mibs"
DESCRIPTION
"This module describes an authoritative enterprise-specific Simple
Network Management Protocol (SNMP) Management Information Base (MIB):
For the Birds Of Prey Product Line
Configuration and monitoring of the Server Load Balancing feature
The right to make changes in specification and other information
contained in this document without prior notice is reserved.
No liability shall be assumed for any incidental, indirect, special, or
consequential damages whatsoever arising from or related to this
document or the information contained herein.
Vendors, end-users, and other interested parties are granted
non-exclusive license to use this specification in connection with
management of the products for which it is intended to be used.
Copyright (C) 1995-2007 Alcatel-Lucent
ALL RIGHTS RESERVED WORLDWIDE"
::= { softentIND1Slb 1 }
--
-- Object roots used in this MIB
--
alcatelIND1SLBMIBObjects OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Branch for server load balancing application objects"
::= { alcatelIND1SLBMIB 1 }
alcatelIND1SLBMIBConformance OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Branch for server load balancing application conformance information"
::= { alcatelIND1SLBMIB 2 }
alcatelIND1SLBMIBGroups OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Branch for server load balancing application units of conformance"
::= { alcatelIND1SLBMIBConformance 1 }
alcatelIND1SLBMIBCompliances OBJECT-IDENTITY
STATUS current
DESCRIPTION
"Branch for server load balancing application compliance statements"
::= { alcatelIND1SLBMIBConformance 2 }
--
-- Textual Conventions
--
-- An Administrative State
SlbAdminState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The administrative state of various SLB entities
'disable' : The entity has been disabled.
'enable' : The entity is enabled so it can participate
in the load balancing activity."
SYNTAX INTEGER {
disable(1),
enable(2)
}
-- A Basic Operational State
SlbOperState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The operational state of various SLB entities
'outOfService' : The entity is out of service.
'inService' : The entity operates properly."
SYNTAX INTEGER {
outOfService(1),
inService(2)
}
-- The SLB Redirection Algorithm
SlbRedirectAlgorithm ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The load-balancing algorithm being used on a
cluster to distribute load evenly among real servers.
'roundRobin' load-balancing delivers connections evenly
amongst real servers while 'serverFailover' gives new
connections to the real server only when the previous
has failed."
SYNTAX INTEGER {
roundRobin(1),
serverFailover(2)
}
SlbServerOperState ::= TEXTUAL-CONVENTION
STATUS current
DESCRIPTION
"The server operational state represents the state of a
real server being load-balanced by SLB.
'inService' : Server is in use as a destination
for SLB client connections.
'linkDown' : The link by which the server can be
reached has failed, so the server
is considered out of service.
'noAnswer' : The server has not answered to a sequence
of ping retries, so the server
is considered out of service.
'disabled' : Server has been disabled by the admin
status, so the server is considered
out of service.
'retrying' : The server is currently being tested
for a number of retries. It is still
considered in service.
'discovery' : The server is currently being tested to
get its MAC address. The server is considered
out of service."
SYNTAX INTEGER {
inService(1),
linkDown(2),
noAnswer(3),
disabled(4),
retrying(5),
discovery(6)
}
--
-- SLB Feature (global parameters)
--
slbFeature OBJECT IDENTIFIER ::= { alcatelIND1SLBMIBObjects 1 }
slbAdminStatus OBJECT-TYPE
SYNTAX SlbAdminState
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The administrative status of the SLB feature.
It allows to turn on/off the feature"
DEFVAL { disable }
::= { slbFeature 1 }
slbOperStatus OBJECT-TYPE
SYNTAX SlbOperState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operational status of the SLB feature.
'inService' means that at least one cluster of
servers is inService.
'outOfService' means that all of defined clusters
of servers are outOfService."
::= { slbFeature 2 }
slbClustersCount OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of configured clusters."
::= { slbFeature 3 }
slbResetStatistics OBJECT-TYPE
SYNTAX INTEGER {
notSignificant(0),
resetSlbStats(1)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Resets the SLB statistics."
::= { slbFeature 4 }
--
-- SLB Cluster of servers Table
--
slbClusters OBJECT IDENTIFIER ::= { alcatelIND1SLBMIBObjects 2 }
slbClusterTable OBJECT-TYPE
SYNTAX SEQUENCE OF SlbClusterTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is a table of clusters, each of which is a
group of real servers to be used by SLB for load
balancing. Columnar objects can be modified when the
row is 'active'. Rows can be created and destroyed.
Entries are added to this table via
slbClusterRowStatus in accordance with the
RowStatus convention."
::= { slbClusters 1 }
slbClusterTableEntry OBJECT-TYPE
SYNTAX SlbClusterTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a particular Cluster."
INDEX {
slbClusterName
}
::= { slbClusterTable 1 }
SlbClusterTableEntry ::= SEQUENCE {
slbClusterName SnmpAdminString,
slbClusterAdminStatus SlbAdminState,
slbClusterOperStatus SlbOperState,
slbClusterVIP IpAddress,
slbClusterRoutedFlowsSuccessRatio Unsigned32,
slbClusterPingPeriod Unsigned32,
slbClusterPingTimeout Unsigned32,
slbClusterPingRetries Unsigned32,
slbClusterRedirectAlgorithm SlbRedirectAlgorithm,
slbClusterIdleTimer Unsigned32,
slbClusterNumberOfServers Unsigned32,
slbClusterNewFlows Counter32,
slbClusterRowStatus RowStatus,
slbClusterProbeName SnmpAdminString,
slbClusterPackets Counter32,
slbClusterCondition SnmpAdminString,
slbClusterType INTEGER
}
slbClusterName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..23))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name of the cluster."
::= { slbClusterTableEntry 1 }
slbClusterAdminStatus OBJECT-TYPE
SYNTAX SlbAdminState
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The administrative state of the cluster."
DEFVAL { disable }
::= { slbClusterTableEntry 2 }
slbClusterOperStatus OBJECT-TYPE
SYNTAX SlbOperState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operational state of the cluster."
::= { slbClusterTableEntry 3 }
slbClusterVIP OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Virtual IP address for that cluster."
::= { slbClusterTableEntry 4 }
slbClusterRoutedFlowsSuccessRatio OBJECT-TYPE
SYNTAX Unsigned32
UNITS "%"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ratio (in %) of sucessfully routed flows per total
number of flows in the cluster."
::= { slbClusterTableEntry 5 }
slbClusterPingPeriod OBJECT-TYPE
SYNTAX Unsigned32 (0..3600)
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The ping period to check health of servers."
DEFVAL { 60 }
::= { slbClusterTableEntry 6 }
slbClusterPingTimeout OBJECT-TYPE
SYNTAX Unsigned32 (1..3600000)
UNITS "milliseconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The timeout used to wait for ping answers."
DEFVAL { 3000 }
::= { slbClusterTableEntry 7 }
slbClusterPingRetries OBJECT-TYPE
SYNTAX Unsigned32 (0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The number of ping retries before deciding
that a server is OutOfService."
DEFVAL { 3 }
::= { slbClusterTableEntry 8 }
slbClusterRedirectAlgorithm OBJECT-TYPE
SYNTAX SlbRedirectAlgorithm
MAX-ACCESS read-create
STATUS current
DESCRIPTION "The load balancing algorithm in use
by the cluster."
DEFVAL { roundRobin }
::= { slbClusterTableEntry 9 }
slbClusterIdleTimer OBJECT-TYPE
SYNTAX Unsigned32 (0..86400)
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The maximum delay with no activity a client is
kept attached to a real server."
DEFVAL { 1200 }
::= { slbClusterTableEntry 10 }
slbClusterNumberOfServers OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of real servers in this cluster."
DEFVAL { 0 }
::= { slbClusterTableEntry 11 }
slbClusterNewFlows OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of flows balanced for this cluster."
::= { slbClusterTableEntry 12 }
slbClusterRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The object is used by a management station to create
or delete the row entry in slbClusterTable following
the RowStatus textual convention."
::= { slbClusterTableEntry 13 }
slbClusterProbeName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..23))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The name of the cluster's probe."
::= { slbClusterTableEntry 14 }
slbClusterPackets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of packets passed for this cluster."
::= { slbClusterTableEntry 15 }
slbClusterCondition OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..23))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Condition name rule.
Mutually exclusive with VIP"
::= { slbClusterTableEntry 16 }
slbClusterType OBJECT-TYPE
SYNTAX INTEGER {
l3(1),
l2(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The type of load balancing. l3 - routed, l2flows -
distribute bridged flows"
DEFVAL { l3 }
::= { slbClusterTableEntry 17 }
--
-- SLB Server Table
--
slbServers OBJECT IDENTIFIER ::= { alcatelIND1SLBMIBObjects 3 }
slbServerTable OBJECT-TYPE
SYNTAX SEQUENCE OF SlbServerTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A table of real servers. Columnar objects can be
modified when the row is 'active'. Rows can be created
and destroyed. Entries are added to this table via
slbServerRowStatus in accordance with the RowStatus
convention."
::= { slbServers 1 }
slbServerTableEntry OBJECT-TYPE
SYNTAX SlbServerTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a particular real server in a
particular cluster."
INDEX {
slbServerClusterName,
slbServerIpAddress
}
::= { slbServerTable 1 }
SlbServerTableEntry ::= SEQUENCE {
slbServerClusterName SnmpAdminString,
slbServerIpAddress IpAddress,
slbServerAdminStatus SlbAdminState,
slbServerOperStatus SlbServerOperState,
slbServerAdminWeight Unsigned32,
slbServerMacAddress MacAddress,
slbServerSlotNumber Integer32,
slbServerPortNumber Integer32,
slbServerUpTime Integer32,
slbServerLastRTT Integer32,
slbServerPingFails Counter32,
slbServerPortDown Counter32,
slbServerFlows Counter32,
slbServerRowStatus RowStatus,
slbServerProbeName SnmpAdminString,
slbServerProbeStatus SnmpAdminString
}
slbServerClusterName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..23))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The server's cluster name."
::= { slbServerTableEntry 1 }
slbServerIpAddress OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The IP address of real server."
::= { slbServerTableEntry 2 }
slbServerAdminStatus OBJECT-TYPE
SYNTAX SlbAdminState
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The administrative status of the server."
DEFVAL { enable }
::= { slbServerTableEntry 3 }
slbServerOperStatus OBJECT-TYPE
SYNTAX SlbServerOperState
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The operational status of the server."
::= { slbServerTableEntry 4 }
slbServerAdminWeight OBJECT-TYPE
SYNTAX Unsigned32 (0..32)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The Administrative weight of the real server used
by the load-balancing algorithms. A weight of zero
indicates that the server is a backup server and is
not assigned if all non-backup servers are inservice.
Higher weight values indicate to the load-balancing
algorithms a higher proportionality hash buckets
to accept more work."
DEFVAL { 1 }
::= { slbServerTableEntry 5 }
slbServerMacAddress OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MAC address of the server."
::= { slbServerTableEntry 6 }
slbServerSlotNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The physical slot number to which is
connected the server."
::= { slbServerTableEntry 7 }
slbServerPortNumber OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The physical port number to which is
connected the server."
::= { slbServerTableEntry 8 }
slbServerUpTime OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The server availibility in %"
::= { slbServerTableEntry 9 }
slbServerLastRTT OBJECT-TYPE
SYNTAX Integer32
UNITS "milliseconds"
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The last valid round trip time measured
by ping."
::= { slbServerTableEntry 10}
slbServerPingFails OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of pings that have failed on
this server."
::= { slbServerTableEntry 11}
slbServerPortDown OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of down events received at server port."
::= { slbServerTableEntry 12 }
slbServerFlows OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of flows directed to this server."
::= { slbServerTableEntry 13 }
slbServerRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The object used by a management station to create
or delete the row entry in slbServerTable following the
RowStatus textual convention."
::= { slbServerTableEntry 14 }
slbServerProbeName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..23))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The server's probe name."
::= { slbServerTableEntry 15 }
slbServerProbeStatus OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The status from doing a probe."
::= { slbServerTableEntry 16 }
--
-- SLB Probes Table
--
slbProbes OBJECT IDENTIFIER ::= { alcatelIND1SLBMIBObjects 4 }
slbProbeTable OBJECT-TYPE
SYNTAX SEQUENCE OF SlbProbeTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"This is a table of probes, each of which can be
used in either the server or cluster tables to
define the method that the will be used to determine
the status of servers.
Columnar objects can be modified when the
row is 'active'. Rows can be created and destroyed.
Entries are added to this table via
slbProbeRowStatus in accordance with the
RowStatus convention."
::= { slbProbes 1 }
slbProbeTableEntry OBJECT-TYPE
SYNTAX SlbProbeTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a particular Probe."
INDEX {
slbProbeName
}
::= { slbProbeTable 1 }
SlbProbeTableEntry ::= SEQUENCE {
slbProbeName SnmpAdminString,
slbProbeMethod INTEGER,
slbProbePeriod Unsigned32,
slbProbeTimeout Unsigned32,
slbProbeRetries Unsigned32,
slbProbePort Integer32,
slbProbeExpect SnmpAdminString,
slbProbeSend SnmpAdminString,
slbProbeSSL INTEGER,
slbProbeHttpStatus Integer32,
slbProbeHttpUrl SnmpAdminString,
slbProbeHttpUsername SnmpAdminString,
slbProbeHttpPassword SnmpAdminString,
slbProbeRowStatus RowStatus
}
slbProbeName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..23))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name of the probe."
::= { slbProbeTableEntry 1 }
slbProbeMethod OBJECT-TYPE
SYNTAX INTEGER {
ping(1),
http(2),
https(3),
udp(4),
tcp(5),
ftp(6),
smtp(7),
pop(8),
pops(9),
imap(10),
imaps(11),
nntp(12)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The probe method used to check the health of servers."
DEFVAL { 1 }
::= { slbProbeTableEntry 2 }
slbProbePeriod OBJECT-TYPE
SYNTAX Unsigned32 (0..3600)
UNITS "seconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The probe period to check health of servers."
DEFVAL { 60 }
::= { slbProbeTableEntry 3 }
slbProbeTimeout OBJECT-TYPE
SYNTAX Unsigned32 (1..3600000)
UNITS "milliseconds"
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The timeout used to wait for probe answers."
DEFVAL { 3000 }
::= { slbProbeTableEntry 4 }
slbProbeRetries OBJECT-TYPE
SYNTAX Unsigned32 (0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The number of probe retries before deciding
that a server is OutOfService."
DEFVAL { 3 }
::= { slbProbeTableEntry 5 }
slbProbePort OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The TCP/UDP port the probe should
be sent on."
DEFVAL { 0 }
::= { slbProbeTableEntry 6 }
slbProbeExpect OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"An ASCII string used to compare a response from
a server to verify the health of the server."
::= { slbProbeTableEntry 7 }
slbProbeSSL OBJECT-TYPE
SYNTAX INTEGER {
enable(1),
disable(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Indicates if a TCP/UDP probe uses SSL."
DEFVAL { disable }
::= { slbProbeTableEntry 8 }
slbProbeSend OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"An ASCII string sent to a server to invoke a
response from a server to verify the health of
the server."
::= { slbProbeTableEntry 9 }
slbProbeHttpStatus OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The expected status returned from an HTTP GET to
verify the health of the server."
DEFVAL { 200 }
::= { slbProbeTableEntry 10 }
slbProbeHttpUrl OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..128))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"A URL sent to a server for an HTTP GET to verify
the health of the server."
::= { slbProbeTableEntry 11 }
slbProbeHttpUsername OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"An ASCII string sent to a server as credentials for
an HTTP GET to verify the health of the server."
::= { slbProbeTableEntry 12 }
slbProbeHttpPassword OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (0..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"An ASCII string sent to a server as credentials for
an HTTP GET to verify the health of the server. This
string will be encrypted so it will not display readable."
::= { slbProbeTableEntry 13 }
slbProbeRowStatus OBJECT-TYPE
SYNTAX RowStatus
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The object is used by a management station to create
or delete the row entry in slbProbeTable following
the RowStatus textual convention."
::= { slbProbeTableEntry 14 }
--
-- SLB Statistic Tables
--
slbStats OBJECT IDENTIFIER ::= { alcatelIND1SLBMIBObjects 5 }
slbStatsTable OBJECT-TYPE
SYNTAX SEQUENCE OF SlbStatsTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Contains the counters statistics for SLB NI entries"
::= { slbStats 1 }
slbStatsTableEntry OBJECT-TYPE
SYNTAX SlbStatsTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Cluster statistics table."
INDEX {
slbStatsClusterName,
slbStatsIndex
}
::= { slbStatsTable 1 }
SlbStatsTableEntry ::= SEQUENCE {
slbStatsClusterName SnmpAdminString,
slbStatsIndex INTEGER,
slbStatsCounter Counter64
}
slbStatsClusterName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..23))
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The name of the cluster."
::= { slbStatsTableEntry 1 }
slbStatsIndex OBJECT-TYPE
SYNTAX INTEGER(1..2000)
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The sequence number for cluster statistics counter."
::= { slbStatsTableEntry 2 }
slbStatsCounter OBJECT-TYPE
SYNTAX Counter64
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The statistics counter."
::= { slbStatsTableEntry 3 }
slbStatsQual OBJECT IDENTIFIER ::= { alcatelIND1SLBMIBObjects 6 }
slbStatsQualTable OBJECT-TYPE
SYNTAX SEQUENCE OF SlbStatsQualTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The description for the statistics counter. Describes the
qualification parameters on the counter."
::= { slbStats 2 }
slbStatsQualTableEntry OBJECT-TYPE
SYNTAX SlbStatsQualTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a particular counter."
INDEX {
slbStatsClusterName,
slbStatsIndex,
slbStatsQualType
}
::= { slbStatsQualTable 1 }
SlbStatsQualTableEntry ::= SEQUENCE {
slbStatsQualType INTEGER,
slbStatsQualDataIp IpAddress,
slbStatsQualDataIpMask IpAddress,
slbStatsQualDataSlot INTEGER,
slbStatsQualDataStartPort INTEGER,
slbStatsQualDataEndPort INTEGER,
slbStatsQualDataVlan INTEGER,
slbStatsQualDataL4Port INTEGER,
slbStatsQualDataIpProtocol INTEGER,
slbStatsQualDataMac MacAddress,
slbStatsQualDataMacMask MacAddress,
slbStatsQualDataEthertype INTEGER,
slbStatsQualDataIcmpData INTEGER,
slbStatsQualDataTcpFlags OCTET STRING,
slbStatsQualDataTos OCTET STRING,
slbStatsQualData8021p INTEGER
}
slbStatsQualType OBJECT-TYPE
SYNTAX INTEGER {
dstIp(1),
srcIp(2),
srcPort(3),
srcPortGroup(4),
srcVlan(5),
ipProtocol(6),
dstIpPort(7),
srcIpPort(8),
dstIpTcpPort(9),
srcIpTcpPort(10),
dstIpUdpPort(11),
srcIpUdpPort(12),
srcMac(13),
dstMac(14),
d8021p(15),
ethertype(16),
icmpType(17),
icmpCode(18),
tcpFlags(19),
tos(20),
dstPort(21),
dstPortGroup(22)
}
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The qualification parameter."
::= { slbStatsQualTableEntry 1 }
slbStatsQualDataIp OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP Address of the qualifier."
::= { slbStatsQualTableEntry 2 }
slbStatsQualDataIpMask OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP Address Mask of the qualifier."
::= { slbStatsQualTableEntry 3 }
slbStatsQualDataSlot OBJECT-TYPE
SYNTAX INTEGER(0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Slot of the qualifier."
::= { slbStatsQualTableEntry 4 }
slbStatsQualDataStartPort OBJECT-TYPE
SYNTAX INTEGER(0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Start Port of the qualifier."
::= { slbStatsQualTableEntry 5 }
slbStatsQualDataEndPort OBJECT-TYPE
SYNTAX INTEGER(0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The End Port of the qualifier."
::= { slbStatsQualTableEntry 6 }
slbStatsQualDataIpProtocol OBJECT-TYPE
SYNTAX INTEGER(0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The IP Protocol of the qualifier."
::= { slbStatsQualTableEntry 7 }
slbStatsQualDataVlan OBJECT-TYPE
SYNTAX INTEGER (0..4094)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The VLAN of the qualifier. 0 indicates no vlan"
::= { slbStatsQualTableEntry 8 }
slbStatsQualDataL4Port OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The L4 Port of the qualifier."
::= { slbStatsQualTableEntry 9 }
slbStatsQualDataMac OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MAC Address of the qualifier."
::= { slbStatsQualTableEntry 10 }
slbStatsQualDataMacMask OBJECT-TYPE
SYNTAX MacAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The MAC Address Mask of the qualifier."
::= { slbStatsQualTableEntry 11 }
slbStatsQualDataEthertype OBJECT-TYPE
SYNTAX INTEGER (0..65535)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The Ethertype of the qualifier."
::= { slbStatsQualTableEntry 12 }
slbStatsQualDataIcmpData OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The ICMP code or type of the qualifier."
::= { slbStatsQualTableEntry 13 }
slbStatsQualDataTcpFlags OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (3))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The TCP flag/mask/<any|all> of the qualifier."
::= { slbStatsQualTableEntry 14 }
slbStatsQualDataTos OBJECT-TYPE
SYNTAX OCTET STRING (SIZE (2))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The TOS/mask of the qualifier."
::= { slbStatsQualTableEntry 15 }
slbStatsQualData8021p OBJECT-TYPE
SYNTAX INTEGER(0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The 802.1p of the qualifier."
::= { slbStatsQualTableEntry 16 }
--
-- Server Load Balancing Traps
--
slbTrapsDesc OBJECT IDENTIFIER ::= { slbTraps 1 }
slbTrapsObj OBJECT IDENTIFIER ::= { slbTraps 2 }
--
-- Traps description
--
-- Software exception
slbTrapException NOTIFICATION-TYPE
OBJECTS {
slbTrapInfoException
}
STATUS current
DESCRIPTION
"Software exception in SLB module."
::= { slbTrapsDesc 0 1 }
-- Configuration change
slbTrapConfigChanged NOTIFICATION-TYPE
OBJECTS {
slbTrapInfoEntityGroup,
slbTrapInfoClusterName,
slbTrapInfoServerIpAddr
}
STATUS current
DESCRIPTION
"A change occured in SLB configuration."
::= { slbTrapsDesc 0 2 }
-- Operational status changed
slbTrapOperStatus NOTIFICATION-TYPE
OBJECTS {
slbTrapInfoEntityGroup,
slbTrapInfoOperStatus,
slbTrapInfoClusterName,
slbTrapInfoServerIpAddr
}
STATUS current
DESCRIPTION
"A change occured in the operational status of a slb entity."
::= { slbTrapsDesc 0 3 }
--
-- Trap objects
--
-- A Cluster Name
slbTrapInfoClusterName OBJECT-TYPE
SYNTAX SnmpAdminString (SIZE (1..23))
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The name of a cluster."
::= { slbTrapsObj 1 }
-- The Operational Status of a cluster
slbTrapInfoOperStatus OBJECT-TYPE
SYNTAX SlbOperState
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The operational status of slb, cluster or
server."
::= { slbTrapsObj 2 }
-- The IP addr of a server
slbTrapInfoServerIpAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The IP address of a server."
::= { slbTrapsObj 3 }
-- The Managed entity sub-group
slbTrapInfoEntityGroup OBJECT-TYPE
SYNTAX INTEGER {
slb(1),
cluster(2),
server(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION "The entity group inside slb management."
::= { slbTrapsObj 4 }
-- A sofware exception number
slbTrapInfoException OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION "A number identifying the sofware exception."
::= { slbTrapsObj 5 }
--
-- COMPLIANCE
--
alcatelIND1SLBMIBCompliance MODULE-COMPLIANCE
STATUS current
DESCRIPTION
"Compliance statement for Server Load Balancing."
MODULE
MANDATORY-GROUPS
{
slbFeatureGroup,
slbClustersGroup,
slbServersGroup,
slbProbesGroup,
slbTrapsGroup
}
::= { alcatelIND1SLBMIBCompliances 1 }
--
-- UNITS OF CONFORMANCE
--
slbFeatureGroup OBJECT-GROUP
OBJECTS
{
slbAdminStatus,
slbOperStatus,
slbClustersCount
}
STATUS current
DESCRIPTION
"Collection of objects for management of Server Load Balancing"
::= { alcatelIND1SLBMIBGroups 1 }
slbClustersGroup OBJECT-GROUP
OBJECTS
{
slbClusterAdminStatus,
slbClusterOperStatus,
slbClusterVIP,
slbClusterRoutedFlowsSuccessRatio,
slbClusterPingPeriod,
slbClusterPingTimeout,
slbClusterPingRetries,
slbClusterRedirectAlgorithm,
slbClusterIdleTimer,
slbClusterNumberOfServers,
slbClusterNewFlows,
slbClusterRowStatus,
slbClusterProbeName,
slbClusterPackets,
slbClusterCondition,
slbClusterType
}
STATUS current
DESCRIPTION
"Collection of objects for management of Server Load Balancing clusters"
::= { alcatelIND1SLBMIBGroups 2 }
slbServersGroup OBJECT-GROUP
OBJECTS
{
slbServerAdminStatus,
slbServerOperStatus,
slbServerAdminWeight,
slbServerMacAddress,
slbServerSlotNumber,
slbServerPortNumber,
slbServerUpTime,
slbServerLastRTT,
slbServerPingFails,
slbServerPortDown,
slbServerFlows,
slbServerRowStatus,
slbServerProbeName,
slbServerProbeStatus
}
STATUS current
DESCRIPTION
"Collection of objects for management of Server Load Balancing servers"
::= { alcatelIND1SLBMIBGroups 3 }
slbTrapsGroup NOTIFICATION-GROUP
NOTIFICATIONS
{
slbTrapException,
slbTrapConfigChanged,
slbTrapOperStatus
}
STATUS current
DESCRIPTION
"Collection of traps for management of Server Load Balancing"
::= { alcatelIND1SLBMIBGroups 4 }
slbProbesGroup OBJECT-GROUP
OBJECTS
{
slbProbeMethod,
slbProbePeriod,
slbProbeTimeout,
slbProbeRetries,
slbProbePort,
slbProbeExpect,
slbProbeSend,
slbProbeSSL,
slbProbeHttpStatus,
slbProbeHttpUrl,
slbProbeHttpUsername,
slbProbeHttpPassword,
slbProbeRowStatus
}
STATUS current
DESCRIPTION
"Collection of objects for management of Server Load Balancing probes"
::= { alcatelIND1SLBMIBGroups 5 }
slbStatsGroup OBJECT-GROUP
OBJECTS
{
slbStatsCounter,
slbStatsQualDataIp,
slbStatsQualDataIpMask,
slbStatsQualDataSlot,
slbStatsQualDataStartPort,
slbStatsQualDataEndPort,
slbStatsQualDataVlan,
slbStatsQualDataL4Port,
slbStatsQualDataMac,
slbStatsQualDataEthertype,
slbStatsQualDataIcmpData,
slbStatsQualDataTcpFlags,
slbStatsQualDataTos
}
STATUS current
DESCRIPTION
"Collection of objects for management of Server Load Balancing probes"
::= { alcatelIND1SLBMIBGroups 6 }
END
|