Ethereal-users: Re: [Ethereal-users] Can Ethereal export in CSV format

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: "Ronnie Sahlberg" <ronnie_sahlberg@xxxxxxxxxxxxxx>
Date: Tue, 20 Jul 2004 22:49:35 +1000
Already possible using tethereal + cygwin

use tethereal and -z proto,colinfo,... an place whatever fields you want on
the summary line,  then feed through
a grep/sed pipeline to CSVify the data.


----- Original Message ----- 
From: "Dirk"
Sent: Sunday, June 20, 2004 9:09 PM
Subject: RE: [Ethereal-users] Can Ethereal export in CSV format


> Hi,
> This is how Sniffer does the export, and that would suffice.
>
> "Flags","Frame","Delta Time","Size","Destination","Source", "Protocol",
> "Summary"
> "M", 3284, 0.000 , 446,"Server","Client","TCP","D=1521 S=2130 ACK=...."
> " ", 3285, 0.002 , 94,"Client","Server","TCP","D=2130 S=1521 ACK=...."
> " ", 3286, 0.000 , 89,"Server","Client","TCP","D=1521 S=2130 ACK=...."
> " ", 3287, 0.010 , 605,"Client","Server","TCP","D=2130 S=1521 ACK=...."
> " ", 3288, 0.002 , 299,"Server","Client","TCP","D=1521 S=2130 ACK=...."
> " ", 3289, 0.001 , 91,"Client","Server","TCP","D=2130 S=1521 ACK=...."
> " ", 3290, 0.000 , 82,"Server","Client","TCP","D=1521 S=2130 ACK=...."
> " ", 3291, 0.003 , 155,"Client","Server","TCP","D=2130 S=1521 ACK=...."
> " ", 3292, 0.001 , 75,"Server","Client","TCP","D=1521 S=2130 ACK=...."
> " ", 3293, 0.001 , 73,"Client","Server","TCP","D=2130 S=1521 ACK=...."
> " ", 3294, 0.002 , 446,"Server","Client","TCP","D=1521 S=2130 ACK=...."
>
> Better still would be the addition of a few more columns to break out the
> summary field and have Sequence numbers and Ack numbers as well as source
> and destination ports in seperate columns.
>
> Regards