Traft for ARM architecture

I want to use the tool Traft to analyze network traffic streamed from a mikrotik switch to a separate server using the Calea package as documented here: https://wiki.mikrotik.com/wiki/Mikrotik_IPS_IDS

I need a version of Traft compiled for the ARM architecture, but unfortunately was only able to find one compiled for x86 (http://www.mikrotik.com/download/trafr.tgz). Any tips on where to get an ARM version?

Try https://github.com/thefloweringash/tzsp2pcap instead. It is open source and currently being maintained. I use it on both Linux and MacOS without issue.

e.g.:


ssh router /tool sniffer set filter-interface=bridge filter-ip-address=192.168.1.41/32,192.168.1.42/32 filter-stream=yes streaming-enabled=yes streaming-server=192.168.1.100
ssh router /tool sniffer start
# on 192.168.1.100
tzsp2pcap -f | tee save.pcap | tcpdump -r - -nn -s0 -v -A

Load up save.pcap in wireshark, etc…