I am capturing some packets in my testing. I don't want to capture the packets with same src and dst ip. How can i achieve this?
I tried below
tcpdump -i any '(not src host 10.10.10.10) and (not dst host 10.10.10.10)'
The result packet capture is not satisfying. Because, I have some packets form src host 10.10.10.10 to dst host 10.10.10.20. I need to capture them.
Can someone help me out. Thank you in advance.