Listen to the network traffic with tcpdump except ssh

When ssh to remote server tcpdump command floods the screen with packets produces by ssh connection. To exclude ssh connection from tcpdump output we can use command:
# tcpdump -i eth0 not port 22
where eth0 is your network interface.