How to do a packet capture in all interfaces
From Tech-Wiki
Back to Local Traffic Mananger
Use tcpdump selecting 0.0 for the loopback interface. It will collect traffic from all interfaces at the same time. Be extra careful using proper filters.
tcpdump -ni 0.0 -s0 'host 10.1.1.1 and (port 80 or 443) and src net 10.0.0.0/8'