summaryrefslogtreecommitdiff
path: root/MIBS/junose/Juniper-DOS-PROTECTION-MIB
blob: a6064efe3194f6438bdc35c992c10e8bd63ffc2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
-- *****************************************************************************
-- Juniper-DOS-PROTECTION-MIB
--
-- Juniper Networks Enterprise MIB
--   DOS Protection MIB 
--
-- Copyright (c) 2005-2006 Juniper Networks, Inc.
-- Copyright (c) 2008 Juniper Networks, Inc.
-- Copyright (c) 2009 Juniper Networks, Inc.
--   All Rights Reserved.
-- *****************************************************************************

Juniper-DOS-PROTECTION-MIB  DEFINITIONS ::= BEGIN

IMPORTS
    MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE,  Counter32,  
		Unsigned32
        FROM SNMPv2-SMI
	JuniEnable
		FROM Juniper-TC
    TEXTUAL-CONVENTION, TruthValue, DisplayString, RowStatus
        FROM SNMPv2-TC
    MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP
        FROM SNMPv2-CONF
    InterfaceIndex
        FROM IF-MIB
    juniMibs
        FROM Juniper-MIBs;

juniDosProtectionMIB  MODULE-IDENTITY
    LAST-UPDATED "200805060000Z"  -- 06-May-2008 00:00
    ORGANIZATION "Juniper Networks, Inc."
    CONTACT-INFO
        "       Juniper Networks, Inc.
        Postal: 10 Technology Park Drive
                Westford, MA  01886-3146
                USA
        Tel:    +1 978 589 5800
        Email:  mib@Juniper.net"
    DESCRIPTION 
		"The DOS Protection MIB for the Juniper E-Series product family. 
		This MIB contains managed objects for the DOS Protection 
		application. Management objects are provided to control and
		monitor the DOS protection application."
    -- Revision History
	REVISION   "200805060000Z"  -- 06-May-2008 00:00   JUNOSe 8.1
    DESCRIPTION
        "Updated JuniDosProtectionProtocolType TEXTUAL-CONVENTION "
	REVISION   "200607010000Z"  -- 01-Jul-2006 00:00   JUNOSe 8.1
    DESCRIPTION
        "Added Dos-Protection-Group support"
    REVISION    "200608180400Z"  -- 18-Aug-2006 00:00 AM EDT - JUNOSe 8.0
    DESCRIPTION
        "Added MPLS Lsp Ping support."
    REVISION    "200608171926Z"  -- 17-Aug-2006 03:26 PM EDT - JUNOSe 7.3
    DESCRIPTION
        "Added new protocol type, atmDynamicIfPppData, to manage in 
	 JuniDosProtectionProtocolType."
    REVISION    "200601010500Z"  -- 01-Jan-2006 00:00 AM EST - JUNOSe 7.3
    DESCRIPTION
        "Initial version of this MIB module."
    ::= { juniMibs 80 }                  

-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Textual conventions
-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

JuniDosProtectionProtocolType ::= TEXTUAL-CONVENTION
	STATUS      current
    DESCRIPTION 
		"The control protocols that are supported by the DOS protection 
		application."

    SYNTAX	INTEGER {
        pppEchoRequest(0),
        ppEchoReply(1),
        pppEchoReplyFast(2),
        pppControl(3),
        atmControl(4),
        atmOam(5),
        atmDynamicIf(6),
        atmInverseArp(7),
        frameRelayControl(8),
        frameRelayArp(9),
        pppoeControl(10),
        pppoePppConfig(11),
        ethernetArpMiss(12),
        ethernetArp(13),
        ethernetFcBasedArp(14),
        ethernetLacp(15),
        ethernetOam(16),
        ethernetDynamicIf(17),
        ethernetPppTerminate(18),
        slepSlarp(19),
        slepSlarpReplyFast(20),
        mplsTtlOnReceive(21),
        mplsTtlOnTransmit(22),
        mplsMtuExceeded(23),
        itmL2tpControl(24),
        flisInPayload(25),
        flisInPayloadUpdateTable(26),
        dhcpExternal(27),
        ipOsi(28),
        ipTtlExpired(29),
        ipOptionsOther(30),
        ipOptionsRouterAlert(31),
        ipMulticastBroadcastOther(32),
        ipMulticastDhcpSc(33),
        ipMulticastControlSc(34),
        ipMulticastControlIc(35),
        ipMulticastVrrp(36),
        ipMulticastCacheMiss(37),
        ipMulticastCacheMissAutoReply(38),
        ipMulticastWrongIf(39),
        ipLocalDhcpSc(40),
        ipLocalDhcpIc(41),
        ipLocalIcmpEcho(42),
        ipLocalIcmpOther(43),
        ipLocalLDP(44),
        ipLocalBgp(45),
        ipLocalOspf(46),
        ipLocalRsvp(47),
        ipLocalPim(48),
        ipLocalCops(49),
        ipLocalL2tpControlSc(50),
        ipLocalL2tpControlIc(51),
        ipLocalOther(52),
        ipLocalDemuxMiss(53),
        ipRouteToSrpEthernet(54),
        ipRouteNoRoute(55),
        ipNormalPathMtu(56),
        ipNeighborDiscovery(57),
        ipNeighborDiscoveryMiss(58),
        ipSearchError(59),
        ipMld(60),
        ipLocalPimAssert(61),
        ipLocalBfd(62),
        ipFastBfd(63),
        ipLocalFastBfd(64),
        ipIke(65),
        ipReassembly(66),
        ipLocalIcmpFragment(67),
        ipLocalFragment(68),
        ipAppClassifierHttpRedirect(69),
        ipMulticastDhcpIc(70),
        dhcpTesterIc(71),
        atmDynamicIfPppData(72),
        ipLocalLspPing(73) }


JuniDosProtectionPriorityType ::= TEXTUAL-CONVENTION
	STATUS      current
    DESCRIPTION 
		"The control priorities that are supported by the DOS protection 
		application."

    SYNTAX	INTEGER {
		hiGreenFcIc(0),
		hiYellowFcIc(1),
		loGreenFcIc(2),
		loYellowFcIc(3),
        hiGreenFcSc(4),
		hiYellowFcSc(5),
		loGreenFcSc(6),
		loYellowFcSc(7) }

JuniDosProtectionProtocolState ::= TEXTUAL-CONVENTION
	STATUS      current
    DESCRIPTION 
		"The current state of a protocol."

    SYNTAX	INTEGER {
		ok(1),
		inTrouble(2) }

JuniDosProtectionScfdsTableOverflowState ::= TEXTUAL-CONVENTION
	STATUS      current
    DESCRIPTION 
		"The current state of the suspicious flow table."

	SYNTAX INTEGER {
		 notOverflowingOrGrouping(1),
		 grouping(2),
		 overflowing(3) }

JuniDosProtectionProtocolPriorityType ::= TEXTUAL-CONVENTION
	STATUS      current
    DESCRIPTION 
		"The control priorities that are supported by the DOS protection 
		application for each control processor"

    SYNTAX	INTEGER {
		hiGreen(0),
		hiYellow(1),
		loGreen(2),
		loYellow(3),
		dataPath(4) }

JuniDosProtectionProtocolCannedType ::= TEXTUAL-CONVENTION
	STATUS 		current
	DESCRIPTION
		"The available canned dos-protection-groups which can be used
		to set defaults into a user specified group."
	
	SYNTAX INTEGER {
		default(0),
        enetAccess(1),
        atmAccess(2),
        frame(3),
        uplink(4)
	}

JuniDosProtectionLayerId ::= TEXTUAL-CONVENTION
	STATUS 	current
	DESCRIPTION 
		"The available interface types for which a profile entry
		may be defined."
	
	SYNTAX INTEGER {
		ip(0),
		ppp(1),
		ethernet(6),
		atm1483(11),
		pppoe(17),
		bridge1483(19),
		vlan(35),
		ipv6(50)
	}
	
JuniDosProtectionControlProcessorDestination ::= TEXTUAL-CONVENTION
	STATUS 	current
	DESCRIPTION 
		"The available control processors to which a control
		protocol may be directed."
	
	SYNTAX INTEGER {
	    ic(0),
	    sc(1),
	    dataPath(2)
	}

-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Managed objects
-- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

juniDosProtectionObjects    OBJECT IDENTIFIER ::= { juniDosProtectionMIB 1 }
juniDosProtectionScfdsGroup OBJECT IDENTIFIER ::= { juniDosProtectionObjects 1 }
juniDosProtectionDpgGroup   OBJECT IDENTIFIER ::= { juniDosProtectionObjects 2 }

--
-- scalars
--
juniDosProtectionScfdsGlobalState	OBJECT-TYPE
	SYNTAX		JuniEnable
	MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION 
		"Controls whether the suspicious control flow detection system is 
		enabled or disabled.  Setting the value to enable(1) enables the 
		suspicious control flow detection system. Setting the value to 
		disable(0) disables the system.  
		
		When read this object returns the current state of the system."		
    DEFVAL { enable }

	::= { juniDosProtectionScfdsGroup 1 }

juniDosProtectionScfdsGlobalGrouping	OBJECT-TYPE
	SYNTAX		JuniEnable
	MAX-ACCESS	read-write
	STATUS 		current
	DESCRIPTION 
		"When set to enable(1), the suspicious flow control system will 
		group flows when resources are unavailable to treat each 
		suspicious flow individually.  When set to disable(0), this feature 
		will be inhibited and the suspicious control flow system may not 
		recognize all suspicious flows during a resource shortage.

		When read this object will return the current state of the object."
	DEFVAL { enable }

	::= { juniDosProtectionScfdsGroup 2 }

juniDosProtectionScfdsGlobalClearAll OBJECT-TYPE
    SYNTAX      INTEGER {
					ok(0),
                    clear(1) }
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "When set to clear(1), the suspicious control flow detection system
        is cleared.  When set to ok(0), there is no effect and the 
		suspicious control flow detection system is unchanged.
		
		By clearing the suspicious control flow detection system all flows 
		are removed from the suspicious flow table.

        When read, always returns a value of ok(0)."

	::= { juniDosProtectionScfdsGroup 3 }

juniDosProtectionScfdsGlobalDiscontinuityTime OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "The sysUpTime at which the counters were last re-initialized on 
		any slot due to a restart."

	::= { juniDosProtectionScfdsGroup 4 }

juniDosProtectionScfdsGlobalTableOverflowState OBJECT-TYPE
	SYNTAX		JuniDosProtectionScfdsTableOverflowState
	MAX-ACCESS	read-only
	STATUS		current
	DESCRIPTION 
		"Indicates whether any module in the system is in under a resource 
		shortage situation. A value of notOverflowingOrGrouping(1) indicates
		that there is no resource shortage on any module. A value of 
		grouping(2) or overflowing(3) indicates that at least one module
		is suffering from a resource shortage, and has acted according to the
		state of the juniDosProtectionScfdsGlobalGrouping object."

	::= { juniDosProtectionScfdsGroup 5 } 

--
-- global counters
--

juniDosProtectionScfdsGlobalCurrentSuspiciousFlows OBJECT-TYPE
	SYNTAX		Counter32
	MAX-ACCESS	read-only
	STATUS		current
	DESCRIPTION 
		"The number of flows currently marked as suspicious."

	::= { juniDosProtectionScfdsGroup 6 } 

juniDosProtectionScfdsGlobalNumberSuspiciousFlows	OBJECT-TYPE
	SYNTAX		Counter32
	MAX-ACCESS	read-only
	STATUS		current
	DESCRIPTION 
		"The number of suspicious flows seen since system restart."

	::= { juniDosProtectionScfdsGroup 7 } 

juniDosProtectionScfdsGlobalCurrentSuspiciousFlowGroups OBJECT-TYPE
	SYNTAX		Counter32
	MAX-ACCESS	read-only
	STATUS		current
	DESCRIPTION 
		"The number of flow groups currently marked as suspicious."

	::= { juniDosProtectionScfdsGroup 8 } 

juniDosProtectionScfdsGlobalNumberSuspiciousFlowGroups OBJECT-TYPE
	SYNTAX		Counter32
	MAX-ACCESS	read-only
	STATUS		current
	DESCRIPTION 
		"The number of suspicius flow groups seen since system restart."

	::= { juniDosProtectionScfdsGroup 9 } 


juniDosProtectionScfdsGlobalCurrentFalseNegativeFlows OBJECT-TYPE
	SYNTAX		Counter32
	MAX-ACCESS	read-only
	STATUS		current
	DESCRIPTION 
		"The number of flows currently falsely considered suspicious.
		A false negative indicates that the flow was seen as possibly
		suspicious, but did not pass all the tests to be considered
		suspicious. This is a normal condition of the system."

	::= { juniDosProtectionScfdsGroup 10 } 

juniDosProtectionScfdsGlobalNumberFalseNegativeFlows OBJECT-TYPE
	SYNTAX		Counter32
	MAX-ACCESS	read-only
	STATUS		current
	DESCRIPTION 
		"The number of flows falsely considered possibly suspicious 
		seen since system restart."

	::= { juniDosProtectionScfdsGroup 11 } 

juniDosProtectionScfdsGlobalNumberTableOverflows OBJECT-TYPE
	SYNTAX		Counter32
	MAX-ACCESS	read-only
	STATUS		current
	DESCRIPTION 
		"The total number of times the system had a table overflow on any slot."

	::= { juniDosProtectionScfdsGroup 12 } 


--
-- protocol table 
--

juniDosProtectionScfdsProtocolTable OBJECT-TYPE
	SYNTAX		SEQUENCE OF JuniDosProtectionScfdsProtocolEntry
	MAX-ACCESS 	not-accessible
	STATUS		current
	DESCRIPTION 
		"The information for the DOS protection control protocols."

	::= { juniDosProtectionScfdsGroup 13 } 

juniDosProtectionScfdsProtocolEntry OBJECT-TYPE
	SYNTAX		JuniDosProtectionScfdsProtocolEntry
	MAX-ACCESS 	not-accessible
	STATUS		current
	DESCRIPTION
		"The information for an individual DOS protection control
		protocol."

	INDEX	{ juniDosProtectionScfdsProtocolIndex }

	::= { juniDosProtectionScfdsProtocolTable 1 } 
	
JuniDosProtectionScfdsProtocolEntry ::= SEQUENCE {
	juniDosProtectionScfdsProtocolIndex 		 JuniDosProtectionProtocolType,
	juniDosProtectionScfdsProtocolThreshold	 Unsigned32,
	juniDosProtectionScfdsProtocolLowThreshold Unsigned32,
	juniDosProtectionScfdsProtocolBackoffTime  Unsigned32,
	juniDosProtectionScfdsProtocolState        JuniDosProtectionProtocolState,
	juniDosProtectionScfdsProtocolTransitions  Counter32}

juniDosProtectionScfdsProtocolIndex OBJECT-TYPE
    SYNTAX      JuniDosProtectionProtocolType
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The control protocol value for this entry."

    ::= { juniDosProtectionScfdsProtocolEntry 1 }

juniDosProtectionScfdsProtocolThreshold OBJECT-TYPE
	SYNTAX		Unsigned32(0|3..65535)
	MAX-ACCESS	read-write
	STATUS		current
	DESCRIPTION 
		"The threshold in packets per second for this control protocol.
		This is the rate at which a flow for this protocol is considered
		suspicious. Setting this object to zero will have the affect of
		excusing this protocol from suspicious control flow detection."

    ::= { juniDosProtectionScfdsProtocolEntry 2 }

juniDosProtectionScfdsProtocolLowThreshold OBJECT-TYPE
	SYNTAX		Unsigned32(0|1..32767)
	MAX-ACCESS	read-write
	STATUS		current
	DESCRIPTION 
		"The low threshold in packets per second for this control protocol .
		This is the rate at which a flow must fall below to in order return 
		to the normal state, after having been marked suspicious. A
		low threshold of zero disables this functionality."

    ::= { juniDosProtectionScfdsProtocolEntry 3 }

juniDosProtectionScfdsProtocolBackoffTime	OBJECT-TYPE
	SYNTAX      Unsigned32(0|10..1000)
	MAX-ACCESS	read-write
	STATUS		current
	DESCRIPTION 
		"The backoff time in seconds. A flow which is considered suspicious will
		be returned to normal after this amount of time regardless of the current
		rate of the flow.  A backoff time of 0 disables this functionality."
	DEFVAL  { 300 } 

    ::= { juniDosProtectionScfdsProtocolEntry 4 }

juniDosProtectionScfdsProtocolState OBJECT-TYPE
	SYNTAX		JuniDosProtectionProtocolState
	MAX-ACCESS	read-only
	STATUS		current
	DESCRIPTION 
		"The current state of the protocol.  This object will return inTrouble(2)
		if any module in the system has reported that the protocol is currently
		being watched for suspicious flows. If no module reports that this protocol
		is being watched this object will return ok(1). 

		A protocol is in trouble on a module when the sum of the rate for all 
		flows for the protocol is over the limit for that protocol."

    ::= { juniDosProtectionScfdsProtocolEntry 5 }

juniDosProtectionScfdsProtocolTransitions OBJECT-TYPE
	SYNTAX		Counter32
	MAX-ACCESS	read-only
	STATUS		current
	DESCRIPTION 
		"The number of transitions to 'inTrouble' that this control protocol 
		has made."

    ::= { juniDosProtectionScfdsProtocolEntry 6 }

--
-- dos protection groups
-- 

juniDosProtectionDpgTable OBJECT-TYPE
	SYNTAX		SEQUENCE OF JuniDosProtectionDpgEntry
	MAX-ACCESS 	not-accessible
	STATUS		current
	DESCRIPTION 
		"The information for a dos-protection-group. A 
		dos-protection-group defines a set of parameters that
		manage the handling of control protocols on the
		router."

	::= { juniDosProtectionDpgGroup 1 } 

juniDosProtectionDpgEntry OBJECT-TYPE
	SYNTAX		JuniDosProtectionDpgEntry
	MAX-ACCESS 	not-accessible
	STATUS		current
	DESCRIPTION
		"The information for an individual dos-protection-group."

	INDEX	{ juniDosProtectionDpgIndex }

	::= { juniDosProtectionDpgTable 1 } 

JuniDosProtectionDpgEntry ::= SEQUENCE {
	juniDosProtectionDpgIndex			 		 DisplayString,
	juniDosProtectionDpgRowStatus              RowStatus,
	juniDosProtectionDpgCanned                 
						JuniDosProtectionProtocolCannedType,
	juniDosProtectionDpgRevert                 INTEGER,
	juniDosProtectionDpgModified				 TruthValue,
	juniDosProtectionDpgReferences			 INTEGER}

juniDosProtectionDpgIndex OBJECT-TYPE
    SYNTAX      DisplayString (SIZE(1..32))
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The dos-protection-group-name for this entry."

    ::= { juniDosProtectionDpgEntry 1 }

juniDosProtectionDpgRowStatus OBJECT-TYPE
    SYNTAX      RowStatus
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
		"Controls creation/deletion of entries in this table.  
		Only the values 'createAndGo' and 'destroy' may be SET. 
		When read this always returns a value of active"

    ::= { juniDosProtectionDpgEntry 2 }

juniDosProtectionDpgCanned OBJECT-TYPE
    SYNTAX      JuniDosProtectionProtocolCannedType
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Sets the default values based for the dos-protection-group 
		based on the values from the canned group. Can only be used
		to set a different group. Using the current group will result
		in no changes to the dos-protection-group."
    DEFVAL { default }	

    ::= { juniDosProtectionDpgEntry 3 }

juniDosProtectionDpgRevert OBJECT-TYPE
    SYNTAX      INTEGER {
                    no-revert(0),
                    revert(1) }
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Revert this dos-protection-group to the canned values of the
		associated canned group by setting this object to
		revert(1). Reading this object will always return a value 
		of no-revert(1)"

    ::= { juniDosProtectionDpgEntry 4 }

juniDosProtectionDpgModified OBJECT-TYPE
    SYNTAX      TruthValue
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
		"When true is returned, some protocol or priority associated 
		with this dos-protection-group, has been modified from the 
		canned values associated with the group. When false is returned
		all settings associated with this dos-protection-group are 
		at the defaults for the associated canned group."

    ::= { juniDosProtectionDpgEntry 5 }

juniDosProtectionDpgReferences OBJECT-TYPE
    SYNTAX      INTEGER
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
		"The number of references for this dos-protection-group. 
		References include the number of interfaces currently 
		associated with the group, as well as the number of profile
		references."

    ::= { juniDosProtectionDpgEntry 6 }
--
-- dpg protocol information
--

juniDosProtectionDpgProtocolTable OBJECT-TYPE
	SYNTAX		SEQUENCE OF JuniDosProtectionDpgProtocolEntry
	MAX-ACCESS 	not-accessible
	STATUS		current
	DESCRIPTION 
		"The information for the dos-protection-group control protocol 
		table."

	::= { juniDosProtectionDpgGroup 2 } 

juniDosProtectionDpgProtocolEntry OBJECT-TYPE
	SYNTAX		JuniDosProtectionDpgProtocolEntry
	MAX-ACCESS 	not-accessible
	STATUS		current
	DESCRIPTION
		"The information for an individual dos-protection-group control
		protocol entry."

	INDEX	{ juniDosProtectionDpgProtocolName,
	          juniDosProtectionDpgProtocolProtocol }

	::= { juniDosProtectionDpgProtocolTable 1 } 
	
JuniDosProtectionDpgProtocolEntry ::= SEQUENCE {
	juniDosProtectionDpgProtocolName			  DisplayString,
	juniDosProtectionDpgProtocolProtocol	      JuniDosProtectionProtocolType,
	juniDosProtectionDpgProtocolBurst			  Unsigned32,
	juniDosProtectionDpgProtocolDropProbability Unsigned32,
	juniDosProtectionDpgProtocolRate            Unsigned32,
	juniDosProtectionDpgProtocolSkipPriorityRateLimiter
											  JuniEnable,
	juniDosProtectionDpgProtocolWeight          Unsigned32,
	juniDosProtectionDpgProtocolPriority  
	                JuniDosProtectionProtocolPriorityType,
	juniDosProtectionDpgProtocolModified       TruthValue,
	juniDosProtectionDpgProtocolDestination    
					JuniDosProtectionControlProcessorDestination}


juniDosProtectionDpgProtocolName OBJECT-TYPE
    SYNTAX      DisplayString (SIZE(1..32))
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The dos-protection-group name for this entry."

    ::= { juniDosProtectionDpgProtocolEntry 1 }	

juniDosProtectionDpgProtocolProtocol OBJECT-TYPE
    SYNTAX      JuniDosProtectionProtocolType
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The dos-protection-group control protocol for this entry."

    ::= { juniDosProtectionDpgProtocolEntry 2 }	

juniDosProtectionDpgProtocolBurst OBJECT-TYPE
	SYNTAX		Unsigned32(0|32..65535)
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "The burst in packets for this control protocol in this 
		dos-protection-group."

    ::= { juniDosProtectionDpgProtocolEntry 3 }	

juniDosProtectionDpgProtocolDropProbability OBJECT-TYPE
	SYNTAX		Unsigned32(10..100)
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "The drop probability for suspect packets for this
		control protocol in this dos-protection-group.  This is
		probability that a packet belonging to a suspicious
		flow will be dropped. A drop probability of less than
		100 indicates that the user wishes to have some 
		packets from a suspect flow reach the control
		processor."

    ::= { juniDosProtectionDpgProtocolEntry 4 }	

juniDosProtectionDpgProtocolRate OBJECT-TYPE
	SYNTAX		Unsigned32(0|64..65535)
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "The rate in packets per second for this control protocol in 
		this dos-protection-group."

    ::= { juniDosProtectionDpgProtocolEntry 5 }

juniDosProtectionDpgProtocolSkipPriorityRateLimiter OBJECT-TYPE
    SYNTAX      JuniEnable
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "When set to enable, this control protocol in this 
		dos-protection-group will skip the priority rate limiter. 
		When set to disable, the protocol will not skip the priority 
		rate-limiter."

    ::= { juniDosProtectionDpgProtocolEntry 6 }

juniDosProtectionDpgProtocolWeight OBJECT-TYPE
	SYNTAX		Unsigned32(100..500)
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "The weight of this control protocol against others of the
		same priority in this dos-protection-group. The weight
		is used to determine the minimum rate and burst 
		for the protocol within the priority group."
    DEFVAL { 100 } 

    ::= { juniDosProtectionDpgProtocolEntry 7 }	

juniDosProtectionDpgProtocolPriority  OBJECT-TYPE
	SYNTAX 		JuniDosProtectionProtocolPriorityType   
	MAX-ACCESS  read-write
	STATUS		current
	DESCRIPTION 
		"The priority for the control protocol. Packets of this control
		protocol on interfaces referencing this dos-protection-group will
		be categorized into the priority indicated."
	
    ::= { juniDosProtectionDpgProtocolEntry 8 }

juniDosProtectionDpgProtocolModified  OBJECT-TYPE
	SYNTAX 		TruthValue
	MAX-ACCESS  read-only
	STATUS		current
	DESCRIPTION 
		"When true is returned, the values for this control protocol
		in this dos-protection-group have been modified from the 
		canned values associated with the group. When false is returned
		all settings associated with this control protocol in this
		dos-protection-group are at the defaults for the associated 	
		canned group."
	
    ::= { juniDosProtectionDpgProtocolEntry 9 }

juniDosProtectionDpgProtocolDestination    OBJECT-TYPE
	SYNTAX 		JuniDosProtectionControlProcessorDestination
	MAX-ACCESS  read-only
	STATUS		current
	DESCRIPTION 
		"The destination processor for packets of this control protocol."
	
    ::= { juniDosProtectionDpgProtocolEntry 10 }

--
-- dpg priority information
--

juniDosProtectionDpgPriorityTable OBJECT-TYPE
	SYNTAX		SEQUENCE OF JuniDosProtectionDpgPriorityEntry
	MAX-ACCESS 	not-accessible
	STATUS		current
	DESCRIPTION 
		"The information for a dos-protection-group priority table."

	::= { juniDosProtectionDpgGroup 3 } 

juniDosProtectionDpgPriorityEntry OBJECT-TYPE
	SYNTAX		JuniDosProtectionDpgPriorityEntry
	MAX-ACCESS 	not-accessible
	STATUS		current
	DESCRIPTION
		"The information for an individual dos-protection-group priority 
		table"

	INDEX	{ juniDosProtectionDpgPriorityName,
	          juniDosProtectionDpgPriorityPriority }

	::= { juniDosProtectionDpgPriorityTable 1 } 
	
JuniDosProtectionDpgPriorityEntry ::= SEQUENCE {
	juniDosProtectionDpgPriorityName			  DisplayString,
	juniDosProtectionDpgPriorityPriority	      JuniDosProtectionPriorityType,
	juniDosProtectionDpgPriorityBurst			  Unsigned32,
	juniDosProtectionDpgPriorityOverSubscriptionFactor
	                                          Unsigned32,
	juniDosProtectionDpgPriorityRate            Unsigned32,
	juniDosProtectionDpgPriorityModified        TruthValue}


juniDosProtectionDpgPriorityName OBJECT-TYPE
    SYNTAX      DisplayString (SIZE(1..32))
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The dos-proteciton-group name for this entry."

    ::= { juniDosProtectionDpgPriorityEntry 1 }	

juniDosProtectionDpgPriorityPriority OBJECT-TYPE
    SYNTAX      JuniDosProtectionPriorityType
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The priority for this entry."

    ::= { juniDosProtectionDpgPriorityEntry 2 }	

juniDosProtectionDpgPriorityBurst OBJECT-TYPE
	SYNTAX		Unsigned32(0|32..65535)
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "The burst in packets for this priority in this 
		dos-protection-group."

    ::= { juniDosProtectionDpgPriorityEntry 3 }	

juniDosProtectionDpgPriorityOverSubscriptionFactor OBJECT-TYPE
	SYNTAX		Unsigned32(100..1000)
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "The over-subscription factor for this priority in this 
		dos-protection-group. This is used when calculating 
		the minimum rates for control protocols that use this priority."

    ::= { juniDosProtectionDpgPriorityEntry 4 }	

juniDosProtectionDpgPriorityRate OBJECT-TYPE
	SYNTAX		Unsigned32(0|64..65535)
    MAX-ACCESS  read-write
    STATUS      current
    DESCRIPTION
        "The rate in packets per second for this priority in 
		this dos-protection-group."

    ::= { juniDosProtectionDpgPriorityEntry 5 }

juniDosProtectionDpgPriorityModified OBJECT-TYPE
	SYNTAX		TruthValue
    MAX-ACCESS  read-only
    STATUS      current
    DESCRIPTION
        "When true is returned, the values for this priority
		in this dos-protection-group have been modified from the 
		canned values associated with the group. When false is returned
		all settings associated with this priority in this
		dos-protection-group are at the defaults for the associated 	
		canned group."

    ::= { juniDosProtectionDpgPriorityEntry 6 }


--
--  attachment table
--

juniDosProtectionDpgAttachTable OBJECT-TYPE
	SYNTAX		SEQUENCE OF JuniDosProtectionDpgAttachEntry
	MAX-ACCESS 	not-accessible
	STATUS		current
	DESCRIPTION 
		"The information for the DOS protection attachment table."

	::= { juniDosProtectionDpgGroup 4 } 

juniDosProtectionDpgAttachEntry OBJECT-TYPE
	SYNTAX		JuniDosProtectionDpgAttachEntry
	MAX-ACCESS 	not-accessible
	STATUS		current
	DESCRIPTION
		"The information for an individual DOS protection attachment entry."

	INDEX	{ juniDosProtectionDpgAttachIndex }

	::= { juniDosProtectionDpgAttachTable 1 } 
	
JuniDosProtectionDpgAttachEntry ::= SEQUENCE {
	juniDosProtectionDpgAttachIndex			  InterfaceIndex,
	juniDosProtectionDpgAttachRowStatus         RowStatus,
	juniDosProtectionDpgAttachName              DisplayString,
	juniDosProtectionDpgAttachConfigured        TruthValue}

juniDosProtectionDpgAttachIndex OBJECT-TYPE
    SYNTAX      InterfaceIndex 
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The interface index for the attachment."

    ::= { juniDosProtectionDpgAttachEntry 1 }	

juniDosProtectionDpgAttachRowStatus OBJECT-TYPE
    SYNTAX      RowStatus
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
		"Controls creation/deletion of entries in this table.  Only the 
		values 'createAndGo' and 'destroy' may be SET. 
		When read this always returns a value of active"

    ::= { juniDosProtectionDpgAttachEntry 2 }	

juniDosProtectionDpgAttachName OBJECT-TYPE
    SYNTAX      DisplayString (SIZE(1..32))
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The dos-protection-group for this entry. This is the 
		dos-protection-group that is use by the interface."

    ::= { juniDosProtectionDpgAttachEntry 3 }	

juniDosProtectionDpgAttachConfigured         OBJECT-TYPE
	SYNTAX		TruthValue
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "Indicates the configured status of the attachment. This object
		returns true when the attachment was statically
		configured, and returns false when the attachment
		was made via a profile attachment."

    ::= { juniDosProtectionDpgAttachEntry 4 }	
--
--  profile table
--
juniDosProtectionDpgProfileTable OBJECT-TYPE
	SYNTAX		SEQUENCE OF JuniDosProtectionDpgProfileEntry
	MAX-ACCESS 	not-accessible
	STATUS		current
	DESCRIPTION 
		"The information for the DOS protection profile table."

	::= { juniDosProtectionDpgGroup 5 } 

juniDosProtectionDpgProfileEntry OBJECT-TYPE
	SYNTAX		JuniDosProtectionDpgProfileEntry
	MAX-ACCESS 	not-accessible
	STATUS		current
	DESCRIPTION
		"The information for an individual DOS protection profile  entry."

	INDEX	{ juniDosProtectionDpgProfileProfileId,
			  juniDosProtectionDpgProfileLayerId}

	::= { juniDosProtectionDpgProfileTable 1 } 
	

JuniDosProtectionDpgProfileEntry ::= SEQUENCE {
	juniDosProtectionDpgProfileProfileId		   Unsigned32,
	juniDosProtectionDpgProfileLayerId		   JuniDosProtectionLayerId,
	juniDosProtectionDpgProfileRowStatus         RowStatus,
	juniDosProtectionDpgProfileName              DisplayString }

juniDosProtectionDpgProfileProfileId OBJECT-TYPE
    SYNTAX      Unsigned32
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The profile ID for the profile entry. The profile ID 
		identifies which profile is being accessed. A value for this
        identifier is determined by locating or creating a profile name 
		in the juniProfileNameTable"

    ::= { juniDosProtectionDpgProfileEntry 1 }

juniDosProtectionDpgProfileLayerId OBJECT-TYPE
    SYNTAX      JuniDosProtectionLayerId
    MAX-ACCESS  not-accessible
    STATUS      current
    DESCRIPTION
        "The layer ID for the profile entry. The layer ID indicates
		which interface type is being accessed."

    ::= { juniDosProtectionDpgProfileEntry 2 }

juniDosProtectionDpgProfileRowStatus OBJECT-TYPE
    SYNTAX      RowStatus
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
		"Controls creation/deletion of entries in this table.  Only the 
		values 'createAndGo' and 'destroy' may be SET. When read this 
		always returns a value of active"

    ::= { juniDosProtectionDpgProfileEntry 3 }	

juniDosProtectionDpgProfileName OBJECT-TYPE
    SYNTAX      DisplayString (SIZE(1..32))
    MAX-ACCESS  read-create
    STATUS      current
    DESCRIPTION
        "The dos-protection-group that is associated with this 
		profile/interface-type. This profile will be attached 
		when dynamic instances of the interface type are
		created that reference the specific profile."

    ::= { juniDosProtectionDpgProfileEntry 4 }	


-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Notifications
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

--juniDosProtectionTraps OBJECT IDENTIFIER ::= { juniDosProtectionMIB 0 }
--juniDosProtectionTrapControl OBJECT IDENTIFIER ::= { juniDosProtectionMIB 2 }
--juniDosProtectionScfdsTraps OBJECT IDENTIFIER ::= { juniDosProtectionTraps 0 }





-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
-- Conformance information
-- +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

juniDosProtectionMIBConformance  OBJECT IDENTIFIER ::= { juniDosProtectionMIB 4 }
juniDosProtectionMIBCompliances  OBJECT IDENTIFIER ::= { juniDosProtectionMIBConformance 1 }
juniDosProtectionMIBGroups       OBJECT IDENTIFIER ::= { juniDosProtectionMIBConformance 2 }


juniDosProtectionCompliance  MODULE-COMPLIANCE
    STATUS      obsolete
    DESCRIPTION
        "The compliance statement for entities which implement the Juniper 
		Dos Protection MIB. This was made obsolete with the addition of
		dos-protection-groups."
    MODULE   -- this module
        MANDATORY-GROUPS {
            juniDosProtectionGroup }
    ::= { juniDosProtectionMIBCompliances 1 }  

juniDosProtectionCompliance2  MODULE-COMPLIANCE
    STATUS      current
    DESCRIPTION
        "The compliance statement for entities which implement the Juniper 
		Dos	Protection MIB."
    MODULE   -- this module
        MANDATORY-GROUPS {
            juniDosProtectionGroup2 }
    ::= { juniDosProtectionMIBCompliances 2 }   -- Junos x.y

--
-- units of conformance
--
juniDosProtectionGroup OBJECT-GROUP
	OBJECTS {juniDosProtectionScfdsGlobalState,	
			juniDosProtectionScfdsGlobalGrouping,	
			juniDosProtectionScfdsGlobalClearAll, 
			juniDosProtectionScfdsGlobalDiscontinuityTime, 
			juniDosProtectionScfdsGlobalTableOverflowState, 
			juniDosProtectionScfdsGlobalCurrentSuspiciousFlows, 
			juniDosProtectionScfdsGlobalNumberSuspiciousFlows,	
			juniDosProtectionScfdsGlobalCurrentSuspiciousFlowGroups, 
			juniDosProtectionScfdsGlobalNumberSuspiciousFlowGroups, 
			juniDosProtectionScfdsGlobalCurrentFalseNegativeFlows, 
			juniDosProtectionScfdsGlobalNumberFalseNegativeFlows, 
			juniDosProtectionScfdsGlobalNumberTableOverflows, 
			juniDosProtectionScfdsProtocolThreshold, 
			juniDosProtectionScfdsProtocolLowThreshold, 
			juniDosProtectionScfdsProtocolBackoffTime,	
			juniDosProtectionScfdsProtocolState, 
			juniDosProtectionScfdsProtocolTransitions }
    STATUS obsolete
	DESCRIPTION 
		"A collection of objects providing management of DOS protection 
		application in a Juniper product. This object became obsolete
		with the addition of dos-protection-groups."

	::= { juniDosProtectionMIBGroups 1 }

juniDosProtectionGroup2 OBJECT-GROUP
	OBJECTS {juniDosProtectionScfdsGlobalState,	
			juniDosProtectionScfdsGlobalGrouping,	
			juniDosProtectionScfdsGlobalClearAll, 
			juniDosProtectionScfdsGlobalDiscontinuityTime, 
			juniDosProtectionScfdsGlobalTableOverflowState, 
			juniDosProtectionScfdsGlobalCurrentSuspiciousFlows, 
			juniDosProtectionScfdsGlobalNumberSuspiciousFlows,	
			juniDosProtectionScfdsGlobalCurrentSuspiciousFlowGroups, 
			juniDosProtectionScfdsGlobalNumberSuspiciousFlowGroups, 
			juniDosProtectionScfdsGlobalCurrentFalseNegativeFlows, 
			juniDosProtectionScfdsGlobalNumberFalseNegativeFlows, 
			juniDosProtectionScfdsGlobalNumberTableOverflows, 
			juniDosProtectionScfdsProtocolThreshold, 
			juniDosProtectionScfdsProtocolLowThreshold, 
			juniDosProtectionScfdsProtocolBackoffTime,	
			juniDosProtectionScfdsProtocolState, 
			juniDosProtectionScfdsProtocolTransitions,
			juniDosProtectionDpgRowStatus,	
			juniDosProtectionDpgCanned,
			juniDosProtectionDpgRevert,
			juniDosProtectionDpgModified,
			juniDosProtectionDpgReferences,
			juniDosProtectionDpgProtocolBurst,
			juniDosProtectionDpgProtocolDropProbability,
			juniDosProtectionDpgProtocolRate,
			juniDosProtectionDpgProtocolSkipPriorityRateLimiter,
			juniDosProtectionDpgProtocolWeight,
			juniDosProtectionDpgProtocolModified,
			juniDosProtectionDpgPriorityBurst,
			juniDosProtectionDpgPriorityOverSubscriptionFactor,
			juniDosProtectionDpgPriorityRate,
			juniDosProtectionDpgPriorityModified,
			juniDosProtectionDpgAttachRowStatus,
			juniDosProtectionDpgAttachName,
			juniDosProtectionDpgProfileRowStatus,
			juniDosProtectionDpgProfileName	}
    STATUS current
	DESCRIPTION 
		"A collection of objects providing management of DOS protection 
		application in a Juniper product."

	::= { juniDosProtectionMIBGroups 2 }
END