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
|
--
--
-- ARBOR NETWORKS
--
--
--
-- File: arbornet-tms.mib
-- Created: April 27, 2007
-- Purpose: Peakflow TMS MIB
-- describe any data which we provide
-- describe any traps which we send
--
--
PEAKFLOW-TMS-MIB DEFINITIONS ::= BEGIN
IMPORTS
MODULE-IDENTITY,
OBJECT-TYPE,
NOTIFICATION-TYPE,
IpAddress,
TimeTicks,
Integer32,
Unsigned32
FROM SNMPv2-SMI
TEXTUAL-CONVENTION,
DisplayString
FROM SNMPv2-TC
sysName
FROM SNMPv2-MIB
ifName
FROM IF-MIB
Ipv6Address,
Ipv6AddressPrefix
FROM IPV6-TC
arbornetworksProducts
FROM ARBOR-SMI;
-- =============================================================================
peakflowTmsMIB MODULE-IDENTITY
LAST-UPDATED "201403120000Z" -- March 12, 2014
ORGANIZATION "Arbor Networks, Inc."
CONTACT-INFO
" Arbor Networks, Inc.
Arbor Technical Assistance Center
Postal: 76 Blanchard Road
Burlington, MA 01803
USA
Tel: +1 866 212 7267 (toll free)
+1 781 362 4300
Email: support@arbor.net "
DESCRIPTION
"Peakflow TMS MIB"
-- Revision log, reverse chrono
REVISION "201403120000Z" -- March 12, 2014
DESCRIPTION "Added entry for tmsTrapGreName field"
REVISION "201309190000Z" -- September 19, 2013
DESCRIPTION "Added entry for tmsSpCommunicationDegraded trap"
REVISION "201308190000Z" -- August 19, 2013
DESCRIPTION "Updated contact information"
REVISION "201203291200Z" -- March 29, 2012
DESCRIPTION "Bug#50908: Fix reversed tmsSpCommunication enumerations."
REVISION "201201121200Z" -- January 12, 2012
DESCRIPTION "Added tmsSystemPrefixesOk and tmsSystemPrefixesMissing
traps."
REVISION "201106141600Z" -- June 14, 2011
DESCRIPTION "Fix stray quote that was causing a syntax error."
REVISION "201106031600Z" -- June 03, 2011
DESCRIPTION "Added performnace traps."
REVISION "201106030000Z" -- June 03, 2011
DESCRIPTION "Fixed some typos and grammar problems."
REVISION "201105230000Z" -- May 23, 2011
DESCRIPTION "Added IPv6 versions of existing IPv4 objects."
REVISION "201101210000Z" -- January 21, 2011
DESCRIPTION "Added new traps (tmsAutomitigationBgp
{Enabled/Disabled/Suspended}) for traffic-triggered
automitigation BGP announcements."
REVISION "201010280000Z" -- October 28, 2010
DESCRIPTION "Added new traps (tmsSpCommunicationDown and
tmsSpCommunicationUp) for alerting about failed
communication with Peakflow SP."
REVISION "201009070000Z" -- September 7, 2010
DESCRIPTION "Added new traps (tmsFilesystemCritical and
tmsFilesystemNominal) for new filesystem monitoring
feature."
REVISION "200905270000Z" -- May 27, 2009
DESCRIPTION "The March 11 2009 revision had accidentally obsoleted the
tmsHostFault OID, rather than the hostFault trap. This
is now fixed. The tmsHostFault OID is restored to current
status and the hostFault trap is marked obsolete."
REVISION "200905080000Z" -- May 08, 2009
DESCRIPTION "Update contact group name and company address."
REVISION "200903110000Z" -- March 11, 2009
DESCRIPTION "Obsoleted the tmsHostFault trap."
REVISION "200902130000Z" -- February 13, 2009
DESCRIPTION "Added new objects to support TMS 5.0"
REVISION "200811130000Z" -- November 13, 2008
DESCRIPTION "Update contact info."
REVISION "200804070000Z" -- April 07, 2008
DESCRIPTION "Prefixed Textual Conventions with 'Tms' for uniqueness"
REVISION "200711200000Z" -- November 20, 2007
DESCRIPTION "Removed unused Textual Conventions, added display hints"
REVISION "200704270000Z" -- April 27, 2007
DESCRIPTION "Initial revision"
::= { arbornetworksProducts 5 }
-- =============================================================================
-- Textual Conventions
-- =============================================================================
TmsTableIndex ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"Used for an index into a table"
SYNTAX Integer32 (1..2147483647)
TmsTableIndexOrZero ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"The number of items in a table.
May be zero if the table is empty."
SYNTAX Integer32 (0..2147483647)
TmsPercentage ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d"
STATUS current
DESCRIPTION
"A percentage value (0% - 100%)"
SYNTAX Integer32 (0..100)
TmsHundredths ::= TEXTUAL-CONVENTION
DISPLAY-HINT "d-2"
STATUS current
DESCRIPTION
"An integer representing hundredths of a unit"
SYNTAX Integer32
-- =============================================================================
-- peakflowTmsMgr
-- =============================================================================
peakflowTmsMgr OBJECT IDENTIFIER ::= { peakflowTmsMIB 2 }
tmsHostFault OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"state of faults within a TMS device"
::= { peakflowTmsMgr 1 }
tmsHostUpTime OBJECT-TYPE
SYNTAX TimeTicks
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"uptime of this host"
::= { peakflowTmsMgr 2 }
deviceCpuLoadAvg1min OBJECT-TYPE
SYNTAX TmsHundredths
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average number of processes in run queue during last 1 min."
::= { peakflowTmsMgr 3 }
deviceCpuLoadAvg5min OBJECT-TYPE
SYNTAX TmsHundredths
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average number of processes in run queue during last 5 min."
::= { peakflowTmsMgr 4 }
deviceCpuLoadAvg15min OBJECT-TYPE
SYNTAX TmsHundredths
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Average number of processes in run queue during last 15 min."
::= { peakflowTmsMgr 5 }
deviceDiskUsage OBJECT-TYPE
SYNTAX TmsPercentage
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Percentage of primary data partition used."
::= { peakflowTmsMgr 6 }
devicePhysicalMemoryUsage OBJECT-TYPE
SYNTAX TmsPercentage
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Percentage of physical memory used."
::= { peakflowTmsMgr 7 }
deviceSwapSpaceUsage OBJECT-TYPE
SYNTAX TmsPercentage
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Percentage of swap space used."
::= { peakflowTmsMgr 8 }
tmsTrapString OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Temporary string for reporting information in traps"
::= { peakflowTmsMgr 9 }
tmsTrapDetail OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Temporary string for reporting additional detail (if any)
about a trap"
::= { peakflowTmsMgr 10 }
tmsTrapSubhostName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Temporary string for reporting the name of a subhost"
::= { peakflowTmsMgr 11 }
tmsTrapComponentName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Temporary string for reporting the name of a program or device"
::= { peakflowTmsMgr 12 }
tmsTrapBgpPeer OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IP address of a BGP peer"
::= { peakflowTmsMgr 13 }
tmsTrapGreSource OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"GRE source IP address"
::= { peakflowTmsMgr 14 }
tmsTrapGreDestination OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"GRE destination IP address"
::= { peakflowTmsMgr 15 }
tmsTrapNexthop OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Nexthop IP address"
::= { peakflowTmsMgr 16 }
tmsTrapIpv6BgpPeer OBJECT-TYPE
SYNTAX Ipv6Address
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"IPv6 address of a BGP peer"
::= { peakflowTmsMgr 17 }
tmsTrapIpv6GreSource OBJECT-TYPE
SYNTAX Ipv6Address
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"GRE source IPv6 address"
::= { peakflowTmsMgr 18 }
tmsTrapIpv6GreDestination OBJECT-TYPE
SYNTAX Ipv6Address
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"GRE destination IPv6 address"
::= { peakflowTmsMgr 19 }
tmsTrapIpv6Nexthop OBJECT-TYPE
SYNTAX Ipv6Address
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Nexthop IPv6 address"
::= { peakflowTmsMgr 20 }
tmsTrapGreName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"User-defined tunnel name"
::= { peakflowTmsMgr 21 }
-- =============================================================================
-- peakflowTmsTraps
-- =============================================================================
peakflowTmsTraps OBJECT IDENTIFIER ::= { peakflowTmsMIB 3 }
peakflowTmsTrapsEnumerate OBJECT IDENTIFIER ::= { peakflowTmsTraps 0 }
hostFault NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsHostFault
}
STATUS obsolete
DESCRIPTION
"Obsolete; replaced by a number of more specific traps."
::= { peakflowTmsTrapsEnumerate 1 }
greTunnelDown NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapGreSource,
tmsTrapGreDestination
}
STATUS current
DESCRIPTION
"The greTunnelDown/greTunnelUp traps are generated when a GRE
tunnel changes state."
::= { peakflowTmsTrapsEnumerate 2 }
greTunnelUp NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapGreSource,
tmsTrapGreDestination
}
STATUS current
DESCRIPTION
"The greTunnelDown/greTunnelUp traps are generated when a GRE
tunnel changes state."
::= { peakflowTmsTrapsEnumerate 3 }
tmsLinkUp NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString
}
STATUS obsolete
DESCRIPTION
"Obsolete; IF-MIB::linkUp is now used instead"
::= { peakflowTmsTrapsEnumerate 4 }
tmsLinkDown NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString
}
STATUS obsolete
DESCRIPTION
"Obsolete; IF-MIB::linkDown is now used instead"
::= { peakflowTmsTrapsEnumerate 5 }
subHostUp NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapSubhostName
}
STATUS current
DESCRIPTION
"Generated when a subhost transitions to active"
::= { peakflowTmsTrapsEnumerate 6 }
subHostDown NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapSubhostName
}
STATUS current
DESCRIPTION
"Generated when a subhost transitions to inactive"
::= { peakflowTmsTrapsEnumerate 7 }
tmsBgpNeighborDown NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapBgpPeer
}
STATUS current
DESCRIPTION
"Generated when a BGP neighbor transitions out of
the ESTABLISHED state"
::= { peakflowTmsTrapsEnumerate 8 }
tmsBgpNeighborUp NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapBgpPeer
}
STATUS current
DESCRIPTION
"Generated when a BGP neighbor transitions into
the ESTABLISHED state"
::= { peakflowTmsTrapsEnumerate 9 }
tmsNexthopDown NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapNexthop,
ifName
}
STATUS current
DESCRIPTION
"Generated when the nexthop host cannot be contacted"
::= { peakflowTmsTrapsEnumerate 10 }
tmsNexthopUp NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapNexthop,
ifName
}
STATUS current
DESCRIPTION
"Generated when the nexthop host cannot be contacted"
::= { peakflowTmsTrapsEnumerate 11 }
tmsMitigationError NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsMitigationIndex,
tmsMitigationName
}
STATUS current
DESCRIPTION
"A mitigation cannot run because of a configuration error"
::= { peakflowTmsTrapsEnumerate 12 }
tmsMitigationSuspended NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsMitigationIndex,
tmsMitigationName
}
STATUS current
DESCRIPTION
"A mitigation has been suspended due to some external problem
(nexthop not reachable, BGP down, etc.)"
::= { peakflowTmsTrapsEnumerate 13 }
tmsMitigationRunning NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsMitigationIndex,
tmsMitigationName
}
STATUS current
DESCRIPTION
"A previously-detected mitigation problem has been cleared and
the mitigation is now running"
::= { peakflowTmsTrapsEnumerate 14 }
tmsConfigMissing NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapComponentName
}
STATUS current
DESCRIPTION
"Generated when a TMS configuration file cannot be found."
::= { peakflowTmsTrapsEnumerate 15 }
tmsConfigError NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapComponentName
}
STATUS current
DESCRIPTION
"Generated when an error in a TMS configuration file
is detected."
::= { peakflowTmsTrapsEnumerate 16 }
tmsConfigOk NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapComponentName
}
STATUS current
DESCRIPTION
"All configuration problems have been corrected."
::= { peakflowTmsTrapsEnumerate 17 }
tmsHwDeviceDown NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapComponentName
}
STATUS current
DESCRIPTION
"A hardware device has failed."
::= { peakflowTmsTrapsEnumerate 18 }
tmsHwDeviceUp NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapComponentName
}
STATUS current
DESCRIPTION
"A hardware device failure has been corrected."
::= { peakflowTmsTrapsEnumerate 19 }
tmsHwSensorCritical NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapComponentName
}
STATUS current
DESCRIPTION
"A hardware sensor is reading an alarm condition."
::= { peakflowTmsTrapsEnumerate 20 }
tmsHwSensorOk NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapComponentName
}
STATUS current
DESCRIPTION
"A hardware sensor is no longer reading an alarm condition."
::= { peakflowTmsTrapsEnumerate 21 }
tmsSwComponentDown NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapSubhostName,
tmsTrapComponentName
}
STATUS current
DESCRIPTION
"A software program has failed."
::= { peakflowTmsTrapsEnumerate 22 }
tmsSwComponentUp NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapSubhostName,
tmsTrapComponentName
}
STATUS current
DESCRIPTION
"A software program failure has been corrected."
::= { peakflowTmsTrapsEnumerate 23 }
tmsSystemStatusCritical NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapComponentName
}
STATUS current
DESCRIPTION
"The TMS system is experiencing a critical failure."
::= { peakflowTmsTrapsEnumerate 24 }
tmsSystemStatusDegraded NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapComponentName
}
STATUS current
DESCRIPTION
"The TMS system is experiencing degraded performance."
::= { peakflowTmsTrapsEnumerate 25 }
tmsSystemStatusNominal NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapComponentName
}
STATUS current
DESCRIPTION
"The TMS system has returned to normal behavior."
::= { peakflowTmsTrapsEnumerate 26 }
tmsFilesystemCritical NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapComponentName
}
STATUS current
DESCRIPTION
"A filesystem is near capacity."
::= { peakflowTmsTrapsEnumerate 27 }
tmsFilesystemNominal NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapComponentName
}
STATUS current
DESCRIPTION
"A filesystem is back below capacity alarm threshold."
::= { peakflowTmsTrapsEnumerate 28 }
tmsHwSensorUnknown NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapComponentName
}
STATUS current
DESCRIPTION
"A hardware sensor is in an unknown state."
::= { peakflowTmsTrapsEnumerate 29 }
tmsSpCommunicationUp NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapComponentName
}
STATUS current
DESCRIPTION
"Communication with SP host is up."
::= { peakflowTmsTrapsEnumerate 30 }
tmsSpCommunicationDown NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapComponentName
}
STATUS current
DESCRIPTION
"Communication with SP host is down."
::= { peakflowTmsTrapsEnumerate 31 }
tmsSystemStatusError NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapComponentName
}
STATUS current
DESCRIPTION
"The TMS system is experiencing an error."
::= { peakflowTmsTrapsEnumerate 32 }
tmsAutomitigationBgpEnabled NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapComponentName
}
STATUS current
DESCRIPTION
"A previously-detected automitigation problem has been cleared
and the automitigation BGP announcements have resumed."
::= { peakflowTmsTrapsEnumerate 33 }
tmsAutomitigationBgpDisabled NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapComponentName
}
STATUS current
DESCRIPTION
"Automitigation BGP announcements have been administratively
disabled."
::= { peakflowTmsTrapsEnumerate 34 }
tmsAutomitigationBgpSuspended NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapComponentName
}
STATUS current
DESCRIPTION
"Automitigation BGP announcements have been suspended due to
some external problem (nexthop not reachable, BGP down, etc.)"
::= { peakflowTmsTrapsEnumerate 35 }
tmsIpv6GreTunnelDown NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapIpv6GreSource,
tmsTrapIpv6GreDestination
}
STATUS current
DESCRIPTION
"The greTunnelDown/greTunnelUp traps are generated when a GRE
tunnel changes state."
::= { peakflowTmsTrapsEnumerate 36 }
tmsIpv6GreTunnelUp NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapIpv6GreSource,
tmsTrapIpv6GreDestination
}
STATUS current
DESCRIPTION
"The greTunnelDown/greTunnelUp traps are generated when a GRE
tunnel changes state."
::= { peakflowTmsTrapsEnumerate 37 }
tmsIpv6BgpNeighborDown NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapIpv6BgpPeer
}
STATUS current
DESCRIPTION
"Generated when a BGP neighbor transitions out of
the ESTABLISHED state."
::= { peakflowTmsTrapsEnumerate 38 }
tmsIpv6BgpNeighborUp NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapIpv6BgpPeer
}
STATUS current
DESCRIPTION
"Generated when a BGP neighbor transitions into
the ESTABLISHED state."
::= { peakflowTmsTrapsEnumerate 39 }
tmsIpv6NexthopDown NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapIpv6Nexthop,
ifName
}
STATUS current
DESCRIPTION
"Generated when the nexthop host becomes unreachable."
::= { peakflowTmsTrapsEnumerate 40 }
tmsIpv6NexthopUp NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapIpv6Nexthop,
ifName
}
STATUS current
DESCRIPTION
"Generated when the nexthop host becomes reachable."
::= { peakflowTmsTrapsEnumerate 41 }
tmsPerformanceOk NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapComponentName
}
STATUS current
DESCRIPTION
"Generated when the processed traffic rate matches the offered
traffic rate."
::= { peakflowTmsTrapsEnumerate 42 }
tmsPerformanceLossy NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapComponentName
}
STATUS current
DESCRIPTION
"Generated when the processed traffic rate is lower than the
offered traffic rate."
::= { peakflowTmsTrapsEnumerate 43 }
tmsSystemPrefixesOk NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapComponentName
}
STATUS current
DESCRIPTION
"BGP is currently advertising all mitigation prefixes."
::= { peakflowTmsTrapsEnumerate 44 }
tmsSystemPrefixesMissing NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapComponentName
}
STATUS current
DESCRIPTION
"BGP is not currently advertising all mitigation prefixes."
::= { peakflowTmsTrapsEnumerate 45 }
tmsSpCommunicationDegraded NOTIFICATION-TYPE
OBJECTS {
sysName,
tmsTrapString,
tmsTrapDetail,
tmsTrapComponentName
}
STATUS current
DESCRIPTION
"Communication with SP host is degraded."
::= { peakflowTmsTrapsEnumerate 46 }
-- =============================================================================
-- peakflowTmsObj
-- =============================================================================
peakflowTmsObj OBJECT IDENTIFIER ::= { peakflowTmsMIB 5 }
-- DPI Config
-- Read from /etc/peakflow/dpi.conf
tmsDpiConfig OBJECT IDENTIFIER ::= { peakflowTmsObj 1 }
tmsVersion OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"TMS software version"
::= { tmsDpiConfig 1 }
tmsLastUpdate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Time of the last configuration change"
::= { tmsDpiConfig 2 }
-- Mitigation Config
-- Read from /etc/peakflow/mitigation/mitigation.conf
tmsMitigationConfig OBJECT IDENTIFIER ::= { peakflowTmsObj 2 }
tmsMitigationLastUpdate OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Last time Mitigation configuration was updated"
::= { tmsMitigationConfig 1 }
tmsMitigationNumber OBJECT-TYPE
SYNTAX TmsTableIndexOrZero
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Number of entries in the tmsMitigation table"
::= { tmsMitigationConfig 2 }
tmsMitigationTable OBJECT-TYPE
SYNTAX SEQUENCE OF TmsMitigationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Table of all mitigations in the TMS system"
::= { tmsMitigationConfig 3 }
tmsMitigationEntry OBJECT-TYPE
SYNTAX TmsMitigationEntry
MAX-ACCESS not-accessible
STATUS current
DESCRIPTION
"Information about a single mitigation"
INDEX { tmsMitigationIndex }
::= { tmsMitigationTable 1 }
TmsMitigationEntry ::=
SEQUENCE {
tmsMitigationIndex TmsTableIndex,
tmsMitigationId Unsigned32,
tmsDestinationPrefix IpAddress,
tmsDestinationPrefixMask Unsigned32,
tmsMitigationName DisplayString,
tmsIpv6DestinationPrefix Ipv6AddressPrefix,
tmsIpv6DestinationPrefixMask Unsigned32
}
tmsMitigationIndex OBJECT-TYPE
SYNTAX TmsTableIndex
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Index in the tmsMitigation table. As of release 5.0 this is
the same as the tmsMitigationId."
::= { tmsMitigationEntry 1 }
tmsMitigationId OBJECT-TYPE
SYNTAX Unsigned32
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"ID number of this mitigation"
::= { tmsMitigationEntry 2 }
tmsDestinationPrefix OBJECT-TYPE
SYNTAX IpAddress
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Destination IPv4 prefix to which this mitigation applies. The
value 0.0.0.0/32 indicates that the mitigation has no IPv4
prefix."
::= { tmsMitigationEntry 3 }
tmsDestinationPrefixMask OBJECT-TYPE
SYNTAX Unsigned32(0..32)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Destination IPv4 prefix to which this mitigation applies. The
value 0.0.0.0/32 indicates that the mitigation has no IPv4
prefix."
::= { tmsMitigationEntry 4 }
tmsMitigationName OBJECT-TYPE
SYNTAX DisplayString
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Name of this mitigation"
::= { tmsMitigationEntry 5 }
tmsIpv6DestinationPrefix OBJECT-TYPE
SYNTAX Ipv6AddressPrefix
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Destination IPv6 prefix to which this mitigation applies. The
value 0::/128 indicates that the mitigation has no IPv6 prefix."
::= { tmsMitigationEntry 6 }
tmsIpv6DestinationPrefixMask OBJECT-TYPE
SYNTAX Unsigned32(0..128)
MAX-ACCESS read-only
STATUS current
DESCRIPTION
"Destination IPv6 prefix to which this mitigation applies. The
value 0::/128 indicates that the mitigation has no IPv6 prefix."
::= { tmsMitigationEntry 7 }
END
|