While I use this tcpdump command for MySQL query analysis with
mk-query-digest, I found recently that it
didn’t work on FreeBSD
$ tcpdump -i bge0 port 3306 -s 65535 -x -n -q -tttt -c 5
tcpdump: syntax error
It left me perplexed and reading the man page seemed to indicate
my options were valid. I tried a few variances just to be sure
without success.
$ tcpdump -i bge0 -c 5 port 3306 -x
tcpdump: syntax error
$ tcpdump -i bge0 -c 5 port 3306 -q
tcpdump: syntax error
$ tcpdump -i bge0 -c 5 port 3306 -tttt
tcpdump: syntax error
The solution was actually quite simple in the end, it had nothing
to do with the commands, it had everything to do with the order
of them. Placing port as the last option solved the problem.
$ tcpdump -i bge0 -s 65535 -x -n -q -tttt -c 5 port 3306
$ uname -a
FreeBSD …
[Read more]