forked from kcsinclair/mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ALTEON-CHEETAH-LAYER7-MIB
1316 lines (1163 loc) · 38.1 KB
/
ALTEON-CHEETAH-LAYER7-MIB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- COPYRIGHT NOTICE
-- Copyright (c) Alteon WebSystems, Inc. 2002
-- All rights reserved
--
-- HISTORY
-- $Log: aoslayer7.mib,v $
-- Revision 1.1 2007/10/17 01:09:54 jeneric
-- 10/07 mib updates
--
-- Revision submit_cheetah_16636/1 2006/01/10 04:52:39 rvakkala
-- Ported connection pooling support from 23.0 branch
--
-- Revision submit_cheetah_13635/1 2005/08/10 05:46:24 rrekha
-- Converted excludes in Makefile to #if defines in the *.raw and *.ctl files.
--
-- Revision submit_cheetah_13563/1 2005/08/05 17:39:21 rrekha
-- Moved all the BWM related flags into the raw files.
--
-- Revision submit_cheetah_12113/1 2005/05/25 10:16:27 rvakkala
-- Added MIB support for /c/slb/layer7/sdp.
--
-- Revision submit_cheetah_10393/1 2005/01/05 21:01:29 mmacnt
-- code reorg - moved from lib/agent
--
-- Revision submit_cheetah_9196/1 2004/09/01 21:40:34 rrekha
-- Fixed Q00973926: Added MIB objects for the layer7 SP mem statistics.
--
-- Revision submit_cheetah_8280/1 2004/07/13 05:59:35 dillibab
-- Added mib objects for Layer7 SLB Http Methods.
--
-- Revision submit_cheetah_8173/1 2004/07/09 07:32:51 dillibab
-- Added objects for layer7 general configuration.
-- Added dbind timeout under layer7 general configuration.
--
-- Revision submit_cheetah_8006/1 2004/06/28 09:00:25 dillibab
-- Mib variable slbParsingString size is added .
--
-- Revision submit_cheetah_7745/1 2004/06/10 06:33:43 dillibab
-- Added SNMP object to case sensitive URL String match configuration under slbUrlBalance.
--
-- Revision submit_cheetah_7693/1 2004/06/08 07:19:44 dillibab
-- Added Info object for SLB Cookie parsing.
--
-- Revision submit_cheetah_5693/1 2003/11/16 19:34:30 rrekha
-- Converted MIBs to SMIv2.
--
-- Revision submit_cheetah_4966/1 2003/09/05 00:49:13 ocheung
-- Corrected the description for slbNewCfgUrlLbPathOffset,
-- slbNewCfgUrlLbPathDepth, slbNewCfgUrlLbPathOper,
-- slbCurCfgUrlLbPathOffset, slbCurCfgUrlLbPathDepth, and
-- slbCurCfgUrlLbPathOper.
--
-- Revision submit_cheetah_4435/1 2003/08/12 22:59:51 rrekha
-- Changed name of mib file for cheetah*.mib to aos*.mib.
--
-- Revision submit_cheetah_4337/1 2003/08/05 21:20:38 ocheung
-- Checkin comments for "lib/agent/cheetahLayer7.mib":
-- Renamed UrlLbStringType to UrlLbPatternStringType on Wendell's
-- request.
-- Also changed slbNewCfgUrlLbPathHTTPHeader and
-- slbNewCfgUrlLbPathHTTPHeaderValue to read-write.
--
-- Revision submit_cheetah_3687/1 2003/06/27 01:57:11 ocheung
-- Changed max value of UrlLbPathOffset and UrlLbPathDepth to 1500.
--
-- Revision submit_cheetah_3476/1 2003/06/19 01:03:54 rmundhra
-- Adding SNMP/WebUI support for UDP pattern matching
-- and DOS attack detection.
--
-- Revision submit_cheetah_2810/1 2003/05/07 23:05:49 rtsai
-- Changed slbCurCfgUrlLbPathHTTPHeader size from 48 to 32.
--
-- Revision submit_cheetah_2881/1 2003/05/07 02:15:02 ocheung
-- Added support for UDP_PMATCH_FILT feature.
--
-- Revision submit_cheetah_2437/1 2003/04/25 18:16:42 rtsai
-- Added MIB objects for Layer7 Header string.
--
-- Revision submit_cheetah_1919/1 2003/02/05 20:04:01 rrekha
-- Changed the include paths for integrating support
-- for SNMP V3 Windmanage Stack.
--
-- Revision submit_cheetah_1112/1 2002/10/03 17:53:14 rrekha
-- Fixed Q00533800: The index for urlStatSlbPathTable shoulbd be
-- urlStatSlbPathIndex.
--
-- Revision submit_cheetah_914/1 2002/09/10 23:27:34 rrekha
-- Added MIB objects for WCR RTSP redir statictics and some
-- missing L7 maint statistics.
--
-- Revision ch_1_0_0_dev/4 2002/06/04 18:36:24 rrekha
-- Fixed some typos in the mib descriptions.
--
-- Revision ch_1_0_0_dev/3 2002/05/28 19:42:24 rrekha
-- Added layer7 maintenance statistics.
--
-- Revision ch_1_0_0_dev/2 2002/05/01 22:50:52 rrekha
-- Removed slbUrlExpTable since it is no longer used.
--
-- Revision ch_1_0_0_dev/1 2002/04/23 21:47:04 smiao
-- Renamed node cheetah to aws-switches.
--
-- Revision ch10latest_smiao/4 2002/02/22 01:20:27 smiao
-- Removed WCR_RTSP for CHEETAH in SNMP and webUI.
--
-- Revision ch10latest_smiao/2 2002/02/13 01:41:24 smiao
-- Initial checked in for cheetah MIB files.
--
-- $EndLog$
ALTEON-CHEETAH-LAYER7-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Integer32, Counter32, Gauge32, IpAddress
FROM SNMPv2-SMI
DisplayString
FROM SNMPv2-TC
aws-switch
FROM ALTEON-ROOT-MIB;
layer7 MODULE-IDENTITY
LAST-UPDATED "200409010000Z" -- 1 September, 2004
ORGANIZATION "Nortel Networks"
CONTACT-INFO "Rekha Singamsetty
Suresh Batchu
Nortel Networks
4655 Great America Parkway
Santa Clara CA 95054
+1 408 495 2400
DESCRIPTION
"The MIB module for the Alteon OS layer 7 features."
REVISION "200409010000Z" -- 1 September, 2004
DESCRIPTION
"Added revision clause for SMIv2 compliance."
::= { aws-switch 5 }
layer7Configs OBJECT IDENTIFIER ::= { layer7 1 }
layer7Stats OBJECT IDENTIFIER ::= { layer7 2 }
layer7Info OBJECT IDENTIFIER ::= { layer7 3 }
layer7Oper OBJECT IDENTIFIER ::= { layer7 4 }
urlCfg OBJECT IDENTIFIER ::= { layer7Configs 1 }
layer7GeneralCfg OBJECT IDENTIFIER ::= { layer7Configs 2 }
sdpCfg OBJECT IDENTIFIER ::= { layer7Configs 3 }
slbUrlRedir OBJECT IDENTIFIER ::= { urlCfg 1 }
slbUrlBalance OBJECT IDENTIFIER ::= { urlCfg 2 }
slbUrlHttpMethods OBJECT IDENTIFIER ::= { urlCfg 3 }
urlStats OBJECT IDENTIFIER ::= { layer7Stats 1 }
connPoolingStats OBJECT IDENTIFIER ::= { layer7Stats 2 }
slbParsing OBJECT IDENTIFIER ::= { layer7Info 1 }
-- Layer 7 Configuration
-- SLB URL Redirection Group
slbCurCfgUrlRedirNonGetOrigSrv OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is for controlling if the switch should redirect packet
to the origin server when HTTP non-GETs are detected.
enabled(1) - Allow redirect traffic to the origin server
disabled(2)- redirect to a group of servers"
::= { slbUrlRedir 3 }
slbNewCfgUrlRedirNonGetOrigSrv OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is for controlling if the switch should redirect packet to
the origin server when HTTP non-GETs are detected.
enabled(1) - Allow redirect traffic to the origin server
disabled(2)- redirect to a group of servers"
::= { slbUrlRedir 4 }
slbCurCfgUrlRedirCookieOrigSrv OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is for controlling if the switch should redirect packet to the
origin server when user cookies are detected.
enabled(1) - Allow redirect traffic to the origin server
disabled(2)- redirect to a group of servers"
::= { slbUrlRedir 5 }
slbNewCfgUrlRedirCookieOrigSrv OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is for controlling if the switch should redirect packet to the
origin server when user cookies are detected.
enabled(1) - Allow redirect traffic to the origin server
disabled(2)- redirect to a group of servers"
::= { slbUrlRedir 6 }
slbCurCfgUrlRedirNoCacheOrigSrv OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is for controlling if the switch should redirect packet to the
origin server when no-cache header are detected.
enabled(1) - Allow redirect traffic to the origin server
disabled(2)- redirect to a group of servers"
::= { slbUrlRedir 7 }
slbNewCfgUrlRedirNoCacheOrigSrv OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is for controlling if the switch should redirect packet to the
origin server when no-cache header are detected.
enabled(1) - Allow redirect traffic to the origin server
disabled(2)- redirect to a group of servers"
::= { slbUrlRedir 8 }
slbCurCfgUrlRedirUriHashLength OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specify the number of bytes in the URI will be used to hash
onto server"
::= { slbUrlRedir 9 }
slbNewCfgUrlRedirUriHashLength OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specify the number of bytes in the URI will be used to hash
onto server"
::= { slbUrlRedir 10 }
slbCurCfgUrlRedirHeader OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is for controlling if the switch should redirect packet to the
cache server based on HTTP header.
enabled(1) - Redirect web traffic based on HTTP header
disabled(2)- Redirect web traffic based on URI"
::= { slbUrlRedir 11 }
slbNewCfgUrlRedirHeader OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is for controlling if the switch should redirect packet to the
cache server based on HTTP header.
enabled(1) - Redirect web traffic based on HTTP header
disabled(2)- Redirect web traffic based on URI"
::= { slbUrlRedir 12 }
slbCurCfgUrlRedirHeaderName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The HTTP header name"
::= { slbUrlRedir 13 }
slbNewCfgUrlRedirHeaderName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..32))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The HTTP header name"
::= { slbUrlRedir 14 }
-- SLB URL Load Balancing
slbUrlLbPathTableMaxSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of entries in SLB URL load balance table."
::= { slbUrlBalance 1 }
slbCurCfgUrlLbPathTable OBJECT-TYPE
SYNTAX SEQUENCE OF SlbCurCfgUrlLbPathTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of URL path for URL load balancing in the current_config."
::= { slbUrlBalance 2 }
slbCurCfgUrlLbPathTableEntry OBJECT-TYPE
SYNTAX SlbCurCfgUrlLbPathTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about an URL path for URL load balancing."
INDEX { slbCurCfgUrlLbPathIndex }
::= { slbCurCfgUrlLbPathTable 1 }
SlbCurCfgUrlLbPathTableEntry ::= SEQUENCE {
slbCurCfgUrlLbPathIndex Integer32,
slbCurCfgUrlLbBwmContract Integer32,
slbCurCfgUrlLbPathHTTPHeader DisplayString,
slbCurCfgUrlLbPathHTTPHeaderValue DisplayString,
slbCurCfgUrlLbPathPatternStringType INTEGER,
slbCurCfgUrlLbPathOffset INTEGER,
slbCurCfgUrlLbPathDepth INTEGER,
slbCurCfgUrlLbPathOper INTEGER,
slbCurCfgUrlLbPathString DisplayString
}
slbCurCfgUrlLbPathIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The URL path table index."
::= { slbCurCfgUrlLbPathTableEntry 1 }
slbCurCfgUrlLbPathString OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..96))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The SLB string or ASCII/BINARY string for pattern matching ."
::= { slbCurCfgUrlLbPathTableEntry 2 }
slbCurCfgUrlLbBwmContract OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The BW contract for the path."
::= { slbCurCfgUrlLbPathTableEntry 3 }
slbCurCfgUrlLbPathHTTPHeader OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The HTTP header for URL load balancing."
::= { slbCurCfgUrlLbPathTableEntry 4 }
slbCurCfgUrlLbPathHTTPHeaderValue OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..48))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The HTTP header value for URL load balancing."
::= { slbCurCfgUrlLbPathTableEntry 5 }
slbCurCfgUrlLbPathPatternStringType OBJECT-TYPE
SYNTAX INTEGER {
ascii(1),
binary(2),
none (3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Type of pattern string (ASCII or binary or none)."
::= { slbCurCfgUrlLbPathTableEntry 6 }
slbCurCfgUrlLbPathOffset OBJECT-TYPE
SYNTAX INTEGER (0..1500)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Offset from beginning of IP packet to start matching the
pattern string."
::= { slbCurCfgUrlLbPathTableEntry 7 }
slbCurCfgUrlLbPathDepth OBJECT-TYPE
SYNTAX INTEGER (0..1500)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Depth of IP packet to search and match the pattern string."
::= { slbCurCfgUrlLbPathTableEntry 8 }
slbCurCfgUrlLbPathOper OBJECT-TYPE
SYNTAX INTEGER {
eq(1),
gt(2),
lt(3),
none(4)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Operation to be performed on the pattern match string.
For ASCII pattern strings, only the equal (eq) operation
is valid."
::= { slbCurCfgUrlLbPathTableEntry 9 }
slbNewCfgUrlLbPathTable OBJECT-TYPE
SYNTAX SEQUENCE OF SlbNewCfgUrlLbPathTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of URL path for URL load balancing in the new_config."
::= { slbUrlBalance 3 }
slbNewCfgUrlLbPathTableEntry OBJECT-TYPE
SYNTAX SlbNewCfgUrlLbPathTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about an URL path for URL load balancing."
INDEX { slbNewCfgUrlLbPathIndex }
::= { slbNewCfgUrlLbPathTable 1 }
SlbNewCfgUrlLbPathTableEntry ::= SEQUENCE {
slbNewCfgUrlLbPathIndex Integer32,
slbNewCfgUrlLbPathString DisplayString,
slbNewCfgUrlLbBwmContract Integer32,
slbNewCfgUrlLbPathHTTPHeader DisplayString,
slbNewCfgUrlLbPathHTTPHeaderValue DisplayString,
slbNewCfgUrlLbPathPatternStringType INTEGER,
slbNewCfgUrlLbPathOffset INTEGER,
slbNewCfgUrlLbPathDepth INTEGER,
slbNewCfgUrlLbPathOper INTEGER,
slbNewCfgUrlLbPathDelete INTEGER
}
slbNewCfgUrlLbPathIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The URL path table index."
::= { slbNewCfgUrlLbPathTableEntry 1 }
slbNewCfgUrlLbPathString OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..96))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The SLB string or ASCII/BINARY string for pattern matching ."
::= { slbNewCfgUrlLbPathTableEntry 2 }
slbNewCfgUrlLbBwmContract OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The BW contract for the load path."
::= { slbNewCfgUrlLbPathTableEntry 4 }
slbNewCfgUrlLbPathHTTPHeader OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..48))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The HTTP header for URL load balancing."
::= { slbNewCfgUrlLbPathTableEntry 5 }
slbNewCfgUrlLbPathHTTPHeaderValue OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..48))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The HTTP header value for URL load balancing."
::= { slbNewCfgUrlLbPathTableEntry 6 }
slbNewCfgUrlLbPathPatternStringType OBJECT-TYPE
SYNTAX INTEGER {
ascii(1),
binary(2),
none (3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Type of pattern string (ASCII or binary)."
::= { slbNewCfgUrlLbPathTableEntry 7 }
slbNewCfgUrlLbPathOffset OBJECT-TYPE
SYNTAX INTEGER (0..1500)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Offset from beginning of IP packet to start matching the
pattern string."
::= { slbNewCfgUrlLbPathTableEntry 8 }
slbNewCfgUrlLbPathDepth OBJECT-TYPE
SYNTAX INTEGER (0..1500)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Depth of IP packet to search and match the pattern string."
::= { slbNewCfgUrlLbPathTableEntry 9 }
slbNewCfgUrlLbPathOper OBJECT-TYPE
SYNTAX INTEGER {
eq(1),
gt(2),
lt(3),
none(4)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Operation to be performed on the pattern match string.
For ASCII pattern strings, only the equal (eq) operation
is valid."
::= { slbNewCfgUrlLbPathTableEntry 10 }
slbNewCfgUrlLbPathDelete OBJECT-TYPE
SYNTAX INTEGER {
other(1),
delete(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Action object to delete an URL Path. When set to the value
of 2 (delete), the entire row is deleted. When read, other(1) is
returned. Setting the value to anything other than delete(2)
has no effect on the state of the row."
::= { slbNewCfgUrlLbPathTableEntry 3 }
slbCurCfgUrlLbErrorMsg OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..64))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Customize error message to send back to client when switch cannot
bind client's request to servers."
::= { slbUrlBalance 4 }
slbNewCfgUrlLbErrorMsg OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..64))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Customize error message to send back to client when switch cannot
bind client's request to servers."
::= { slbUrlBalance 5 }
slbCurCfgUrlLbCaseSensitiveStrMatch OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is for controlling if the URL String matching is case sensitive or not.
enabled(1) - URL String matching is case sensitive
disabled(2)- URL String matching is not case sensitive"
::= { slbUrlBalance 6 }
slbNewCfgUrlLbCaseSensitiveStrMatch OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"This is for controlling if the URL String matching is case sensitive or not.
enabled(1) - URL String matching is case sensitive
disabled(2)- URL String matching is not case sensitive"
::= { slbUrlBalance 7 }
slbUrlHttpMethodsTableMaxSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of http method entries in layer7 processing engine."
::= { slbUrlHttpMethods 1 }
slbCurCfgUrlHttpMethodsTable OBJECT-TYPE
SYNTAX SEQUENCE OF SlbCurCfgUrlHttpMethodsTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The http methods table in layer7 processing engine."
::= { slbUrlHttpMethods 2 }
slbCurCfgUrlHttpMethodsTableEntry OBJECT-TYPE
SYNTAX SlbCurCfgUrlHttpMethodsTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the http methods table."
INDEX { slbCurCfgUrlHttpMethodIndex }
::= { slbCurCfgUrlHttpMethodsTable 1 }
SlbCurCfgUrlHttpMethodsTableEntry ::= SEQUENCE {
slbCurCfgUrlHttpMethodIndex Integer32,
slbCurCfgUrlHttpMethodString DisplayString
}
slbCurCfgUrlHttpMethodIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The http method table index."
::= { slbCurCfgUrlHttpMethodsTableEntry 1 }
slbCurCfgUrlHttpMethodString OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..32))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The http method string to process in layer7 engine."
::= { slbCurCfgUrlHttpMethodsTableEntry 2 }
slbNewCfgUrlHttpMethodsTable OBJECT-TYPE
SYNTAX SEQUENCE OF SlbNewCfgUrlHttpMethodsTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The http methods table in layer7 processing engine."
::= { slbUrlHttpMethods 3 }
slbNewCfgUrlHttpMethodsTableEntry OBJECT-TYPE
SYNTAX SlbNewCfgUrlHttpMethodsTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the http methods table."
INDEX { slbNewCfgUrlHttpMethodIndex }
::= { slbNewCfgUrlHttpMethodsTable 1 }
SlbNewCfgUrlHttpMethodsTableEntry ::= SEQUENCE {
slbNewCfgUrlHttpMethodIndex Integer32,
slbNewCfgUrlHttpMethodString DisplayString,
slbNewCfgUrlHttpMethodDelete INTEGER
}
slbNewCfgUrlHttpMethodIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The http method table index."
::= { slbNewCfgUrlHttpMethodsTableEntry 1 }
slbNewCfgUrlHttpMethodString OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..32))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The http method string to process in layer7 engine."
::= { slbNewCfgUrlHttpMethodsTableEntry 2 }
slbNewCfgUrlHttpMethodDelete OBJECT-TYPE
SYNTAX INTEGER {
other(1),
delete(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"When set to the value of 2 (delete), the entire row is deleted.
When read, other(1) is returned. Setting the value to anything
other than 2(delete) has no effect on the state of the row."
::= { slbNewCfgUrlHttpMethodsTableEntry 3 }
-- Layer7 General Configuration
layer7CurCfgDbindTimeout OBJECT-TYPE
SYNTAX INTEGER (10..60)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The timeout for incomplete delayed binding connections."
::= { layer7GeneralCfg 1 }
layer7NewCfgDbindTimeout OBJECT-TYPE
SYNTAX INTEGER (10..60)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The timeout for incomplete delayed binding connections."
::= { layer7GeneralCfg 2 }
slbSdpTableMaxSize OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of SDP entries in layer7 processing engine."
::= { sdpCfg 1 }
slbCurCfgSdpTable OBJECT-TYPE
SYNTAX SEQUENCE OF SlbCurCfgSdpTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The SDP table in layer7 processing engine."
::= { sdpCfg 2 }
slbCurCfgSdpTableEntry OBJECT-TYPE
SYNTAX SlbCurCfgSdpTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the table."
INDEX { slbCurCfgSdpIndex }
::= { slbCurCfgSdpTable 1 }
SlbCurCfgSdpTableEntry ::= SEQUENCE {
slbCurCfgSdpIndex Integer32,
slbCurCfgSdpPrivAddr IpAddress,
slbCurCfgSdpPublicAddr IpAddress
}
slbCurCfgSdpIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The SDP table index."
::= { slbCurCfgSdpTableEntry 1 }
slbCurCfgSdpPrivAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The private IP address of SDP entry."
::= { slbCurCfgSdpTableEntry 2 }
slbCurCfgSdpPublicAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The public IP address of SDP entry."
::= { slbCurCfgSdpTableEntry 3 }
slbNewCfgSdpTable OBJECT-TYPE
SYNTAX SEQUENCE OF SlbNewCfgSdpTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The SDP table in layer7 processing engine."
::= { sdpCfg 3 }
slbNewCfgSdpTableEntry OBJECT-TYPE
SYNTAX SlbNewCfgSdpTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the SDP table."
INDEX { slbCurCfgSdpIndex }
::= { slbNewCfgSdpTable 1 }
SlbNewCfgSdpTableEntry ::= SEQUENCE {
slbNewCfgSdpIndex Integer32,
slbNewCfgSdpPrivAddr IpAddress,
slbNewCfgSdpPublicAddr IpAddress,
slbNewCfgSdpDelete INTEGER
}
slbNewCfgSdpIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The SDP table index."
::= { slbNewCfgSdpTableEntry 1 }
slbNewCfgSdpPrivAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The private IP address of SDP entry."
::= { slbNewCfgSdpTableEntry 2 }
slbNewCfgSdpPublicAddr OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The public IP address of SDP entry."
::= { slbNewCfgSdpTableEntry 3 }
slbNewCfgSdpDelete OBJECT-TYPE
SYNTAX INTEGER {
other(1),
delete(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"When set to the value of 2 (delete), the entire row is
deleted. When read, other(1) is returned. Setting the value
to anything other than 2(delete) has no effect on the state of the row."
::= { slbNewCfgSdpTableEntry 4 }
-- The URL Redirection/Load Balancing Statistics
urlRedirStats OBJECT IDENTIFIER ::= { urlStats 1 }
urlStatRedRedirs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of instances that the received packet matches the
specified URL expressions and redirected to specified group of
real servers."
::= { urlRedirStats 1 }
urlStatRedOrigSrvs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of instances that the received packet is sent to the
origin server due to mis-match with the specified URL expressions
or detecting of HTTP non-GETs,user cookies, and no-cache as users
configuration."
::= { urlRedirStats 2 }
urlStatRedNonGets OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of instances that the received packet contains
none GETs(POST ,HEAD ,PUT..) methods."
::= { urlRedirStats 3 }
urlStatRedCookie OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of instances that the received packet contains
a 'Cookie: ' header."
::= { urlRedirStats 4 }
urlStatRedNoCache OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of instances that the received packet contains
a no-cache header value."
::= { urlRedirStats 5 }
urlStatRedStraightOrigSrvs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of HTTP requests forwarded straight to the origin server."
::= { urlRedirStats 6 }
urlStatRedRtspCacheSrvs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of RTSP requests redirected to the cache server."
::= { urlRedirStats 7 }
urlStatRedRtspOrigSrvs OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of RTSP requests forwarded to the origin server."
::= { urlRedirStats 8 }
urlSlbStats OBJECT IDENTIFIER ::= { urlStats 2 }
urlStatSlbPathTable OBJECT-TYPE
SYNTAX SEQUENCE OF UrlStatSlbPathTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The statistics table of instances that the URL path matched."
::= { urlSlbStats 1 }
urlStatSlbPathTableEntry OBJECT-TYPE
SYNTAX UrlStatSlbPathTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about the number of instances that are
load-balanced due to match of a particular URL path."
INDEX { urlStatSlbPathIndex }
::= { urlStatSlbPathTable 1 }
UrlStatSlbPathTableEntry ::= SEQUENCE {
urlStatSlbPathIndex Integer32,
urlStatSlbPathHits Counter32
}
urlStatSlbPathIndex OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The URL path table index."
::= { urlStatSlbPathTableEntry 1 }
urlStatSlbPathHits OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of instances that are load-balanced due to match of
the particular URL path."
::= { urlStatSlbPathTableEntry 2 }
-- Layer 7 Maintenance Statistics
urlMaintStats OBJECT IDENTIFIER ::= { urlStats 3 }
urlMaintStatClientReset OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of reset frames sent to the client by the switch during
client connection termination."
::= { urlMaintStats 1 }
urlMaintStatServerReset OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of reset frames sent to the server by the switch during
server connection termination."
::= { urlMaintStats 2 }
urlMaintStatConnSplicing OBJECT-TYPE
SYNTAX Counter32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The total number of connection swapping between different real
servers in supporting multiple HTTP/1.1 client requests."
::= { urlMaintStats 3 }
urlMaintStatHalfOpens OBJECT-TYPE
SYNTAX Gauge32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of outstanding TCP connections have been half opened.
This statistics is valid only when URL parsing has been turned on.
It is incremented when the switch respond to TCP SYN packet and