fstrm

C library for Frame Streams protocol with command-line utilities.

brewmacoslinux
Try with needOr install directly
Source

About

Frame Streams implementation in C

Commands

fstrm_capturefstrm_replay

Examples

capture DNS queries from network interface$ fstrm_capture -i eth0 -w output.fstrm
save network traffic to a file in frame streams format$ fstrm_capture -s 127.0.0.1:5353 -w dns_traffic.fstrm
replay recorded network traffic from file$ fstrm_replay -r output.fstrm -d 127.0.0.1:5353
read frame streams file and display statistics$ fstrm_capture -r captured_data.fstrm -w /dev/stdout | head -100
capture DNS data and send to remote collector$ fstrm_capture -i eth0 -d collector.example.com:5353