Is it at all possible to redirect some stdout and have the data saved to a file on a remote server? Below is a terrible example the definitely don't work...
sudo tcpdump ... 2>&1 | ssh ... user@hostname -
Or perhaps using netcat instead of SSH?
sudo tcpdump ... 2>&1 | nc <host> <port> -
Something like this but the solution doesn't work for me..