TCPDump: Difference between revisions

Line 182:
 
*List interesting traffic from all the PCAP files:
<syntaxhighlight lang='bash'>
<pre style="width: 2000px; overflow-x: scroll;">
for i in `find . -type f | egrep "All.pcap"`; do echo $i; tcpdump -r $i '((host 1.1.1.1 or host 2.2.2.2) and host 3.3.3.3) and port 445' ; echo -e "\n"; done
</syntaxhighlight>
</pre>
 
<br />