To display content of pcap
file , we use :
tcpdump -r /Path/to/syscontection.pcap;
However, this command line does not follow the pcap file on realtime , like tail -f
which follows a plain text .
- Is there an option with
tcpdump
which acts like-f
oftail
?
OR
- Is there an option with
tail
that can readpcap
file?
OR
- Something else ?
I also recommend checking the man page before asking a question, it might save you some time.
– Hatclock Sep 19 '16 at 14:30