-
Notifications
You must be signed in to change notification settings - Fork 29
/
ALTEON-CHEETAH-LAYER4-MIB
15155 lines (13503 loc) · 432 KB
/
ALTEON-CHEETAH-LAYER4-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) Nortel Networks, 2004
-- All rights reserved
--
-- HISTORY
-- $Log: aoslayer4.mib,v $
-- Revision 1.1 2007/10/17 01:09:53 jeneric
-- 10/07 mib updates
--
-- Revision submit_cheetah_20297/1 2006/05/02 06:02:15 rvakkala
-- Fixed conflicting registration because of merging.
--
-- Revision submit_cheetah_19277/2 2006/05/02 04:44:13 rvakkala
-- Fixed CRQ01007809 Added lack of mibs support to SNMP.
--
-- Revision submit_cheetah_20213/1 2006/04/27 05:36:38 rvakkala
-- Corrected misspelled slbPortSyamntecState.
--
-- Revision submit_cheetah_18044/2 2006/04/26 04:24:55 rvakkala
-- Fixed CRQ01191419, Added Mib support for /i/sl/port, /i/sl/se/sslport.
--
-- Revision submit_cheetah_19277/1 2006/05/02 04:34:10 rvakkala
-- Fixed CRQ01007809 Added lack of mibs support to SNMP.
--
-- Revision submit_cheetah_18659/1 2006/03/08 07:55:14 bfrancis
-- .Fixed - AAS/Wrong behavior with L7 persistency when receiving corrupted TCP checksum
--
-- Revision submit_cheetah_18044/1 2006/04/26 04:15:04 rvakkala
-- Fixed CRQ01191419, Added Mib support for /i/sl/port, /i/sl/se/sslport.
--
-- Revision submit_cheetah_16973/1 2006/01/27 23:29:03 angamuth
-- Support for Symantec statistics
--
-- Revision submit_cheetah_16727/2 2006/01/23 05:08:30 rvakkala
-- Fixed Q01269377 SLB Sess Attack Alert Allowable Limit is 1-2097104 but
-- should be 2097100 and Q01272370 Service range under Buddy Server should
-- be 9-65534 not 14-65534.
--
-- Revision submit_cheetah_16636/1 2006/01/10 04:51:54 rvakkala
-- Ported connection pooling support from 23.0 branch
-- and chaged value of gslbNewCfgRuleDelete to 9.
--
-- Revision submit_cheetah_16727/1 2006/01/23 04:54:22 rvakkala
-- Fixed Q01269377 SLB Sess Attack Alert Allowable Limit is 1-2097104 but
-- should be 2097100 and Q01272370 Service range under Buddy Server should
-- be 9-65534 not 14-65534
--
-- Revision submit_cheetah_16378/1 2005/12/06 15:29:30 rramana
-- CR Q01226413: WebUI/SNMP support for invalid_fins counter.
--
-- Revision submit_cheetah_16281/1 2005/11/30 16:32:32 coman
-- Ported #16159 from the elmo branch
--
-- Revision submit_cheetah_16214/1 2005/11/29 11:20:46 drosu
-- Ported gslbCurCfgRuleDname and gslbNewCfgRuleDname from elmo branch.
--
-- Revision submit_cheetah_16175/1 2005/11/25 13:09:35 drosu
-- Added gslbCurCfgRuleDname and gslbNewCfgRuleDname leaves in
-- gslbCurCfgRuleTable/gslbNewCfgRuleTable.
--
-- Revision submit_cheetah_16159/1 2005/11/24 14:35:53 coman
-- Fix for GSLB resource record range
--
-- Revision submit_cheetah_14778/1 2005/10/04 13:35:59 dillibab
-- Added group info. to real server rport information table.
--
-- Revision submit_cheetah_14320/1 2005/09/09 19:36:04 angamuth
-- Moved SymantecState from SLB port table to Security port table.
--
-- Revision submit_cheetah_13952/1 2005/08/25 14:59:29 rvakkala
-- Revised earlier fix of 1187524 Should allow prefix range 0-128.
--
-- Revision submit_cheetah_13760/1 2005/08/12 21:12:33 jamesob
-- CR Q01131953-01 : Correct mib range for vports.
--
-- Revision submit_cheetah_13703/1 2005/08/10 23:36:11 rrekha
-- Fixed build error.
--
-- Revision submit_cheetah_13653/1 2005/08/10 20:58:25 rrekha
-- Fixed Cougar build errors.
--
-- Revision submit_cheetah_13572/2 2005/08/10 10:51:34 rvakkala
-- Added MIB support for /stats/slb/virt<x>/ vipaddress.
--
-- Revision submit_cheetah_13608/2 2005/08/10 10:37:04 rvakkala
-- Fixed CR Q01187524: Should allow prefix range as 0-128 for ipv6.
--
-- Revision submit_cheetah_13635/1 2005/08/10 05:46:14 rrekha
-- Converted excludes in Makefile to #if defines in the *.raw and *.ctl files.
--
-- Revision submit_cheetah_13563/1 2005/08/05 17:39:20 rrekha
-- Moved all the BWM related flags into the raw files.
--
-- Revision submit_cheetah_13608/1 2005/08/10 10:24:58 rvakkala
-- Fixed CRQ01187524 Should accept prefix as 0-128 for ipv6.
--
-- Revision submit_cheetah_13572/1 2005/08/10 10:41:34 rvakkala
-- ADDED MIB support for /stats/slb/virt<x>/ vipaddress
--
-- Revision submit_cheetah_13198/2 2005/08/03 10:02:51 rvakkala
-- Fixed CR Q01156936.
--
-- Revision submit_cheetah_13244/1 2005/07/25 20:54:16 rrekha
-- Fixed Q01179203: slbNewCfgWlmIpAddr/slbNewCfgWlmPort should be read-create
-- variables.
--
-- Revision submit_cheetah_13198/1 2005/08/03 09:34:02 rvakkala
-- Fixed CR1156936 Set health check script number greater than 16.
--
-- Revision submit_cheetah_12855/2 2005/07/13 09:36:51 angamuth
-- Merged with previous changes.
--
-- Revision submit_cheetah_12614/1 2005/07/08 13:11:55 rvakkala
-- Added MIBs for SNMP support for IPV6 slb statistics.
--
-- Revision submit_cheetah_12904/2 2005/07/02 06:51:26 dillibab
-- Merged with previous changes.
--
-- Revision submit_cheetah_12735/1 2005/06/29 13:58:22 rvakkala
-- Added range for prefix length of filter sprefix,dprefix.
--
-- Revision submit_cheetah_12904/1 2005/07/02 05:37:39 dillibab
-- Fixed Q01128664; Modified the range of virtual service port as
-- per CLI(14..65534).
--
-- Revision submit_cheetah_12855/1 2005/07/13 09:16:44 angamuth
-- Added a MIB variable for /c/slb/port x/symantec ena/dis command.
--
-- Revision submit_cheetah_12565/1 2005/06/16 13:18:58 rvakkala
-- Added IPv6 objects for filter and virtual server configuration.
--
-- Revision submit_cheetah_12226/2 2005/06/08 09:36:47 rvakkala
-- Changed SNMP support for Buddy Server as per changes done in CLI.
--
-- Revision submit_cheetah_12479/1 2005/06/06 10:37:52 rvakkala
-- Corrected spelling error in session mirror stats.
--
-- Revision submit_cheetah_12407/1 2005/05/27 18:35:29 jbuswell
-- Q01123065: Added support for Africa as GSLB Region, newly established.
--
-- Revision submit_cheetah_12113/3 2005/05/25 10:35:21 rvakkala
-- Added MIB support for Media Portal Nat.
--
-- Revision submit_cheetah_12217/2 2005/05/25 10:00:17 rvakkala
-- Added MIB support for RTSP enhancement.
--
-- Revision submit_cheetah_12268/1 2005/05/25 09:04:46 rvakkala
-- Added MIB support for session mirror statistics
--
-- Revision submit_cheetah_12113/2 2005/05/25 10:30:16 rvakkala
-- Added MIB support for Media Portal Nat
--
-- Revision submit_cheetah_12163/2 2005/05/20 05:20:10 rvakkala
-- Added MIB support for session mirror statistics.
--
-- Revision submit_cheetah_12226/1 2005/06/08 09:24:07 rvakkala
-- Changed SNMP support for Buddy server as per changes done in CLI.
--
-- Revision submit_cheetah_12114/2 2005/05/18 09:50:29 rvakkala
-- Added MIB support for session mirroring.
--
-- Revision submit_cheetah_12217/1 2005/05/25 09:50:18 rvakkala
-- Added MIB support for RTSP enhancement.
--
-- Revision submit_cheetah_12159/1 2005/05/17 09:09:43 rvakkala
-- Added MIB support for /c/slb/virt<x>/service rtsp/softgrid
--
-- Revision submit_cheetah_12163/1 2005/05/20 05:11:38 rvakkala
-- Added MIBS for session mirror statistics.
--
-- Revision submit_cheetah_12113/1 2005/05/25 10:10:45 rvakkala
-- Added MIB support for Media Portal Nat.
--
-- Revision submit_cheetah_11834/1 2005/05/12 09:50:20 rvakkala
-- Added MIBs for buddy servers.
--
-- Revision submit_cheetah_12114/1 2005/05/18 09:34:50 rvakkala
-- Added MIB support for session mirroring
--
-- Revision submit_cheetah_11747/2 2005/04/29 05:40:39 rvakkala
-- Changed the range to allow user the configured service timeout value to be 0.
--
-- Revision submit_cheetah_11792/1 2005/04/28 00:46:18 ravi
-- Added SNMP code for Backup Server Enhancement
--
-- Revision submit_cheetah_11747/1 2005/04/29 04:26:42 rvakkala
-- Changed the MIB range to allow user the configured service timeout value to be 0.
--
-- Revision submit_cheetah_11630/2 2005/04/23 10:43:51 hponnuru
-- Merged with previous changes.
--
-- Revision submit_cheetah_11567/2 2005/04/19 13:05:40 rvakkala
-- Added mib variables for Virtual Service Timeout
--
-- Revision submit_cheetah_11619/1 2005/04/18 18:31:10 yatsze
-- Clean up GSLB mib objects
--
-- Revision submit_cheetah_11527/1 2005/04/18 14:00:36 dillibab
-- Fixed build error came due to submit # 11502
--
-- Revision submit_cheetah_11502/2 2005/04/18 05:54:20 rvakkala
-- Added SNMP support for cfg/slb/filt<x>/adv/layer7/sip
--
-- Revision submit_cheetah_11630/1 2005/04/23 10:28:14 hponnuru
-- Added MIB variables for VmaSport.
--
-- Revision submit_cheetah_11404/2 2005/04/13 08:22:13 hponnuru
-- Added SNMP support for /c/slb/filt #/adv/security/parsechn
--
-- Revision submit_cheetah_11530/1 2005/04/12 12:37:48 rvakkala
-- Fixed build error in Elmo build.
--
-- Revision submit_cheetah_11404/1 2005/04/13 06:17:18 hponnuru
-- Added SNMP support for /c/slb/filt #/adv/security/parsechn.
--
-- Revision submit_cheetah_11502/1 2005/04/18 05:33:17 rvakkala
-- Added mib variables for SIP NAT
--
-- Revision submit_cheetah_11567/1 2005/04/19 06:02:19 rvakkala
-- Added mib variables forVirtual Service Timeout
--
-- Revision submit_cheetah_11406/1 2005/04/12 08:52:42 rvakkala
-- added MIB variables for WLM
--
-- Revision submit_cheetah_11367/1 2005/03/31 20:50:50 yatsze
-- Add stats for threshold exceeded
--
-- Revision submit_cheetah_11302/1 2005/03/25 21:31:57 yuhuang
-- Q00985537: Added wts to the health check type list.
--
-- Revision submit_cheetah_11273/1 2005/03/23 21:54:59 yatsze
-- Add gslbCurCfgGenNoResp and gslbNewCfgGenNoResp
--
-- Revision submit_cheetah_11186/1 2005/03/15 02:46:59 rrekha
-- Remove the following flags from Makefile and added to the *.raw
-- files : WLM_SASP, SLB_SIP, X_FORWARDED_FOR, SLB_PBIND_CIP_NORPORT,
-- SLB_PORT_BIND
--
-- Revision submit_cheetah_11111/1 2005/03/07 11:54:17 dillibab
-- Corrected valid range specification as per CLI for Time Window
-- and Hold Down duration for rate limiting.
--
-- Revision submit_cheetah_11093/2 2005/03/03 01:20:30 rrekha
-- merged out.
--
-- Revision submit_cheetah_11078/2 2005/03/02 21:50:50 yuhuang
-- Merged with submit 11025
--
-- Revision submit_cheetah_11078/1 2005/03/02 21:37:42 yuhuang
-- Q00930992: Added mib objects for subdmac command for the feature
-- pattern match redir filter.
--
-- Revision submit_cheetah_11093/1 2005/03/03 01:14:53 rrekha
-- Added SNMP support for SIP options health check.
--
-- Revision submit_cheetah_11025/1 2005/03/02 20:54:26 rrekha
-- SNMP support for WLM SASP.
--
-- Revision submit_cheetah_11082/1 2005/03/02 11:14:23 mmacnt
-- Q001028659 - Allow operator to supply name for VIP
--
-- Revision submit_cheetah_11042/1 2005/03/02 02:34:45 bshao
-- CR 971821: Added code to support 64 scriptable health checks.
--
-- Revision submit_cheetah_10951/1 2005/03/01 15:50:49 yatsze
-- Change server selected to server returned
--
-- Revision submit_cheetah_10393/1 2005/01/05 21:01:27 mmacnt
-- code reorg - moved from lib/agent
--
-- Revision submit_cheetah_10527/1 2004/12/17 19:39:27 yuhuang
-- Added mibs for WTS and userhash in current and new config tables.
--
-- Revision submit_cheetah_10334/1 2004/11/20 01:28:49 dillibab
-- Added SNMP objects to configure insert cookie dname state.
--
-- Revision submit_cheetah_10253/1 2004/11/19 15:54:25 yatsze
-- Add more GSLB stats
--
-- Revision submit_cheetah_10174/1 2004/11/11 01:06:18 rrekha
-- Fixed Q01024711: Correct range for fltCur/NewCfgNatTimeout.
--
-- Revision submit_cheetah_9807/1 2004/10/19 14:17:30 dillibab
-- Added objects for addition/removal networks to metrics of rule.
-- Added bmap object for networks that are configured to metric of rule.
--
-- Revision submit_cheetah_9680/1 2004/10/05 19:37:41 yatsze
-- Add DNS persistence
--
-- Revision submit_cheetah_9482/1 2004/10/04 19:55:24 rrekha
-- Correct the description for slbSessionInfoFlag.
--
-- Revision submit_cheetah_9542/1 2004/09/23 01:02:26 rrekha
-- Added range for fltCurCfgProtocol/fltNewCfgProtocol.
--
-- Revision submit_cheetah_9464/1 2004/09/21 07:16:26 dillibab
-- Added SNMP mib objects for Filter reverse sesssion entries.
--
-- Revision submit_cheetah_9386/1 2004/09/13 22:24:00 bshao
-- CR 976805: Added code to support 64 bytes of domain name size and
-- 34 bytes of host name size
--
-- Revision submit_cheetah_9196/1 2004/09/01 21:43:01 rrekha
-- Minor changes for SMIv2 compliance.
--
-- Revision submit_cheetah_8846/1 2004/08/11 00:59:40 rrekha
-- Changed slbNewCfgDrecordIndex to read-only.
--
-- Revision submit_cheetah_8717/1 2004/08/05 15:14:17 yatsze
-- Add support for remote vip
--
-- Revision submit_cheetah_8688/1 2004/08/04 20:35:33 rrekha
-- Obsolete fltCur/NewCfgUrlRedir as there is another variable
-- fltCur/NewCfgL7DenyState for the same.
--
-- Revision submit_cheetah_8578/1 2004/07/30 00:36:18 rrekha
-- Update the copyright header.
--
-- Revision submit_cheetah_8371/1 2004/07/15 23:18:46 rrekha
-- Changed name for slbCur/NewCfgSmtport to slbCur/NewCfgSmtportNum as
-- per Wendell's request.
--
-- Revision submit_cheetah_8279/1 2004/07/12 09:36:34 dillibab
-- Changed syntax of slbNewCfgSmtportIndex to Integer32.
--
-- Revision submit_cheetah_8256/2 2004/07/10 09:54:32 dillibab
-- Merged with previous changes.
--
-- Revision submit_cheetah_8262/1 2004/07/09 22:12:10 rrekha
-- Fixed Q00933924: Added more description for objects
-- slbCur/NewCfgGroupHealthCheckFormula.
--
-- Revision submit_cheetah_8172/2 2004/07/09 15:01:34 dillibab
-- Merged with previous changes.
--
-- Revision submit_cheetah_8236/1 2004/07/09 13:52:20 yatsze
-- REmove enum persistence since GSLB_ENH_PERS is not defined
--
-- Revision submit_cheetah_8188/1 2004/07/07 20:04:30 yatsze
-- Add GSLB_ENH_PERS flag
--
-- Revision submit_cheetah_8172/1 2004/07/09 14:45:16 dillibab
-- Added mib objects for SMT Port configuration.
--
-- Revision submit_cheetah_8256/1 2004/07/10 09:10:56 dillibab
-- Added mib object slbOperGroupRealServerTable for oper real server groups.
--
-- Revision submit_cheetah_8092/1 2004/07/03 03:42:46 rrekha
-- Fixed Q00936962: Added mib objects slbCurCfgGroupOperatorAccess and
-- slbNewCfgGroupOperatorAccess.
--
-- Revision submit_cheetah_8102/1 2004/07/01 07:36:57 dillibab
-- Added mib object for Dbind in filter tables.
--
-- Revision submit_cheetah_8034/1 2004/06/29 03:25:57 dillibab
-- Added mib object for Fast Health Check of Real Server.
--
-- Revision submit_cheetah_8006/2 2004/06/28 09:17:09 dillibab
-- Merged with previous changes.
--
-- Revision submit_cheetah_8035/1 2004/06/25 23:53:25 rrekha
-- Fixed Q00811049: Do not obsolete hcsNewCfgAddOpenCmd since it will be
-- used when UDP_SCRIPT_HC is not defined.
--
-- Revision submit_cheetah_8006/1 2004/06/28 09:06:18 dillibab
-- Added mib variable for Advance Group Health Check Formula for Real Server Group.
--
-- Revision submit_cheetah_7993/1 2004/06/23 23:31:29 rrekha
-- Fixed Q00933897: slbNewCfgVirtServiceXForwardedFor should have max-access
-- of read-create not read-only.
--
-- Revision submit_cheetah_7887/1 2004/06/22 19:57:35 yatsze
-- Add mib objects gslbCurCfgGenRemSiteUpdateIntervalSeconds and gslbNewCfgGenRemSiteUpdateIntervalSeconds
--
-- Revision submit_cheetah_7844/1 2004/06/16 19:54:26 yatsze
-- Rename DNS redirect to DNS direct
--
-- Revision submit_cheetah_7746/2 2004/06/14 12:47:42 dillibab
-- Merged with previous changes.
--
-- Revision submit_cheetah_7798/2 2004/06/11 23:47:17 rrekha
-- Merged with previous changes.
--
-- Revision submit_cheetah_7788/1 2004/06/11 17:40:12 ocheung
-- Q00811049: Allow script send and expect content to be greater than
-- 255 characters because the CLI can now support up to 512 characters
-- in a single input line.
--
-- Revision submit_cheetah_7798/1 2004/06/11 23:38:48 rrekha
-- Added more enums to MIB object slbSessionInfoFlag.
--
-- Revision submit_cheetah_7733/1 2004/06/09 19:02:38 rtsai
-- CR916928:LDAP L7 Slb stats show wrong information.
-- Removed LDAP stats from EMS and WBUI because most of
-- stats are for debugging only and can not be counted correctly
-- due to the mix of L4 and L7 processing.
--
-- Revision submit_cheetah_7746/1 2004/06/14 06:12:22 dillibab
-- Added support to Rport metric.
--
-- Revision submit_cheetah_7634/3 2004/06/02 20:24:08 yatsze
-- Clean up code
--
-- Revision submit_cheetah_7566/1 2004/05/27 18:38:51 yatsze
-- Add support to configure DSSP version 1 or 2
--
-- Revision submit_cheetah_7562/1 2004/05/26 19:41:56 yatsze
-- Merge pass and stop metric to none
--
-- Revision submit_cheetah_7133/1 2004/05/12 22:51:00 rtsai
-- Added fltCurCfgEgressPip and fltNewCfgEgressPip.
--
-- Revision submit_cheetah_7240/1 2004/05/10 20:26:47 yatsze
-- Add mib object for add/remove rule and add/remove virtual server/remote real server
--
-- Revision submit_cheetah_7209/1 2004/05/10 15:16:42 yatsze
-- Add mib objects gslbStatGeo and gslbStatPers
--
-- Revision submit_cheetah_7194/1 2004/05/07 16:06:43 yatsze
-- Add mib objects for enhanced GSLB
--
-- Revision submit_cheetah_7172/1 2004/05/06 17:16:49 yatsze
-- Add GSLB mib objects for gslbInfo, gslbStats and gslbOper
--
-- Revision submit_cheetah_7152/1 2004/05/04 20:37:28 yatsze
-- Add mib objects for enhanced GSLB
--
-- Revision submit_cheetah_7117/1 2004/05/04 14:21:03 yatsze
-- Add mib objects for enhanced GSLB
--
-- Revision submit_cheetah_7112/1 2004/04/30 19:36:55 yatsze
-- Add gslb stats mib objects for enhanced GSLB
--
-- Revision submit_cheetah_7087/2 2004/04/30 15:54:09 yatsze
-- Add mib objects for enhanced GSLB
--
-- Revision submit_cheetah_7087/1 2004/04/30 12:39:58 yatsze
-- Added gslbEnhNetworkCfg and gslbRuleCfg mib objects
--
-- Revision submit_cheetah_6824/2 2004/04/03 02:15:27 ocheung
-- Udpated description for OffsetCmd, DepthCmd, and WaitCmd.
--
-- Revision submit_cheetah_6824/1 2004/04/01 00:53:22 ocheung
-- Corrected SYNTAX for hcsNewCfgAddOffsetCmd, hcsNewCfgAddWaitCmd, and
-- hcsNewCfgAddDepthCmd.
--
-- Revision submit_cheetah_6776/1 2004/03/31 00:06:07 ocheung
-- Added MIBs, SNMP agent, and WebUI support for FILT_IDS_GRP.
--
-- Revision submit_cheetah_6763/1 2004/03/25 00:11:23 ocheung
-- Added MIBs, SNMP agent, and WebUI support for TCP_BIN_SCRIPT.
--
-- Revision submit_cheetah_6703/1 2004/03/20 00:29:45 rtsai
-- obsoleted slbCurCfgProxyGratArp, slbNewCfgProxyGratArp and
-- slbStatSpMaintTcpFragments
-- Added slbCurCfgPortBind,slbNewCfgPortBind,
-- slbCurCfgVirtServiceEgressPip,
-- slbNewCfgVirtServiceEgressPip.
--
-- Revision submit_cheetah_6511/1 2004/03/16 00:37:06 rtsai
-- Added mib for pipout command in virtual service menu.
--
-- Revision submit_cheetah_6382/1 2004/02/25 23:22:32 rtsai
-- Added httphead health check.
--
-- Revision submit_cheetah_6217/1 2004/01/29 00:53:38 rrekha
-- Added SNMP support for pbind norport feature.
--
-- Revision submit_cheetah_6177/1 2004/01/27 20:20:28 rtsai
-- Removed l7 ldap unneeded stats mibs.
--
-- Revision submit_cheetah_5951/1 2003/12/18 22:17:24 rrekha
-- Fixed Q00813835: Added MIB objects fltCurCfgAclIpLength and
-- fltNewCfgAclIpLength to configure IP packet length.
--
-- Revision submit_cheetah_5890/1 2003/12/15 23:37:52 rrekha
-- Added 64 bit counters for real server, group and virtual server
-- octets.
--
-- Revision submit_cheetah_5841/1 2003/12/05 22:59:06 rrekha
-- Converted MIBs to SMIv2.
--
-- Revision submit_cheetah_5733/1 2003/11/20 00:07:56 abhijitk
-- SNMP MIB/agent for 802.1p filter matching.
--
-- Revision submit_cheetah_5684/1 2003/11/17 23:44:17 vprayaga
-- Initial checkin for IEEE 8023ad lag MIB.
--
-- Revision submit_cheetah_5666/1 2003/11/12 22:58:22 rrekha
-- Fixed Q00787939: Correct the range for fltCurCfgHttpRedirMappingFromStr,
-- fltCurCfgHttpRedirMappingToStr, fltNewCfgHttpRedirMappingFromStr and
-- fltNewCfgHttpRedirMappingToStr.
--
-- Revision submit_cheetah_5552/1 2003/11/03 21:51:07 rrekha
-- Fixed Q00780526: Added SNMP support to ena/dis real server
-- per group.
--
-- Revision submit_cheetah_5476/2 2003/10/30 18:44:04 ocheung
-- Merged file.
--
-- Revision submit_cheetah_5466/1 2003/10/28 21:34:58 rrekha
-- Fixed Q00778686: Added MIB support for SIP health check.
--
-- Revision submit_cheetah_5476/1 2003/10/30 18:29:00 ocheung
-- Added SNMP and WebUI support for additional commands for
-- UDP scripted health check (nsend, nexpect, depth).
--
-- Revision submit_cheetah_5454/1 2003/10/28 01:51:15 rrekha
-- Correct range for slbCurCfgRealServerTimout/slbNewCfgRealServerTimeout.
--
-- Revision submit_cheetah_5448/1 2003/10/25 17:36:33 rrekha
-- Fixed typo in comment which was causing build error.
--
-- Revision submit_cheetah_5447/1 2003/10/25 00:12:54 rrekha
-- Fixed Q00769816: Correct range for MIB objects slbCurCfgGroupHealthCheckUrl
-- and slbNewCfgGroupHealthCheckUrl to 0-127.
-- Fixed Q00769810: Correct range for MIB objects slbCurCfgRealServerIdsvlan
-- and slbNewCfgRealServerIdsvlan to 0-4090.
-- Fixed Q00769811: Remove range for MIB variables slbCurCfgRealServerIdsport
-- and slbNewCfgRealServerIdsport. The range for these should be
-- got from the MIB agPortTableMaxEnt.
--
-- Revision submit_cheetah_5338/1 2003/10/14 17:39:32 yatsze
-- Port CP_GSLB_DOMAINS from Tigon
--
-- Revision submit_cheetah_5316/1 2003/10/14 14:26:46 yatsze
-- Port CP_GSLB_HTTP_PROXY from Tigon
--
-- Revision submit_cheetah_5236/1 2003/10/03 01:54:09 ocheung
-- Added MIB, SNMP agent, and WebUI support for scripted health
-- check wait window (SCRIPT_WAIT_CMD).
--
-- Revision submit_cheetah_5230/1 2003/10/02 02:07:56 ocheung
-- Added MIB and SNMP agent support for UDP scripted health check.
--
-- Revision submit_cheetah_5213/1 2003/09/30 18:43:37 yuhuang
-- Added range for idsvlan and idsport MIB objects.
--
-- Revision submit_cheetah_4435/1 2003/08/12 22:59:49 rrekha
-- Changed name of mib file for cheetah*.mib to aos*.mib.
--
-- Revision submit_cheetah_4181/1 2003/07/24 23:40:22 rtsai
-- Added MIBs for HTTP redirect mapping table and filter pattern
-- group.
-- Added MIB for HTTP X-Forwarded-For.
--
-- Revision submit_cheetah_4094/1 2003/07/22 00:34:18 rrekha
-- Added SNMP support for SIP load balancing.
--
-- Revision submit_cheetah_3944/1 2003/07/16 17:44:50 ocheung
-- Added fltCurCfgLayer7ParseAll, fltNewCfgLayer7ParseAll,
-- fltCurCfgSecurityParseAll, fltNewCfgSecurityParseAll.
-- Obsoleted slbCurCfgSlowage and slbNewCfgSlowage, and add
-- slbCurCfgNewSlowage and slbNewCfgNewSlowage.
--
-- Revision submit_cheetah_3792/1 2003/07/07 21:25:13 yhuang1
-- L7_SLB_LDAP: added ldap statistics.
--
-- Revision submit_cheetah_3709/1 2003/07/03 19:00:42 yuhuang
-- Added MIB objects idsvlan and idsport in current and new real server configuration.
--
-- Revision submit_cheetah_3757/1 2003/07/02 02:12:59 ocheung
-- Fixed Q00695588. Removed weightedHash from slbCurCfgGroupMetric
-- and slbNewCfgGroupMetric because this feature is for the next
-- release (21.1).
--
-- Revision submit_cheetah_3577/1 2003/06/30 18:02:27 rtsai
-- Added peerpip mib under sync.
--
-- Revision submit_cheetah_3676/1 2003/06/25 21:17:58 yhuang1
-- IP_ACL, UDP_BLAST: clean up old code.
--
-- Revision submit_cheetah_3584/1 2003/06/23 20:07:05 yhuang1
-- UDP_BLAST: moved under security item.
--
-- Revision submit_cheetah_3504/1 2003/06/18 21:15:49 yhuang1
-- UDP_BLAST: changed packet limit value.
--
-- Revision submit_cheetah_3499/1 2003/06/17 17:23:11 andyrao
-- Changed the name of the MIB variable slbCurCfgVirtServiceDamBlk to
-- slbCurCfgVirtServiceDirect. Changed the name of the MIB variable
-- slbNewCfgVirtServiceDamBlk to slbNewCfgVirtServiceDirect. Also
-- made changes to the descriptions of both of these MIB variables.
--
-- Revision submit_cheetah_3475/1 2003/06/12 23:38:55 andyrao
-- Removed the definition of the MIB variable 'slbStatMaintDamBlkPkts'.
--
-- Revision submit_cheetah_3421/1 2003/06/10 18:14:36 yatsze
-- Add Advanced Global SLB mib
--
-- Revision submit_cheetah_3269/1 2003/05/30 17:27:38 rrekha
-- Ported fix for Q00638073: Added mib object for real server response time.
-- Also added real server weight in the slbVirtServicesInfoTable.
--
-- Revision submit_cheetah_3249/1 2003/05/23 19:18:18 yatsze
-- Add code for RTSP health check
--
-- Revision submit_cheetah_3227/1 2003/05/22 17:58:52 yuhuang
-- Changed MIB objects slbCurCfgVlanBind and slbNewCfgVlanBind to
-- slbCurCfgRtsVlan and slbNewCfgRtsVlan.
--
-- Revision submit_cheetah_3159/2 2003/05/16 22:58:43 rmundhra
-- Merging out.
--
-- Revision submit_cheetah_3122/2 2003/05/16 01:51:50 rtsai
-- Merged code.
--
-- Revision submit_cheetah_3161/1 2003/05/16 00:25:14 rrekha
-- Added proper description for slbCurCfgGroupRealThreshold and
-- slbNewCfgGroupRealThreshold.
--
-- Revision submit_cheetah_3122/1 2003/05/16 00:40:40 rtsai
-- Added stats mibs for ENH_RATE_LIM.
--
-- Revision submit_cheetah_3159/1 2003/05/16 22:36:13 rmundhra
-- Added SNMP support for SLB session attack detection.
--
-- Revision submit_cheetah_3061/1 2003/05/13 18:01:17 rtsai
-- Changed pipNewCfgPip mib to be read only.
--
-- Revision submit_cheetah_3065/2 2003/05/09 17:47:54 andyrao
-- Modified the access level of slbNewCfgGroupPhashMask from read-only
-- to read-write.
--
-- Revision submit_cheetah_3065/1 2003/05/09 17:43:40 andyrao
-- Defined two new MIB variables: slbCurCfgGroupPhashMask and
-- slbNewCfgGroupPhashMask.
--
-- Revision submit_cheetah_3046/2 2003/05/08 23:17:12 andyrao
-- Merged out.
--
-- Revision submit_cheetah_3056/1 2003/05/08 22:24:16 rtsai
-- Fixed virtual service stats table entry number.
--
-- Revision submit_cheetah_2810/2 2003/05/08 21:27:29 rtsai
-- Merged code.
--
-- Revision submit_cheetah_3045/1 2003/05/08 20:47:47 ocheung
-- Added support for SCRIPT_HC_WAIT feature.
--
-- Revision submit_cheetah_2810/1 2003/05/08 17:47:12 rtsai
-- Changed Virtual Service Stats table to have 3 indexes instead of 2 indexes.
-- Added fltNewCfgProxyIp and fltCurCfgProxyIp to filter table.
--
-- Revision submit_cheetah_3027/1 2003/05/07 23:02:53 yuhuang
-- Added MIB objects slbCurCfgGroupMinmissHash and slbNewCfgGroupMinmissHash.
--
-- Revision submit_cheetah_2881/1 2003/05/07 02:14:34 ocheung
-- Added support for WEIGHTED_HASH, WAP_ADD_HC, ENH_RATE_LIM,
-- UDP_PMATCH_FILT, and UDP_SCRIPT_HC features.
--
-- Revision submit_cheetah_2892/1 2003/05/02 23:08:29 rrekha
-- SNMP_HC_WEIGHT: Added mib objects to ena/dis SNMP health check
-- weights.
--
-- Revision submit_cheetah_2850/1 2003/05/01 20:31:39 rmundhra
-- Added MIB object for retrieving the max sessions
-- that can be present in the session table at any
-- given time.
--
-- Revision submit_cheetah_2809/1 2003/04/25 21:39:42 yhuang1
-- IP_ACL: added MIBs.
--
-- Revision submit_cheetah_2807/2 2003/04/25 20:48:20 andyrao
-- Merged out.
--
-- Revision submit_cheetah_2437/1 2003/04/25 18:14:11 rtsai
-- Added MIB for ECMP, Virtual Service Stats.
--
-- Revision submit_cheetah_2784/2 2003/04/24 20:46:52 yuhuang
-- Merged with previous submit.
--
-- Revision submit_cheetah_2784/1 2003/04/24 20:34:49 yuhuang
-- Added MIB objects slbCurCfgVlanBind and slbNewCfgVlanBind for the
-- VLAN bind real server lookup.
--
-- Revision submit_cheetah_2691/1 2003/04/24 01:13:56 yhuang1
-- UDP_BLAST: added SNMP mib and some agent support.
--
-- Revision submit_cheetah_2736/1 2003/04/22 22:17:27 rrekha
-- Added MIB objects for SNMP HC extension, under real server
-- table slbNewCfgRealServerCommString/slbCurCfgRealServerCommString
-- and slbNewCfgRealServerOid/slbcurCfgRealServerOid
--
-- Revision submit_cheetah_2730/1 2003/04/22 01:43:01 hkavulur
-- Support for INBOUND_LINKLB
--
-- Revision submit_cheetah_2587/1 2003/04/11 18:15:41 yhuang1
-- SESSION_RESET: added WebUI and SNMP support.
--
-- Revision submit_cheetah_2576/1 2003/04/11 16:35:30 rtsai
-- Changed the name of constants for PipBaseType.
--
-- Revision submit_cheetah_2547/1 2003/04/10 18:58:06 yhuang1
-- L7_SLB_LDAP: WebUI and SNMP support added.
--
-- Revision submit_cheetah_2544/2 2003/04/08 18:47:27 andyrao
-- Merge out.
--
-- Revision submit_cheetah_2513/1 2003/04/08 18:33:36 yhuang1
-- SLB_THASH: WebUI and SNMP support added.
--
-- Revision submit_cheetah_1843/1 2003/04/05 01:40:16 rtsai
-- Added MIBs for PIP table.
--
-- Revision submit_cheetah_2475/1 2003/04/02 18:01:39 andyrao
-- Modified the definition of the MIB variables radiusAcctReqWithFramedIp
-- and radiusAcctReqWithoutFramedIp.
--
-- Revision submit_cheetah_2430/1 2003/03/28 01:53:43 rrekha
-- Added MIB variables for current/new config table size for
-- filter, real server, real server group and virtual server tables.
--
-- Revision submit_cheetah_2439/1 2003/03/27 22:20:13 andyrao
-- Defined the following new MIB variables: fltCurCfgRadiusWapPersist,
-- fltNewCfgRadiusWapPersist, radiusAcctReqWithFramedIp, and
-- radiusActReqWithoutFramedIp.
--
-- Revision submit_cheetah_2270/2 2003/03/26 22:38:46 rmundhra
-- Merging out.
--
-- Revision submit_cheetah_2402/1 2003/03/25 17:35:18 andyrao
-- Changed the definitions of the MIB variables fltCurCfgAction and
-- fltNewCfgAction back to their original values.
--
-- Revision submit_cheetah_2398/1 2003/03/24 18:56:38 andyrao
-- Small change to the definitions of the MIB variables fltCurCfgAction
-- and fltNewCfgAction.
--
-- Revision submit_cheetah_2373/1 2003/03/21 00:12:16 andyrao
-- Modified the MIB variables fltCurCfgAction and fltNewCfgAction by
-- adding the 'goto' action. Defined 2 new MIB variables called
-- fltCurCfgGotoFilter and fltNewCfgGotoFilter. These variables are
-- the "filter ID for the goto action".
--
-- Revision submit_cheetah_2334/1 2003/03/18 21:11:12 andyrao
-- Modified the MIB variables slbCurCfgGroupMetric and slbNewCfgGroupMetric
-- to include support for phash.
--
-- Revision submit_cheetah_2285/1 2003/03/14 19:18:28 andyrao
-- Modified the MIB variables slbCurCfgGroupHealthCheckLayer and
-- slbNewCfgGroupHealthCheckLayer to include the Radius access, TFTP,
-- and WTP health checks.
--
-- Revision submit_cheetah_2213/1 2003/03/13 19:42:39 smiao
-- Collected NAAP stats info based on per port, not per SP.
-- Obsoleted NAAP link level ack packet alloc, free and fail stats, since there
-- was no need to store the allocated ack packet in the array buffer.
--
-- Revision submit_cheetah_2270/1 2003/03/26 22:09:48 rmundhra
-- Initial checkin for Session Table via SNMP.
--
-- Revision submit_cheetah_2260/1 2003/03/12 20:52:08 andyrao
-- The last check-in caused the OIDs to change; this checkin undoes
-- that.
--
-- Revision submit_cheetah_2259/1 2003/03/12 18:03:12 andyrao
-- Added the following MIB objects:
-- slbCurCfgVirtServiceSelectiveDam
-- slbNewCfgVirtServiceSelectiveDam
-- wapSelectiveDamPkts
--
-- Revision submit_cheetah_2181/1 2003/03/05 22:39:37 rrekha
-- Added MIB descriptions for 2208/2216 PIPs.
--
-- Revision submit_cheetah_1919/1 2003/02/05 20:03:18 rrekha
-- Changed the include paths for integrating support
-- for SNMP V3 Windmanage Stack.
--
-- Revision submit_cheetah_1779/1 2003/01/06 22:21:00 rrekha
-- Fixed Q00584200: Changed enum for slbRealServerInfoHealthLayer.
--
-- Revision submit_cheetah_1688/1 2002/12/11 22:09:09 rrekha
-- SNMP_HC: slbCurCfgGroupHealthCheckLayer/slbNewCfgGroupHealthCheckLayer now
-- have enums to support SNMP health check.
--
-- Revision submit_cheetah_1679/1 2002/12/11 01:07:30 rrekha
-- SNMP_HC: Added support for SNMP health checks.
--
-- Revision submit_cheetah_1027/1 2002/12/09 19:16:01 rrekha
-- Added MIB objects gslbCurCfgGenEncrypt/gslbNewCfgGenEncrypt.
--
-- Revision submit_cheetah_1581/1 2002/11/26 21:47:03 rmundhra
-- Modified the range for fltCurCfgVlan and fltNewCfgVlan
-- to 4090.
--
-- Revision submit_cheetah_1568/1 2002/11/25 22:13:06 rmundhra
-- CR Q00501984: Ported from 10.0
-- RFE: GSLB proximity w/ lookups enabled to consider
-- hostname.
--
-- Revision submit_cheetah_1528/1 2002/11/19 18:43:01 rrekha
-- Fixed Q00539233: Added slbVirtServicesInfoTable.
--
-- Revision submit_cheetah_1517/1 2002/11/15 01:14:21 rrekha
-- Fixed Q00549333: For slbNewCfgVirtServicePBind/slbCurCfgVirtServicePBind
-- changes the names in the enum so that they are consistent with CLI.
--
-- Revision submit_cheetah_1427/1 2002/11/01 23:44:12 rrekha
-- Fixed Q00550261: Added auxiliary session table and per SP
-- auxiliary session table statistics.
--
-- Revision submit_cheetah_1394/1 2002/10/29 18:34:03 rrekha
-- Added slbRealServerRportInfoTable which gives the status of
-- each rport.
-- Also added slbRealServerInfoVlan.
--
-- Revision submit_cheetah_1326/1 2002/10/22 00:49:40 rrekha
-- Added MIB variables slbCurCfgProxyGratArp/slbNewCfgProxyGratArp.
--
-- Revision submit_cheetah_1243/1 2002/10/15 19:32:19 rrekha
-- Added SSL maintenance statistics.
--
-- Revision submit_cheetah_1151/1 2002/10/09 01:13:15 rrekha
-- Fixed Q00533798: Added MIB objects which clear the SLB
-- nonop stats.
--
-- Revision submit_cheetah_1080/1 2002/10/02 19:59:28 rrekha
-- Fixed Q00528095 : Added GSLB virtual server statistics.
--
-- Revision submit_cheetah_1073/2 2002/10/01 02:03:29 rrekha
-- Merged with previous version.
--
-- Revision submit_cheetah_1032/1 2002/09/30 18:30:14 rmundhra
-- Added PIP changes for MODEL_2224.
--
-- Revision submit_cheetah_1073/1 2002/10/01 02:02:04 rrekha
-- Added slbNewCfgGroupIdsFlood/slbCurCfgGroupIdsFlood for
-- ids group flood feature.
--
-- Revision submit_cheetah_1033/1 2002/09/25 23:58:28 rrekha
-- Fixed Q00528095 : Added MIB objects for GSLB group stats.
--
-- Revision submit_cheetah_926/1 2002/09/16 17:38:21 rrekha
-- Removed WAP DMA read/write statistics. These stats are for Tigon only.
--
-- Revision submit_cheetah_883/1 2002/09/06 20:57:52 rrekha
-- Fixed Q00514078: Changed enum for fltNewCfgInvert/fltCurCfgInvert
-- to enabled/disabled to be consistent with CLI.
--
-- Revision submit_cheetah_848/1 2002/09/04 18:44:34 rmundhra
-- Fixed CR Q00512410: WebUI: L4 PIP configuration shows
-- wrong ports for both 2424 and 2448.
-- Modified descriptions for pip configuration objects
-- to reflect the ports affected based on different
-- hardware platforms.
--
-- Revision submit_cheetah_826/1 2002/09/03 18:14:23 rrekha
-- Added MIBs for filter statistics per SP.
--
-- Revision submit_cheetah_322/1 2002/07/10 01:41:45 rrekha
-- Fixed Q00479767: Remove slbNewCfgRealGroupIdslb/slbCurCfgRealGroupIdslb
-- as they are no longer used. Added support for group ids state and port.
--
-- Revision submit_cheetah_217/1 2002/06/26 20:28:35 rrekha
-- New mibs to support scriptable health checks.
--
-- Revision submit_cheetah_212/1 2002/06/25 17:58:40 rrekha
-- Fixed some typos in mib descriptions.
--
-- Revision ch_1_0_0_dev/15 2002/06/04 23:20:51 rrekha
-- Fixed Q00453911 : Added slb oper command to clear session table.
-- Removed the per port clear oper command since it no longer applies per
-- port. This should fix the ASSERTs.
--
-- Revision ch_1_0_0_dev/14 2002/05/30 19:45:12 rmundhra
-- Porting RFE: GSLB no remote real server SLB.
--
-- Revision ch_1_0_0_dev/13 2002/05/29 18:44:49 rmundhra
-- Porting CR Q00421722 - RFE: Add support for global
-- enable/disable of Source MAC Address substitution.
-- When enabled supercedes value of individual real server
-- submac.
--
-- Revision ch_1_0_0_dev/12 2002/05/28 19:47:29 rrekha
-- Removed node tcpStats as it is no longer used.
--
-- Revision ch_1_0_0_dev/11 2002/05/28 19:40:10 rrekha
-- Removed the TCP statistics as tcpStatCurConns is present in the
-- standard MIB-II and tcpStatHalfOpen has been added under the
-- layer7 maint statistics.
--
-- Revision ch_1_0_0_dev/10 2002/05/23 23:16:55 rrekha
-- Added object rtspStatBufferAllocs.
-- Changed descriptions for ftpStats to be more meaningful.
--
-- Revision ch_1_0_0_dev/9 2002/05/21 18:04:25 rrekha
-- Correct the description for gslbCurCfgGenHttpRedirect and
-- gslbNewCfgGenHttpRedirect.
--
-- Revision ch_1_0_0_dev/8 2002/05/15 21:54:22 rrekha
-- Renamed slbStatPortRealServerTable and slbStatPortMaintTable
-- to slbStatSpRealServerTable and slbStatSpMaintTable as the stats
-- now are per SP not per port.
--
-- Revision ch_1_0_0_dev/7 2002/05/10 01:06:46 rrekha
-- Added missing statistics under slbMaintStats, slbStatPortMaintTable
-- and ftpStats.
--
-- Revision ch_1_0_0_dev/6 2002/05/09 17:52:09 rrekha
-- Rearranged objects under the virtual server and services tables to be
-- more consistent with CLI.
--
-- Revision ch_1_0_0_dev/5 2002/05/02 23:53:32 rrekha
-- Rearranged nodes under slbGeneralCfg.
--
-- Revision ch_1_0_0_dev/4 2002/05/01 18:31:28 smiao
-- Removed VAM discards. Added LAND attacks.
--
-- Revision ch_1_0_0_dev/3 2002/04/23 21:47:01 smiao
-- Renamed node cheetah to aws-switches.
--
-- Revision ch_1_0_0_dev/2 2002/04/18 19:14:56 smiao
-- Removed slbCurCfgPortProxyIpAddr and slbNewCfgPortProxyIpAddr for Cheetah.
--
-- Revision ch_1_0_0_dev/1 2002/03/27 02:26:27 smiao
-- Checked in for PIP configurations support in CHEETAH.
--
-- Revision ch10latest_smiao/2 2002/02/13 01:41:23 smiao
-- Initial checked in for cheetah MIB files.
--
-- $EndLog$
ALTEON-CHEETAH-LAYER4-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Integer32, Counter32, Gauge32, Counter64,
IpAddress, Unsigned32
FROM SNMPv2-SMI
DisplayString, PhysAddress
FROM SNMPv2-TC
aws-switch
FROM ALTEON-ROOT-MIB;
layer4 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
rrekha@nortelnetworks.com
sbatchu@nortelnetworks.com"
DESCRIPTION
"The MIB module for the Alteon OS Layer 4 configuration, statistics
and information ."
REVISION "200409010000Z" -- 1 September, 2004
DESCRIPTION
"Added revision clause for SMIv2 compliance."
::= { aws-switch 4 }
layer4Configs OBJECT IDENTIFIER ::= { layer4 1 }
layer4Stats OBJECT IDENTIFIER ::= { layer4 2 }
layer4Info OBJECT IDENTIFIER ::= { layer4 3 }
layer4Oper OBJECT IDENTIFIER ::= { layer4 4 }
slbCfg OBJECT IDENTIFIER ::= { layer4Configs 1 }
filterCfg OBJECT IDENTIFIER ::= { layer4Configs 2 }
gslbCfg OBJECT IDENTIFIER ::= { layer4Configs 3 }
layer4TableSize OBJECT IDENTIFIER ::= { layer4Configs 4 }
wlmCfg OBJECT IDENTIFIER ::= { layer4Configs 6 }
slbGeneralCfg OBJECT IDENTIFIER ::= { slbCfg 1 }
realServerCfg OBJECT IDENTIFIER ::= { slbCfg 2 }
realServerGroupCfg OBJECT IDENTIFIER ::= { slbCfg 3 }
virtualServerCfg OBJECT IDENTIFIER ::= { slbCfg 4 }
portCfg OBJECT IDENTIFIER ::= { slbCfg 5 }
syncCfg OBJECT IDENTIFIER ::= { slbCfg 6 }
wapCfg OBJECT IDENTIFIER ::= { slbCfg 7 }
waphcCfg OBJECT IDENTIFIER ::= { slbCfg 8 }
synAttackDetCfg OBJECT IDENTIFIER ::= { slbCfg 9 }
hcsCfg OBJECT IDENTIFIER ::= { slbCfg 13 }
snmphcCfg OBJECT IDENTIFIER ::= { slbCfg 14 }
pipTblCfg OBJECT IDENTIFIER ::= { slbCfg 15 }
linklbCfg OBJECT IDENTIFIER ::= { slbCfg 16 }
smtportCfg OBJECT IDENTIFIER ::= { slbCfg 17 }
syncGeneralCfg OBJECT IDENTIFIER ::= { syncCfg 1 }
gslbGeneralCfg OBJECT IDENTIFIER ::= { gslbCfg 1 }
gslbSitesCfg OBJECT IDENTIFIER ::= { gslbCfg 2 }
gslbEnhNetworkCfg OBJECT IDENTIFIER ::= { gslbCfg 4 }
gslbRuleCfg OBJECT IDENTIFIER ::= { gslbCfg 5 }
slbSpStats OBJECT IDENTIFIER ::= { layer4Stats 1 }
slbMaintStats OBJECT IDENTIFIER ::= { layer4Stats 5 }
filterStats OBJECT IDENTIFIER ::= { layer4Stats 6 }
gslbStats OBJECT IDENTIFIER ::= { layer4Stats 7 }
wapStats OBJECT IDENTIFIER ::= { layer4Stats 8 }
ftpStats OBJECT IDENTIFIER ::= { layer4Stats 10 }
rtspStats OBJECT IDENTIFIER ::= { layer4Stats 11 }
tcpLimitStats OBJECT IDENTIFIER ::= { layer4Stats 12 }
dnsSlbStats OBJECT IDENTIFIER ::= { layer4Stats 13 }
sslSlbStats OBJECT IDENTIFIER ::= { layer4Stats 16 }
sipStats OBJECT IDENTIFIER ::= { layer4Stats 20 }
sessMirrorStats OBJECT IDENTIFIER ::= { layer4Stats 22 }