/usr/bin/tracesummary is in libtrace-tools 3.0.21-1ubuntu2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #!/bin/sh
if [ $# -lt 1 ]; then
echo usage: $0 inputuri...
fi
exec tracestats --filter 'not ether proto \ip and not ether proto 0x86dd' \
--filter 'ether proto 0x86dd' \
--filter 'ether proto \ip' \
--filter tcp \
--filter udp \
--filter icmp \
--filter 'not (tcp or udp or icmp)' \
--filter 'tcp and port http or https' \
--filter 'tcp and port smtp' \
--filter 'tcp and port pop3 or pop3s' \
--filter 'tcp and port imap or imaps' \
--filter 'port domain' \
--filter 'icmp[icmptype]=icmp-echoreply' \
$@
|