PCAP Exporter
Loading...
Searching...
No Matches
pcap_ethernet_frames_exporter

Processors

pcap_ethernet_frames

PCAP File Processor to export raw ethernet frames into an PCAP file.

Properties

Name Default Value Type Description
use_nano_sec_precision 0 signed With this option you can set whether the timestamps of the network frames should be written in micro seconds (== 0) or nano seconds (!= 0). If nothing is specified, micro seconds are used (= pcap default).

pcapng_ethernet_frames

PCAPNG File Processor to export raw ethernet frames into an PCAPNG file.

Properties

Name Default Value Type Description
use_nano_sec_precision 1 signed With this option you can set whether the timestamps of the network frames should be written in micro seconds (== 0) or nano seconds (!= 0). If nothing is specified, nano seconds are used (= pcapng default).

Plugin Attributes

Attribute Value
Plugin Name pcap_ethernet_frames_exporter.adtffileplugin
License ADTF Subscription
Support Mail suppo.nosp@m.rt@d.nosp@m.igita.nosp@m.lwer.nosp@m.k.net
Homepage URL https://adtf.dev/

Usage

To use one of the supplied exporters, specify the plugin with the --plugin option of the adtf_dattool i.e.:

adtf_dattool --plugin /path/to/pcap_exporter/bin/pcap_ethernet_frames_exporter.adtffileplugin --export file_with_ethernet_data.adtfdat --stream ethernet --output ethernet_frames.pcap

Note: You can specify a processor for each stream with the –processorid argument. If you do not specify one explicitly, the first one that supports the stream is used.

Example with processorid:

adtf_dattool --plugin /path/to/pcap_exporter/bin/pcap_ethernet_frames_exporter.adtffileplugin --export file_with_ethernet_data.adtfdat --stream ethernet --processorid pcapng_ethernet_frames --output ethernet_frames.pcapng

Examples

Adjust pcap timestamp resolution to nanoseconds

adtf_dattool --plugin /path/to/pcap_exporter/bin/pcap_ethernet_frames_exporter.adtffileplugin --export file_with_ethernet_data.adtfdat --stream ethernet --processorid pcap_ethernet_frames --output ethernet_frames.pcap --property use_nano_sec_precision=1

Adjust pcapng timestamp resolution to microseconds

adtf_dattool --plugin /path/to/pcap_exporter/bin/pcap_ethernet_frames_exporter.adtffileplugin --export file_with_ethernet_data.adtfdat --stream ethernet --processorid pcapng_ethernet_frames --output ethernet_frames.pcapng --property use_nano_sec_precision=0