forked from kcsinclair/mibs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ALTEON-CHEETAH-BWM-MIB
1749 lines (1559 loc) · 51.1 KB
/
ALTEON-CHEETAH-BWM-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. 2001
-- All rights reserved
--
-- HISTORY
-- $Log: aosbwm.mib,v $
-- Revision 1.1 2007/10/17 01:09:52 jeneric
-- 10/07 mib updates
--
-- Revision submit_cheetah_21390/1 2006/10/24 21:56:40 ramude
-- Added sessions rejected mib object.
--
-- Revision submit_cheetah_15409/2 2005/10/28 09:45:59 rvakkala
-- Corrected check in comment.
--
-- Revision submit_cheetah_15409/1 2005/10/28 09:45:06 rvakkala
-- Added SNMP support for /c/bwm/cont<x>/maxsess.
--
-- Revision submit_cheetah_13563/1 2005/08/05 17:39:17 rrekha
-- Moved all the BWM related flags into the raw files.
--
-- Revision submit_cheetah_12078/1 2005/05/17 08:55:22 rvakkala
-- Added MIB support for /cfg/bwm/report
--
-- Revision submit_cheetah_11383/2 2005/04/20 15:24:30 angamuth
-- Merged with previous submit changes.
--
-- Revision submit_cheetah_11564/2 2005/04/20 07:22:24 hponnuru
-- Merged with previous changes.
--
-- Revision submit_cheetah_11504/1 2005/04/13 09:02:08 hponnuru
-- Added SNMP support for /c/bwm/cont #/iptcpwin.
--
-- $Log: aosbwm.mib,v $
-- Revision 1.1 2007/10/17 01:09:52 jeneric
-- 10/07 mib updates
--
-- Revision submit_cheetah_11564/1 2005/04/20 04:32:14 hponnuru
-- Added SNMP support for IPSoft.
--
-- $Log: aosbwm.mib,v $
-- Revision 1.1 2007/10/17 01:09:52 jeneric
-- 10/07 mib updates
--
-- Revision submit_cheetah_11383/1 2005/04/20 14:18:36 angamuth
-- Added OIDs for Total Packets (BWM_PKT_COUNT) in BWM Contract Stats Tables.
--
-- Revision submit_cheetah_11091/1 2005/03/02 23:49:08 rrekha
-- Added SNMP support for /c/bwm/email command.
--
-- Revision submit_cheetah_10393/1 2005/01/05 21:01:25 mmacnt
-- code reorg - moved from lib/agent
--
-- Revision submit_cheetah_9196/1 2004/09/01 21:50:06 rrekha
-- Minor changes for SMIv2 compliance.
--
-- Revision submit_cheetah_8759/1 2004/08/06 00:27:17 abhijitk
-- Added new MIB variable requested by Wendell.
--
-- Revision submit_cheetah_8731/1 2004/08/05 02:27:11 abhijitk
-- Extended MIB support asked for by Wendell & Mike.
--
-- Revision submit_cheetah_8691/1 2004/08/04 18:31:22 abhijitk
-- Added support for contract group name via SNMP.
--
-- Revision submit_cheetah_8677/1 2004/08/03 20:16:00 abhijitk
-- Brought back bwmNewCfgContractGroupDelete to the MIB.
--
-- Revision submit_cheetah_8219/1 2004/07/08 07:15:17 dillibab
-- Added format for bwm ip user table entries.
--
-- Revision submit_cheetah_8078/1 2004/07/07 15:27:36 dillibab
-- Added mib objects for entries,frequency,monitor-only mode.
--
-- Revision submit_cheetah_7764/1 2004/06/09 22:07:54 kanil
-- size of bwmCur/New CfgContractName objects are set to 31
--
-- Revision submit_cheetah_5839/1 2003/12/05 02:10:08 abhijitk
-- Changed BWM contract name to be 32 characters long (effectively 31
-- characters as the last character is '\0') from 16 characters.
--
-- Revision submit_cheetah_5753/1 2003/11/21 03:08:13 abhijitk
-- Removed bwmNewCfgContractGroupDelete from the MIB.
--
-- Revision submit_cheetah_5749/1 2003/11/20 23:52:13 abhijitk
-- Removed bwmCurCfgContractGroupState and bwmNewCfgContractGroupState from
-- the MIB - as they did not make any sense and because of which the EMS
-- is not able to configure BWM contract group.
--
-- Revision submit_cheetah_5693/1 2003/11/16 19:34:29 rrekha
-- Converted MIBs to SMIv2.
--
-- Revision submit_cheetah_5111/1 2003/09/23 18:15:35 rrekha
-- Fixed Q00753762: Remove the range for bwmCurCfgContractPolicy and
-- bwmNewCfgContractPolicy. They should be obtained using mib object
-- bwmPolicyTableMaxEnt.
--
-- Revision submit_cheetah_4435/1 2003/08/12 22:59:48 rrekha
-- Changed name of mib file for cheetah*.mib to aos*.mib.
--
-- Revision submit_cheetah_3132/1 2003/05/15 01:54:29 abhijitk
-- Updated MIB to reflect changes as suggested by Wendell.
--
-- Revision submit_cheetah_2911/1 2003/05/06 01:38:01 abhijitk
-- Added MIBs for the time policy and the contract group tables.
--
-- Revision submit_cheetah_2846/1 2003/04/30 00:23:03 abhijitk
-- Added the MIB for some of the new 21.0 BWM features.
--
-- Revision submit_cheetah_1919/1 2003/02/05 20:02:16 rrekha
-- Changed the include paths for integrating support
-- for SNMP V3 Windmanage Stack.
--
-- Revision submit_cheetah_1402/1 2002/10/29 22:43:24 rrekha
-- bwmStatTcBufferUsed/bwmStatTcrBufferUsed and
-- bwmStatPortTcBufferUsed/bwmStatPortTcrBufferUsed should be of type
-- integer instead of counter.
--
-- Revision submit_cheetah_796/1 2002/08/29 18:33:30 rrekha
-- BWM contract and contract rate statistics are per port not
-- per SP.
--
-- Revision submit_cheetah_776/1 2002/08/28 01:15:59 rrekha
-- Added bwmCurCfgContractShaping/bwmNewCfgContractShaping.
-- Modified some mib descriptions to better explain the variables.
--
-- Revision submit_cheetah_181/1 2002/06/24 18:23:45 rrekha
-- Added mib object to clear BWM statistics.
--
-- Revision ch_1_0_0_dev/1 2002/04/23 21:46:59 smiao
-- Renamed node cheetah to aws-switches.
--
-- Revision ch10latest_smiao/2 2002/02/13 01:41:23 smiao
-- Initial checked in for cheetah MIB files.
--
-- Revision genie_rekha/8 2001/05/25 00:11:10 rekha
-- Removed 'other' from enumerations.
--
-- Revision genie_rekha/6 2001/05/01 18:18:06 rekha
-- Fixed CR11426: Modified policy buffer limit range to 8192-128000.
--
-- Revision genie_rekha/4 2001/05/01 00:27:35 rekha
-- Fixed CR11422: Remove incorrect range for contract and policy
-- tables. The range for these tables should be obtained via the
-- respective MaxEnt MIB objects.
--
-- Revision genie_rekha/2 2001/02/08 18:18:02 rekha
-- As part of the code cleanup split the Tigon MIB into smaller
-- modules. Instead of altswitch.mib these 5 new modules should be
-- used.
--
-- $EndLog$
--
ALTEON-CHEETAH-BWM-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY, OBJECT-TYPE, Integer32, Counter32,
IpAddress FROM SNMPv2-SMI
DisplayString
FROM SNMPv2-TC
aws-switch
FROM ALTEON-ROOT-MIB;
bwm 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 BWM configuration, statistics and
information ."
REVISION "200409010000Z" -- 1 September, 2004
DESCRIPTION
"Added revision clause for SMIv2 compliance."
::= { aws-switch 6 }
bwmConfigs OBJECT IDENTIFIER ::= { bwm 1 }
bwmStats OBJECT IDENTIFIER ::= { bwm 2 }
bwmOpers OBJECT IDENTIFIER ::= { bwm 3 }
bwmGeneralConfig OBJECT IDENTIFIER ::= { bwmConfigs 1 }
bwmPolicyConfig OBJECT IDENTIFIER ::= { bwmConfigs 2 }
bwmContractConfig OBJECT IDENTIFIER ::= { bwmConfigs 3 }
bwmContTimePolicyConfig OBJECT IDENTIFIER ::= { bwmConfigs 4 }
bwmContractGroupConfig OBJECT IDENTIFIER ::= { bwmConfigs 5 }
bwmCurCfgGenState OBJECT-TYPE
SYNTAX INTEGER {
on(2),
off(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state of BWM on the switch."
::= { bwmGeneralConfig 1 }
bwmNewCfgGenState OBJECT-TYPE
SYNTAX INTEGER {
on(2),
off(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The state of BWM in the switch."
::= { bwmGeneralConfig 2 }
bwmCurCfgGenEnforcePolicy OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The state of BWM enforce policies. When disabled, no bandwidth limits
will be applied on the queues."
::= { bwmGeneralConfig 3 }
bwmNewCfgGenEnforcePolicy OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The state of BWM enforce policies. When disabled, no bandwidth limits
will be applied on the queues."
::= { bwmGeneralConfig 4 }
bwmCurCfgGenSmtpUser OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..127))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The SMTP user name tp whom the history statistics will be mailed."
::= { bwmGeneralConfig 5 }
bwmNewCfgGenSmtpUser OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..127))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The SMTP user name tp whom the history statistics will be mailed."
::= { bwmGeneralConfig 6 }
bwmCurCfgGenEmailFrequency OBJECT-TYPE
SYNTAX INTEGER (0..1440)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The frequency of BWM email in minutes."
::= { bwmGeneralConfig 7 }
bwmNewCfgGenEmailFrequency OBJECT-TYPE
SYNTAX INTEGER (0..1440)
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The frequency of BWM email in minutes."
::= { bwmGeneralConfig 8 }
bwmCurCfgGenIPUserLimit OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..4))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The number of entries in the BWM IP user table in 64k|128k|256k|512k format."
::= { bwmGeneralConfig 9 }
bwmNewCfgGenIPUserLimit OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..4))
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"The number of entries in the BWM IP user table in 64k|128k|256k|512k format."
::= { bwmGeneralConfig 10 }
bwmCurCfgGenEmail OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Specifies whether BWM history statistics are sent using email.
When disabled, the history statistics are sent using socket based
mechanism."
::= { bwmGeneralConfig 11 }
bwmNewCfgGenEmail OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"Specifies whether BWM history statistics are sent using email.
When disabled, the history statistics are sent using socket based
mechanism."
::= { bwmGeneralConfig 12 }
bwmCurCfgGenReport OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IP address of the reporting server."
::= { bwmGeneralConfig 13 }
bwmNewCfgGenReport OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-write
STATUS current
DESCRIPTION
"IP address of the reporting server."
::= { bwmGeneralConfig 14 }
bwmPolicyTableMaxEnt OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of rows in the BWM policy configuration table."
::= { bwmPolicyConfig 1 }
bwmCurCfgPolicyTable OBJECT-TYPE
SYNTAX SEQUENCE OF BwmCurCfgPolicyTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of BWM traffic policy configuration."
::= { bwmPolicyConfig 2 }
bwmCurCfgPolicyTableEntry OBJECT-TYPE
SYNTAX BwmCurCfgPolicyTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the BWM traffic policy configuration table."
INDEX { bwmCurCfgPolicyIndx }
::= { bwmCurCfgPolicyTable 1 }
BwmCurCfgPolicyTableEntry ::= SEQUENCE {
bwmCurCfgPolicyIndx Integer32,
bwmCurCfgPolicyTosIn INTEGER,
bwmCurCfgPolicyTosOut INTEGER,
bwmCurCfgPolicyHard DisplayString,
bwmCurCfgPolicySoft DisplayString,
bwmCurCfgPolicyResv DisplayString,
bwmCurCfgPolicyUserLimit DisplayString,
bwmCurCfgPolicyBuffer INTEGER
}
bwmCurCfgPolicyIndx OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index of the row in BWM traffic policy configurations table."
::= { bwmCurCfgPolicyTableEntry 1 }
bwmCurCfgPolicyTosIn OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The 'utos' value which overwrites the original TOS value if the
traffic for this contract is under the soft limit. With this option
set to the default value of '0' the switch will not overwrite the
TOS value."
::= { bwmCurCfgPolicyTableEntry 2 }
bwmCurCfgPolicyTosOut OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The 'otos' value which overwrites the original TOS value if the
traffic is over the soft limit. With this option set to the default
value of '0' the switch will not overwrite the TOS value."
::= { bwmCurCfgPolicyTableEntry 3 }
bwmCurCfgPolicyHard OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..5))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The hard bandwidth limit for this traffic policy. This is the highest
amount of bandwidth available to the policy."
::= { bwmCurCfgPolicyTableEntry 4 }
bwmCurCfgPolicySoft OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..5))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The soft bandwidth limit for this traffic policy."
::= { bwmCurCfgPolicyTableEntry 5 }
bwmCurCfgPolicyResv OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..5))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The reserve bandwidth limit for this traffic policy. This is the
amount of bandwidth always available to this policy."
::= { bwmCurCfgPolicyTableEntry 6 }
bwmCurCfgPolicyBuffer OBJECT-TYPE
SYNTAX INTEGER (8192..128000)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The buffer limit for the traffic policy."
::= { bwmCurCfgPolicyTableEntry 7 }
bwmCurCfgPolicyUserLimit OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..5))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The per user (IP address) bandwidth limit for this traffic policy.
This is the maximum amount of bandwidth available for each distinct
user (IP address) if the contract performs per user rate limiting."
::= { bwmCurCfgPolicyTableEntry 8 }
bwmNewCfgPolicyTable OBJECT-TYPE
SYNTAX SEQUENCE OF BwmNewCfgPolicyTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of BWM traffi policy configuration."
::= { bwmPolicyConfig 3 }
bwmNewCfgPolicyTableEntry OBJECT-TYPE
SYNTAX BwmNewCfgPolicyTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the BWM traffic policy configuration table."
INDEX { bwmNewCfgPolicyIndx }
::= { bwmNewCfgPolicyTable 1 }
BwmNewCfgPolicyTableEntry ::= SEQUENCE {
bwmNewCfgPolicyIndx Integer32,
bwmNewCfgPolicyTosIn INTEGER,
bwmNewCfgPolicyTosOut INTEGER,
bwmNewCfgPolicyHard DisplayString,
bwmNewCfgPolicySoft DisplayString,
bwmNewCfgPolicyResv DisplayString,
bwmNewCfgPolicyBuffer INTEGER,
bwmNewCfgPolicyUserLimit DisplayString,
bwmNewCfgPolicyDelete INTEGER
}
bwmNewCfgPolicyIndx OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index of the row in BWM traffic policy configurations table."
::= { bwmNewCfgPolicyTableEntry 1 }
bwmNewCfgPolicyTosIn OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The 'utos' value which overwrites the original TOS value if the
traffic for this contract is under the soft limit. With this option
set to the default value of '0' the switch will not overwrite the
TOS value."
::= { bwmNewCfgPolicyTableEntry 2 }
bwmNewCfgPolicyTosOut OBJECT-TYPE
SYNTAX INTEGER (0..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The 'otos' value which overwrites the original TOS value if the
traffic is over the soft limit. With this option set to the default
value of '0' the switch will not overwrite the TOS value."
::= { bwmNewCfgPolicyTableEntry 3 }
bwmNewCfgPolicyHard OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..5))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The hard bandwidth limit for this traffic policy. This is the highest
amount of bandwidth available to the policy."
::= { bwmNewCfgPolicyTableEntry 4 }
bwmNewCfgPolicySoft OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..5))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The soft bandwidth limit for this traffic policy."
::= { bwmNewCfgPolicyTableEntry 5 }
bwmNewCfgPolicyResv OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..5))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The reserve bandwidth limit for this traffic policy. This is the
amount of bandwidth always available to this policy."
::= { bwmNewCfgPolicyTableEntry 6 }
bwmNewCfgPolicyBuffer OBJECT-TYPE
SYNTAX INTEGER (8192..128000)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The buffer limit for the traffic policy."
::= { bwmNewCfgPolicyTableEntry 7 }
bwmNewCfgPolicyDelete 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."
::= { bwmNewCfgPolicyTableEntry 8 }
bwmNewCfgPolicyUserLimit OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..5))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The per user (IP address) bandwidth limit for this traffic policy.
This is the maximum amount of bandwidth available for each distinct
user (IP address) if the contract performs per user rate limiting."
::= { bwmNewCfgPolicyTableEntry 9 }
-- BWM Contract Config Table
bwmContractTableMaxEnt OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of rows in the BWM contract configuration table."
::= { bwmContractConfig 1 }
bwmCurCfgContractTable OBJECT-TYPE
SYNTAX SEQUENCE OF BwmContractCurCfgTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of BWM traffic contract configuration."
::= { bwmContractConfig 2 }
bwmCurCfgContractTableEntry OBJECT-TYPE
SYNTAX BwmContractCurCfgTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the BWM traffic contract configuration table."
INDEX { bwmCurCfgContractIndx }
::= { bwmCurCfgContractTable 1 }
BwmContractCurCfgTableEntry ::= SEQUENCE {
bwmCurCfgContractIndx Integer32,
bwmCurCfgContractName DisplayString,
bwmCurCfgContractState INTEGER,
bwmCurCfgContractPolicy Integer32,
bwmCurCfgContractPrec INTEGER,
bwmCurCfgContractUseTos INTEGER,
bwmCurCfgContractHistory INTEGER,
bwmCurCfgContractShaping INTEGER,
bwmCurCfgContractResizeTcp INTEGER,
bwmCurCfgContractIpLimit INTEGER,
bwmCurCfgContractIpType INTEGER,
bwmCurCfgContractMonitorMode INTEGER,
bwmCurCfgContractMaxSess INTEGER,
bwmCurCfgContractGroup Integer32
}
bwmCurCfgContractIndx OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index of the row in BWM traffic contract configurations table."
::= { bwmCurCfgContractTableEntry 1 }
bwmCurCfgContractName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..31))
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The traffic contract name."
::= { bwmCurCfgContractTableEntry 2 }
bwmCurCfgContractState OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"This is the state of the traffic contract."
::= { bwmCurCfgContractTableEntry 3 }
bwmCurCfgContractPolicy OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The policy number of the traffic contract"
::= { bwmCurCfgContractTableEntry 4 }
bwmCurCfgContractPrec OBJECT-TYPE
SYNTAX INTEGER (1..255)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The precedence value of the traffic contract"
::= { bwmCurCfgContractTableEntry 5 }
bwmCurCfgContractUseTos OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Enable/disable overwriting the IP Type Of Service (TOS) for this
traffic contract."
::= { bwmCurCfgContractTableEntry 6 }
bwmCurCfgContractHistory OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Enable/disable saving statistics for this contract on the TFTP
server."
::= { bwmCurCfgContractTableEntry 7 }
bwmCurCfgContractShaping OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Enable/disable traffic shaping for this contract."
::= { bwmCurCfgContractTableEntry 8 }
bwmCurCfgContractResizeTcp OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Enable/disable overwriting the TCP window size for this
traffic contract."
::= { bwmCurCfgContractTableEntry 9 }
bwmCurCfgContractIpLimit OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Enable/disable per user rate limiting based on IP address
for this traffic contract."
::= { bwmCurCfgContractTableEntry 10 }
bwmCurCfgContractIpType OBJECT-TYPE
SYNTAX INTEGER {
sip(1),
dip(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Per user rate limiting done based on source/destination
IP address."
::= { bwmCurCfgContractTableEntry 11 }
bwmCurCfgContractMonitorMode OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Enable/disable monitor-only mode for this contract."
::= { bwmCurCfgContractTableEntry 12 }
bwmCurCfgContractGroup OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The group number of the contract (zero if not part of a group)"
::= { bwmCurCfgContractTableEntry 13 }
bwmCurCfgContractMaxSess OBJECT-TYPE
SYNTAX INTEGER(0..65534)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Maximum number of sessions per user or contract."
::= { bwmCurCfgContractTableEntry 15 }
bwmNewCfgContractTable OBJECT-TYPE
SYNTAX SEQUENCE OF BwmContractNewCfgTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of BWM traffic contract configuration."
::= { bwmContractConfig 3 }
bwmNewCfgContractTableEntry OBJECT-TYPE
SYNTAX BwmContractNewCfgTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the BWM traffic contract configuration table."
INDEX { bwmNewCfgContractIndx }
::= { bwmNewCfgContractTable 1 }
BwmContractNewCfgTableEntry ::= SEQUENCE {
bwmNewCfgContractIndx Integer32,
bwmNewCfgContractName DisplayString,
bwmNewCfgContractState INTEGER,
bwmNewCfgContractPolicy Integer32,
bwmNewCfgContractDelete INTEGER,
bwmNewCfgContractPrec INTEGER,
bwmNewCfgContractUseTos INTEGER,
bwmNewCfgContractHistory INTEGER,
bwmNewCfgContractShaping INTEGER,
bwmNewCfgContractResizeTcp INTEGER,
bwmNewCfgContractIpLimit INTEGER,
bwmNewCfgContractIpType INTEGER,
bwmNewCfgContractMonitorMode INTEGER,
bwmNewCfgContractMaxSess INTEGER,
bwmNewCfgContractGroup Integer32
}
bwmNewCfgContractIndx OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The index of the row in BWM traffic contract configuration table."
::= { bwmNewCfgContractTableEntry 1 }
bwmNewCfgContractName OBJECT-TYPE
SYNTAX DisplayString (SIZE(0..31))
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The traffic contract name."
::= { bwmNewCfgContractTableEntry 2 }
bwmNewCfgContractState OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is the state of the traffic contract."
::= { bwmNewCfgContractTableEntry 3 }
bwmNewCfgContractPolicy OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"This is policy number of the traffic contract"
::= { bwmNewCfgContractTableEntry 4 }
bwmNewCfgContractDelete 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."
::= { bwmNewCfgContractTableEntry 5 }
bwmNewCfgContractPrec OBJECT-TYPE
SYNTAX INTEGER (1..255)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"The precedence value of the traffic contract"
::= { bwmNewCfgContractTableEntry 6 }
bwmNewCfgContractUseTos OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Enable/disable overwriting the IP Type Of Service (TOS) for this
traffic contract."
::= { bwmNewCfgContractTableEntry 7 }
bwmNewCfgContractHistory OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Enable/disable saving statistics for this contract on the TFTP
server."
::= { bwmNewCfgContractTableEntry 8 }
bwmNewCfgContractShaping OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Enable/disable traffic shaping for this contract."
::= { bwmNewCfgContractTableEntry 9 }
bwmNewCfgContractResizeTcp OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Enable/disable overwriting the TCP window size for this
traffic contract."
::= { bwmNewCfgContractTableEntry 10 }
bwmNewCfgContractIpLimit OBJECT-TYPE
SYNTAX INTEGER {
enabled(2),
disabled(3)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Enable/disable per user rate limiting based on IP address
for this traffic contract."
::= { bwmNewCfgContractTableEntry 11 }
bwmNewCfgContractIpType OBJECT-TYPE
SYNTAX INTEGER {
sip(1),
dip(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Per user rate limiting done based on source/destination
IP address."
::= { bwmNewCfgContractTableEntry 12 }
bwmNewCfgContractMonitorMode OBJECT-TYPE
SYNTAX INTEGER {
enabled(1),
disabled(2)
}
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Enable/disable monitor-only mode for this contract."
::= { bwmNewCfgContractTableEntry 13 }
bwmNewCfgContractGroup OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The group number of the contract (zero if not part of a group)"
::= { bwmNewCfgContractTableEntry 14 }
bwmNewCfgContractMaxSess OBJECT-TYPE
SYNTAX INTEGER(0..65534)
MAX-ACCESS read-create
STATUS current
DESCRIPTION
"Maximum number of sessions per user or contract."
::= { bwmNewCfgContractTableEntry 16 }
-- BWM Contract Time Policy Config Table
bwmContTimePolicyTableMaxEnt OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The maximum number of rows in the BWM contract configuration table."
::= { bwmContTimePolicyConfig 1 }
bwmCurCfgContTimePolicyTable OBJECT-TYPE
SYNTAX SEQUENCE OF BwmCurCfgContTimePolicyTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"The table of BWM traffic contract time policy configuration."
::= { bwmContTimePolicyConfig 2 }
bwmCurCfgContTimePolicyTableEntry OBJECT-TYPE
SYNTAX BwmCurCfgContTimePolicyTableEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"A row in the BWM contract time policy configuration table."
INDEX { bwmCurCfgContTimePolicyContIndx, bwmCurCfgContTimePolicyIndx }
::= { bwmCurCfgContTimePolicyTable 1 }
BwmCurCfgContTimePolicyTableEntry ::= SEQUENCE {
bwmCurCfgContTimePolicyContIndx Integer32,
bwmCurCfgContTimePolicyIndx Integer32,
bwmCurCfgContTimePolicyDay INTEGER,
bwmCurCfgContTimePolicyFrom INTEGER,
bwmCurCfgContTimePolicyTo INTEGER,
bwmCurCfgContTimePolicyPol Integer32,
bwmCurCfgContTimePolicyState INTEGER
}
bwmCurCfgContTimePolicyContIndx OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The BWM contract number of the contract time policy."
::= { bwmCurCfgContTimePolicyTableEntry 1 }
bwmCurCfgContTimePolicyIndx OBJECT-TYPE
SYNTAX Integer32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"The BWM time policy number of the contract time policy."
::= { bwmCurCfgContTimePolicyTableEntry 2 }
bwmCurCfgContTimePolicyDay OBJECT-TYPE
SYNTAX INTEGER {
sunday(1),
monday(2),
tuesday(3),
wednesday(4),
thursday(5),
friday(6),
saturday(7),
weekday(8),
weekend(9),
everyday(10)