-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathipfix.yaml
4100 lines (4100 loc) · 61.6 KB
/
ipfix.yaml
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
---
0:
0:
- :skip
1:
- :uint64
- :octetDeltaCount
2:
- :uint64
- :packetDeltaCount
3:
- :uint64
- :deltaFlowCount
4:
- :uint8
- :protocolIdentifier
5:
- :uint8
- :ipClassOfService
6:
- :uint16
- :tcpControlBits
7:
- :uint16
- :sourceTransportPort
8:
- :ip4_addr
- :sourceIPv4Address
9:
- :uint8
- :sourceIPv4PrefixLength
10:
- :uint32
- :ingressInterface
11:
- :uint16
- :destinationTransportPort
12:
- :ip4_addr
- :destinationIPv4Address
13:
- :uint8
- :destinationIPv4PrefixLength
14:
- :uint32
- :egressInterface
15:
- :ip4_addr
- :ipNextHopIPv4Address
16:
- :uint32
- :bgpSourceAsNumber
17:
- :uint32
- :bgpDestinationAsNumber
18:
- :ip4_addr
- :bgpNextHopIPv4Address
19:
- :uint64
- :postMCastPacketDeltaCount
20:
- :uint64
- :postMCastOctetDeltaCount
21:
- :uint32
- :flowEndSysUpTime
22:
- :uint32
- :flowStartSysUpTime
23:
- :uint64
- :postOctetDeltaCount
24:
- :uint64
- :postPacketDeltaCount
25:
- :uint64
- :minimumIpTotalLength
26:
- :uint64
- :maximumIpTotalLength
27:
- :ip6_addr
- :sourceIPv6Address
28:
- :ip6_addr
- :destinationIPv6Address
29:
- :uint8
- :sourceIPv6PrefixLength
30:
- :uint8
- :destinationIPv6PrefixLength
31:
- :uint32
- :flowLabelIPv6
32:
- :uint16
- :icmpTypeCodeIPv4
33:
- :uint8
- :igmpType
34:
- :uint32
- :samplingInterval
35:
- :uint8
- :samplingAlgorithm
36:
- :uint16
- :flowActiveTimeout
37:
- :uint16
- :flowIdleTimeout
38:
- :uint8
- :engineType
39:
- :uint8
- :engineId
40:
- :uint64
- :exportedOctetTotalCount
41:
- :uint64
- :exportedMessageTotalCount
42:
- :uint64
- :exportedFlowRecordTotalCount
43:
- :ip4_addr
- :ipv4RouterSc
44:
- :ip4_addr
- :sourceIPv4Prefix
45:
- :ip4_addr
- :destinationIPv4Prefix
46:
- :uint8
- :mplsTopLabelType
47:
- :ip4_addr
- :mplsTopLabelIPv4Address
48:
- :uint8
- :samplerId
49:
- :uint8
- :samplerMode
50:
- :uint32
- :samplerRandomInterval
51:
- :uint8
- :classId
52:
- :uint8
- :minimumTTL
53:
- :uint8
- :maximumTTL
54:
- :uint32
- :fragmentIdentification
55:
- :uint8
- :postIpClassOfService
56:
- :mac_addr
- :sourceMacAddress
57:
- :mac_addr
- :postDestinationMacAddress
58:
- :uint16
- :vlanId
59:
- :uint16
- :postVlanId
60:
- :uint8
- :ipVersion
61:
- :uint8
- :flowDirection
62:
- :ip6_addr
- :ipNextHopIPv6Address
63:
- :ip6_addr
- :bgpNextHopIPv6Address
64:
- :uint32
- :ipv6ExtensionHeaders
70:
- :string
- :mplsTopLabelStackSection
71:
- :string
- :mplsLabelStackSection2
72:
- :string
- :mplsLabelStackSection3
73:
- :string
- :mplsLabelStackSection4
74:
- :string
- :mplsLabelStackSection5
75:
- :string
- :mplsLabelStackSection6
76:
- :string
- :mplsLabelStackSection7
77:
- :string
- :mplsLabelStackSection8
78:
- :string
- :mplsLabelStackSection9
79:
- :string
- :mplsLabelStackSection10
80:
- :mac_addr
- :destinationMacAddress
81:
- :mac_addr
- :postSourceMacAddress
82:
- :string
- :interfaceName
83:
- :string
- :interfaceDescription
84:
- :string
- :samplerName
85:
- :uint64
- :octetTotalCount
86:
- :uint64
- :packetTotalCount
87:
- :uint32
- :flagsAndSamplerId
88:
- :uint16
- :fragmentOffset
89:
- :uint32
- :forwardingStatus
90:
- :string
- :mplsVpnRouteDistinguisher
91:
- :uint8
- :mplsTopLabelPrefixLength
92:
- :uint32
- :srcTrafficIndex
93:
- :uint32
- :dstTrafficIndex
94:
- :string
- :applicationDescription
95:
- :string
- :applicationId
96:
- :string
- :applicationName
98:
- :uint8
- :postIpDiffServCodePoint
99:
- :uint32
- :multicastReplicationFactor
100:
- :string
- :className
101:
- :uint8
- :classificationEngineId
102:
- :uint16
- :layer2packetSectionOffset
103:
- :uint16
- :layer2packetSectionSize
104:
- :string
- :layer2packetSectionData
128:
- :uint32
- :bgpNextAdjacentAsNumber
129:
- :uint32
- :bgpPrevAdjacentAsNumber
130:
- :ip4_addr
- :exporterIPv4Address
131:
- :ip6_addr
- :exporterIPv6Address
132:
- :uint64
- :droppedOctetDeltaCount
133:
- :uint64
- :droppedPacketDeltaCount
134:
- :uint64
- :droppedOctetTotalCount
135:
- :uint64
- :droppedPacketTotalCount
136:
- :uint8
- :flowEndReason
137:
- :uint64
- :commonPropertiesId
138:
- :uint64
- :observationPointId
139:
- :uint16
- :icmpTypeCodeIPv6
140:
- :ip6_addr
- :mplsTopLabelIPv6Address
141:
- :uint32
- :lineCardId
142:
- :uint32
- :portId
143:
- :uint32
- :meteringProcessId
144:
- :uint32
- :exportingProcessId
145:
- :uint16
- :templateId
146:
- :uint8
- :wlanChannelId
147:
- :string
- :wlanSSID
148:
- :uint64
- :flowId
149:
- :uint32
- :observationDomainId
150:
- :uint32
- :flowStartSeconds
151:
- :uint32
- :flowEndSeconds
152:
- :uint64
- :flowStartMilliseconds
153:
- :uint64
- :flowEndMilliseconds
154:
- :uint64
- :flowStartMicroseconds
155:
- :uint64
- :flowEndMicroseconds
156:
- :uint64
- :flowStartNanoseconds
157:
- :uint64
- :flowEndNanoseconds
158:
- :uint32
- :flowStartDeltaMicroseconds
159:
- :uint32
- :flowEndDeltaMicroseconds
160:
- :uint64
- :systemInitTimeMilliseconds
161:
- :uint32
- :flowDurationMilliseconds
162:
- :uint32
- :flowDurationMicroseconds
163:
- :uint64
- :observedFlowTotalCount
164:
- :uint64
- :ignoredPacketTotalCount
165:
- :uint64
- :ignoredOctetTotalCount
166:
- :uint64
- :notSentFlowTotalCount
167:
- :uint64
- :notSentPacketTotalCount
168:
- :uint64
- :notSentOctetTotalCount
169:
- :ip6_addr
- :destinationIPv6Prefix
170:
- :ip6_addr
- :sourceIPv6Prefix
171:
- :uint64
- :postOctetTotalCount
172:
- :uint64
- :postPacketTotalCount
173:
- :uint64
- :flowKeyIndicator
174:
- :uint64
- :postMCastPacketTotalCount
175:
- :uint64
- :postMCastOctetTotalCount
176:
- :uint8
- :icmpTypeIPv4
177:
- :uint8
- :icmpCodeIPv4
178:
- :uint8
- :icmpTypeIPv6
179:
- :uint8
- :icmpCodeIPv6
180:
- :uint16
- :udpSourcePort
181:
- :uint16
- :udpDestinationPort
182:
- :uint16
- :tcpSourcePort
183:
- :uint16
- :tcpDestinationPort
184:
- :uint32
- :tcpSequenceNumber
185:
- :uint32
- :tcpAcknowledgementNumber
186:
- :uint16
- :tcpWindowSize
187:
- :uint16
- :tcpUrgentPointer
188:
- :uint8
- :tcpHeaderLength
189:
- :uint8
- :ipHeaderLength
190:
- :uint16
- :totalLengthIPv4
191:
- :uint16
- :payloadLengthIPv6
192:
- :uint8
- :ipTTL
193:
- :uint8
- :nextHeaderIPv6
194:
- :uint32
- :mplsPayloadLength
195:
- :uint8
- :ipDiffServCodePoint
196:
- :uint8
- :ipPrecedence
197:
- :uint8
- :fragmentFlags
198:
- :uint64
- :octetDeltaSumOfSquares
199:
- :uint64
- :octetTotalSumOfSquares
200:
- :uint8
- :mplsTopLabelTTL
201:
- :uint32
- :mplsLabelStackLength
202:
- :uint32
- :mplsLabelStackDepth
203:
- :uint8
- :mplsTopLabelExp
204:
- :uint32
- :ipPayloadLength
205:
- :uint16
- :udpMessageLength
206:
- :uint8
- :isMulticast
207:
- :uint8
- :ipv4IHL
208:
- :uint32
- :ipv4Options
209:
- :uint64
- :tcpOptions
210:
- :skip
211:
- :ip4_addr
- :collectorIPv4Address
212:
- :ip6_addr
- :collectorIPv6Address
213:
- :uint32
- :exportInterface
214:
- :uint8
- :exportProtocolVersion
215:
- :uint8
- :exportTransportProtocol
216:
- :uint16
- :collectorTransportPort
217:
- :uint16
- :exporterTransportPort
218:
- :uint64
- :tcpSynTotalCount
219:
- :uint64
- :tcpFinTotalCount
220:
- :uint64
- :tcpRstTotalCount
221:
- :uint64
- :tcpPshTotalCount
222:
- :uint64
- :tcpAckTotalCount
223:
- :uint64
- :tcpUrgTotalCount
224:
- :uint64
- :ipTotalLength
225:
- :ip4_addr
- :postNATSourceIPv4Address
226:
- :ip4_addr
- :postNATDestinationIPv4Address
227:
- :uint16
- :postNAPTSourceTransportPort
228:
- :uint16
- :postNAPTDestinationTransportPort
229:
- :uint8
- :natOriginatingAddressRealm
230:
- :uint8
- :natEvent
231:
- :uint64
- :initiatorOctets
232:
- :uint64
- :responderOctets
233:
- :uint8
- :firewallEvent
234:
- :uint32
- :ingressVRFID
235:
- :uint32
- :egressVRFID
236:
- :string
- :VRFname
237:
- :uint8
- :postMplsTopLabelExp
238:
- :uint16
- :tcpWindowScale
239:
- :uint8
- :biflowDirection
240:
- :uint8
- :ethernetHeaderLength
241:
- :uint16
- :ethernetPayloadLength
242:
- :uint16
- :ethernetTotalLength
243:
- :uint16
- :dot1qVlanId
244:
- :uint8
- :dot1qPriority
245:
- :uint16
- :dot1qCustomerVlanId
246:
- :uint8
- :dot1qCustomerPriority
247:
- :string
- :metroEvcId
248:
- :uint8
- :metroEvcType
249:
- :uint32
- :pseudoWireId
250:
- :uint16
- :pseudoWireType
251:
- :uint32
- :pseudoWireControlWord
252:
- :uint32
- :ingressPhysicalInterface
253:
- :uint32
- :egressPhysicalInterface
254:
- :uint16
- :postDot1qVlanId
255:
- :uint16
- :postDot1qCustomerVlanId
256:
- :uint16
- :ethernetType
257:
- :uint8
- :postIpPrecedence
258:
- :uint64
- :collectionTimeMilliseconds
259:
- :uint16
- :exportSctpStreamId
260:
- :uint32
- :maxExportSeconds
261:
- :uint32
- :maxFlowEndSeconds
262:
- :string
- :messageMD5Checksum
263:
- :uint8
- :messageScope
264:
- :uint32
- :minExportSeconds
265:
- :uint32
- :minFlowStartSeconds
266:
- :string
- :opaqueOctets
267:
- :uint8
- :sessionScope
268:
- :uint64
- :maxFlowEndMicroseconds
269:
- :uint64
- :maxFlowEndMilliseconds
270:
- :uint64
- :maxFlowEndNanoseconds
271:
- :uint64
- :minFlowStartMicroseconds
272:
- :uint64
- :minFlowStartMilliseconds
273:
- :uint64
- :minFlowStartNanoseconds
274:
- :string
- :collectorCertificate
275:
- :string
- :exporterCertificate
276:
- :uint8
- :dataRecordsReliability
277:
- :uint8
- :observationPointType
278:
- :uint32
- :newConnectionDeltaCount
279:
- :uint64
- :connectionSumDurationSeconds
280:
- :uint64
- :connectionTransactionId
281:
- :ip6_addr
- :postNATSourceIPv6Address
282:
- :ip6_addr
- :postNATDestinationIPv6Address
283:
- :uint32
- :natPoolId
284:
- :string
- :natPoolName
285:
- :uint16
- :anonymizationFlags
286:
- :uint16
- :anonymizationTechnique
287:
- :uint16
- :informationElementIndex
288:
- :string
- :p2pTechnology
289:
- :string
- :tunnelTechnology
290:
- :string
- :encryptedTechnology
291:
- :skip
292:
- :skip
293:
- :skip
294:
- :uint8
- :bgpValidityState
295:
- :uint32
- :IPSecSPI
296:
- :uint32
- :greKey
297:
- :uint8
- :natType
298:
- :uint64
- :initiatorPackets
299:
- :uint64
- :responderPackets
300:
- :string
- :observationDomainName
301:
- :uint64
- :selectionSequenceId
302:
- :uint64
- :selectorId
303:
- :uint16
- :informationElementId
304:
- :uint16
- :selectorAlgorithm
305:
- :uint32
- :samplingPacketInterval
306:
- :uint32
- :samplingPacketSpace
307:
- :uint32
- :samplingTimeInterval
308:
- :uint32
- :samplingTimeSpace
309:
- :uint32
- :samplingSize
310:
- :uint32
- :samplingPopulation
311:
- :double
- :samplingProbability
312:
- :uint16
- :dataLinkFrameSize
313:
- :string
- :ipHeaderPacketSection
314:
- :string
- :ipPayloadPacketSection
315:
- :string
- :dataLinkFrameSection
316:
- :string
- :mplsLabelStackSection
317:
- :string
- :mplsPayloadPacketSection
318:
- :uint64
- :selectorIdTotalPktsObserved
319:
- :uint64
- :selectorIdTotalPktsSelected
320:
- :double
- :absoluteError
321:
- :double
- :relativeError
322:
- :uint32
- :observationTimeSeconds
323:
- :uint64
- :observationTimeMilliseconds
324:
- :uint64
- :observationTimeMicroseconds
325:
- :uint64
- :observationTimeNanoseconds
326:
- :uint64
- :digestHashValue
327:
- :uint64
- :hashIPPayloadOffset
328:
- :uint64
- :hashIPPayloadSize
329:
- :uint64
- :hashOutputRangeMin
330:
- :uint64
- :hashOutputRangeMax
331:
- :uint64
- :hashSelectedRangeMin
332:
- :uint64
- :hashSelectedRangeMax
333:
- :uint8
- :hashDigestOutput
334:
- :uint64
- :hashInitialiserValue
335:
- :string
- :selectorName
336:
- :double
- :upperCILimit
337:
- :double
- :lowerCILimit
338:
- :double
- :confidenceLevel
339:
- :uint8
- :informationElementDataType
340:
- :string
- :informationElementDescription
341:
- :string
- :informationElementName
342:
- :uint64
- :informationElementRangeBegin
343:
- :uint64
- :informationElementRangeEnd
344:
- :uint8
- :informationElementSemantics
345:
- :uint16
- :informationElementUnits
346:
- :uint32
- :privateEnterpriseNumber
347:
- :string
- :virtualStationInterfaceId
348:
- :string
- :virtualStationInterfaceName
349:
- :string
- :virtualStationUUID
350:
- :string
- :virtualStationName
351:
- :uint64
- :layer2SegmentId
352:
- :uint64
- :layer2OctetDeltaCount
353:
- :uint64
- :layer2OctetTotalCount
354:
- :uint64
- :ingressUnicastPacketTotalCount
355:
- :uint64
- :ingressMulticastPacketTotalCount
356:
- :uint64
- :ingressBroadcastPacketTotalCount
357:
- :uint64
- :egressUnicastPacketTotalCount
358:
- :uint64
- :egressBroadcastPacketTotalCount
359:
- :uint64
- :monitoringIntervalStartMilliSeconds
360:
- :uint64
- :monitoringIntervalEndMilliSeconds
361:
- :uint16
- :portRangeStart
362:
- :uint16
- :portRangeEnd
363: