Results 1 to 5 of 5
Hi everyone.
Recently i was monitoring my home`s traffic with tcpdump. I did this by
executing the command:
Code:
$tcpdump -i eth0 > tcpdumpLog.txt
Unfortunately I realized my big mistake ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 09-12-2011 #1Just Joined!
- Join Date
- Sep 2011
- Posts
- 4
Converting tcpdump txt file to .log
Hi everyone.
Recently i was monitoring my home`s traffic with tcpdump. I did this by
executing the command:
Unfortunately I realized my big mistake when i tried to open that file withCode:$tcpdump -i eth0 > tcpdumpLog.txt
Wireshark..well..i couldn't open the file.
Generally my txt file is not recognized by any application that could help
me analyze that capture.
Is there any way to convert my tcpdumpLog.txt file to tcpdumpLog.log
file format?
Thanks in advance
Best Regards
- 09-12-2011 #2
That output is only the human readable version and additionally only an overview.
For analysis via wireshark, you might want to capture the network traffic again with something like:
Of course, you will want to add some filters to reflect your usecase better.Code:tcpdump -s0 -w <DUMPFILE>
You must always face the curtain with a bow.
- 09-12-2011 #3Just Joined!
- Join Date
- Sep 2011
- Posts
- 4
Hi Irithori
Thanks a lot for your quick respond.
I am interesting on analyzing the traffic from my first capture. So i am desperate to find a way to convert the txt file to an ".log" file format.
Any ideas?
thanks again
- 09-12-2011 #4
As I said, this output lacks information.
A conversion cannot add information, so you are SOL here.
If you cannot repeat the capture, then your best chance is to filter the log file you have with egrep for what you want to see.You must always face the curtain with a bow.
- 09-12-2011 #5Just Joined!
- Join Date
- Sep 2011
- Posts
- 4
I hear you clear
Will try and do that
Thanks


Reply With Quote
