SlideShare a Scribd company logo
1 of 12
Tsharks output formats December 2008
Welcome Back! ,[object Object],[object Object]
This months topic ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Add output of protocol tree ,[object Object],[object Object],[object Object],[object Object],$ tshark -r client.cap -R http.request | wc 1  9  66 $ tshark -r client.cap -R http.request -V | wc 78  399  3331
Example of output with -V $ tshark -r client.cap -R http.request -V Frame 4 (160 bytes on wire, 160 bytes captured) Arrival Time: Sep 23, 2008 22:31:59.249141000 [Time delta from previous captured frame: 0.000589000 seconds] [Time delta from previous displayed frame: 0.002689000 seconds] [Time since reference or first frame: 0.002689000 seconds] Frame Number: 4 Frame Length: 160 bytes Capture Length: 160 bytes [Frame is marked: False] [Protocols in frame: eth:ip:tcp:http] Ethernet II, Src: IntelCor_61:3a:ad (00:1c:bf:61:3a:ad), Dst: JuniperN_bb:d1:3b (00:12:1e:bb:d1:3b) Destination: JuniperN_bb:d1:3b (00:12:1e:bb:d1:3b) Address: JuniperN_bb:d1:3b (00:12:1e:bb:d1:3b) .... ...0 .... .... .... .... = IG bit: Individual address (unicast) .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default) Source: IntelCor_61:3a:ad (00:1c:bf:61:3a:ad) Address: IntelCor_61:3a:ad (00:1c:bf:61:3a:ad) .... ...0 .... .... .... .... = IG bit: Individual address (unicast) .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default) Type: IP (0x0800) Internet Protocol, Src: 192.168.1.46 (192.168.1.46), Dst: 192.168.1.20 (192.168.1.20) Version: 4 Header length: 20 bytes Differentiated Services Field: 0x00 (DSCP 0x00: Default; ECN: 0x00) 0000 00.. = Differentiated Services Codepoint: Default (0x00) .... ..0. = ECN-Capable Transport (ECT): 0 .... ...0 = ECN-CE: 0 Total Length: 146 Identification: 0x588c (22668) Flags: 0x04 (Don't Fragment) [ rest of output omitted ]
Add output of hex and ASCII dump ,[object Object],[object Object],$ tshark -r client.cap -R http.request 4  0.002689 192.168.1.46 -> 192.168.1.20 HTTP GET / HTTP/1.0  $ tshark -r client.cap -R http.request -x 4  0.002689 192.168.1.46 -> 192.168.1.20 HTTP GET / HTTP/1.0  0000  00 12 1e bb d1 3b 00 1c bf 61 3a ad 08 00 45 00  .....;...a:...E. 0010  00 92 58 8c 40 00 80 06 1e 47 c0 a8 01 2e c0 a8  [email_address] 0020  01 14 a9 a2 00 50 9f e7 2d 1b ec 3b 0e 47 50 18  .....P..-..;.GP. 0030  fa 00 7d 5b 00 00 47 45 54 20 2f 20 48 54 54 50  ..}[..GET / HTTP 0040  2f 31 2e 30 0d 0a 55 73 65 72 2d 41 67 65 6e 74  /1.0..User-Agent 0050  3a 20 57 67 65 74 2f 31 2e 31 31 2e 33 0d 0a 41  : Wget/1.11.3..A 0060  63 63 65 70 74 3a 20 2a 2f 2a 0d 0a 48 6f 73 74  ccept: */*..Host 0070  3a 20 62 72 75 74 75 73 2e 6e 65 74 63 63 2e 6c  : brutus.netcc.l 0080  6f 63 61 6c 0d 0a 43 6f 6e 6e 65 63 74 69 6f 6e  ocal..Connection 0090  3a 20 4b 65 65 70 2d 41 6c 69 76 65 0d 0a 0d 0a  : Keep-Alive.... $
Use fields of your choice as output ,[object Object],[object Object],[object Object],[object Object]
Example of output with -T fields $ tshark -r client.cap  -R "tcp.len>0" -T fields -e frame.time_relative -e ip.src -e ip.dst -e tcp.len 0.002689000  192.168.1.46  192.168.1.20  106 0.024024000  192.168.1.20  192.168.1.46  375 $ $ tshark -r client.cap -R http.response -T fields -E header=y -e frame.time -e http.response.code -e http.content_length frame.time  http.response.code  http.content_length Sep 23, 2008 22:31:59.270476000 200  45 $ $ tshark -r client.cap -R http.response -T fields -E header=y -E separator=',' -E quote=d -e frame.time_relative -e http.response.code -e http.content_length frame.time_relative,http.response.code,http.content_length "0.024024000","200","45" $
Use XML output format ,[object Object],[object Object],[object Object],[object Object],$ tshark -r client.cap -R http.request | wc 1  9  66 $ tshark -r client.cap -R http.request -V | wc 78  399  3331 $ tshark -r client.cap -R http.request -T pdml | wc 116  1042  12074 $
Example of output with -T pdml $ tshark -r client.cap -R http.request -T pdml <?xml version=&quot;1.0&quot;?> <pdml version=&quot;0&quot; creator=&quot;wireshark/1.1.2-SVN-26732&quot;> <packet> <proto name=&quot;geninfo&quot; pos=&quot;0&quot; showname=&quot;General information&quot; size=&quot;160&quot;> <field name=&quot;num&quot; pos=&quot;0&quot; show=&quot;4&quot; showname=&quot;Number&quot; value=&quot;4&quot; size=&quot;160&quot;/> <field name=&quot;len&quot; pos=&quot;0&quot; show=&quot;160&quot; showname=&quot;Packet Length&quot; value=&quot;a0&quot; size=&quot;160&quot;/> <field name=&quot;caplen&quot; pos=&quot;0&quot; show=&quot;160&quot; showname=&quot;Captured Length&quot; value=&quot;a0&quot; size=&quot;160&quot;/> <field name=&quot;timestamp&quot; pos=&quot;0&quot; show=&quot;Sep 23, 2008 22:31:59.249141000&quot; showname=&quot;Captured Time&quot; value=&quot;1222201919.249141000&quot; size=&quot;160&quot;/> </proto> <proto name=&quot;frame&quot; showname=&quot;Frame 4 (160 bytes on wire, 160 bytes captured)&quot; size=&quot;160&quot; pos=&quot;0&quot;> <field name=&quot;frame.time&quot; showname=&quot;Arrival Time: Sep 23, 2008 22:31:59.249141000&quot; size=&quot;0&quot; pos=&quot;0&quot; show=&quot;Sep 23, 2008 22:31:59.249141000&quot;/> <field name=&quot;frame.time_delta&quot; showname=&quot;Time delta from previous captured frame: 0.000589000 seconds&quot; size=&quot;0&quot; pos=&quot;0&quot; show=&quot;0.000589000&quot;/> <field name=&quot;frame.time_delta_displayed&quot; showname=&quot;Time delta from previous displayed frame: 0.002689000 seconds&quot; size=&quot;0&quot; pos=&quot;0&quot; show=&quot;0.002689000&quot;/> <field name=&quot;frame.time_relative&quot; showname=&quot;Time since reference or first frame: 0.002689000 seconds&quot; size=&quot;0&quot; pos=&quot;0&quot; show=&quot;0.002689000&quot;/> <field name=&quot;frame.number&quot; showname=&quot;Frame Number: 4&quot; size=&quot;0&quot; pos=&quot;0&quot; show=&quot;4&quot;/> <field name=&quot;frame.pkt_len&quot; showname=&quot;Packet Length: 160 bytes&quot; hide=&quot;yes&quot; size=&quot;0&quot; pos=&quot;0&quot; show=&quot;160&quot;/> <field name=&quot;frame.len&quot; showname=&quot;Frame Length: 160 bytes&quot; size=&quot;0&quot; pos=&quot;0&quot; show=&quot;160&quot;/> <field name=&quot;frame.cap_len&quot; showname=&quot;Capture Length: 160 bytes&quot; size=&quot;0&quot; pos=&quot;0&quot; show=&quot;160&quot;/> <field name=&quot;frame.marked&quot; showname=&quot;Frame is marked: False&quot; size=&quot;0&quot; pos=&quot;0&quot; show=&quot;0&quot;/> <field name=&quot;frame.protocols&quot; showname=&quot;Protocols in frame: eth:ip:tcp:http&quot; size=&quot;0&quot; pos=&quot;0&quot; show=&quot;eth:ip:tcp:http&quot;/> </proto> <proto name=&quot;eth&quot; showname=&quot;Ethernet II, Src: IntelCor_61:3a:ad (00:1c:bf:61:3a:ad), Dst: JuniperN_bb:d1:3b (00:12:1e:bb:d1:3b)&quot; size=&quot;14&quot; pos=&quot;0&quot;> [ rest of output omitted ]
That's all folks! ,[object Object],[object Object],[object Object],[object Object]
[object Object],[object Object]

More Related Content

Viewers also liked

Emergência médica na prática odontológica
Emergência médica na prática odontológicaEmergência médica na prática odontológica
Emergência médica na prática odontológica
Teófilo Rêgo
 
Lean Revista Mais Alto MAR2016 ENG
Lean Revista Mais Alto MAR2016 ENGLean Revista Mais Alto MAR2016 ENG
Lean Revista Mais Alto MAR2016 ENG
Pedro Salvada
 
Parasha nº 34 b´midbar en el desierto
Parasha nº  34 b´midbar en el desiertoParasha nº  34 b´midbar en el desierto
Parasha nº 34 b´midbar en el desierto
Horeb Israelita
 

Viewers also liked (12)

Feliz navidad para todos
Feliz navidad para todosFeliz navidad para todos
Feliz navidad para todos
 
Producto intermedio 6 pddm esquel
Producto intermedio 6 pddm esquelProducto intermedio 6 pddm esquel
Producto intermedio 6 pddm esquel
 
Emergência médica na prática odontológica
Emergência médica na prática odontológicaEmergência médica na prática odontológica
Emergência médica na prática odontológica
 
Lean Revista Mais Alto MAR2016 ENG
Lean Revista Mais Alto MAR2016 ENGLean Revista Mais Alto MAR2016 ENG
Lean Revista Mais Alto MAR2016 ENG
 
Tpn3 word
Tpn3 wordTpn3 word
Tpn3 word
 
Parasha nº 34 b´midbar en el desierto
Parasha nº  34 b´midbar en el desiertoParasha nº  34 b´midbar en el desierto
Parasha nº 34 b´midbar en el desierto
 
Plan de seguridad y salud
Plan de seguridad y saludPlan de seguridad y salud
Plan de seguridad y salud
 
La formación profesional en la especializacion inteligente de las regiones
La formación profesional en la especializacion inteligente de las regionesLa formación profesional en la especializacion inteligente de las regiones
La formación profesional en la especializacion inteligente de las regiones
 
Mi practica I "Vocación"
Mi practica I "Vocación"Mi practica I "Vocación"
Mi practica I "Vocación"
 
RECODIFICACION COSMICA
RECODIFICACION COSMICARECODIFICACION COSMICA
RECODIFICACION COSMICA
 
Elektronische Zustellung
Elektronische ZustellungElektronische Zustellung
Elektronische Zustellung
 
A future history of content management
A future history of content managementA future history of content management
A future history of content management
 

More from Denny K

More from Denny K (20)

5:7:2024 - Fourth Noble Truth • Mindfulness Meditation and Dharma Talk with V...
5:7:2024 - Fourth Noble Truth • Mindfulness Meditation and Dharma Talk with V...5:7:2024 - Fourth Noble Truth • Mindfulness Meditation and Dharma Talk with V...
5:7:2024 - Fourth Noble Truth • Mindfulness Meditation and Dharma Talk with V...
 
4/30/2024「同心共善」善心法師網上禪修班 (粵語) ..........
4/30/2024「同心共善」善心法師網上禪修班 (粵語) ..........4/30/2024「同心共善」善心法師網上禪修班 (粵語) ..........
4/30/2024「同心共善」善心法師網上禪修班 (粵語) ..........
 
4/23/2024「同心共善」善心法師網上禪修班 (粵語) ……………………..
4/23/2024「同心共善」善心法師網上禪修班 (粵語) ……………………..4/23/2024「同心共善」善心法師網上禪修班 (粵語) ……………………..
4/23/2024「同心共善」善心法師網上禪修班 (粵語) ……………………..
 
4/16/2024「同心共善」善心法師網上禪修班 (粵語) ..........
4/16/2024「同心共善」善心法師網上禪修班 (粵語) ..........4/16/2024「同心共善」善心法師網上禪修班 (粵語) ..........
4/16/2024「同心共善」善心法師網上禪修班 (粵語) ..........
 
4/2/2024 - Fourth Noble Truth • Mindfulness Meditation and Dharma Talk with V...
4/2/2024 - Fourth Noble Truth • Mindfulness Meditation and Dharma Talk with V...4/2/2024 - Fourth Noble Truth • Mindfulness Meditation and Dharma Talk with V...
4/2/2024 - Fourth Noble Truth • Mindfulness Meditation and Dharma Talk with V...
 
3/26/2024「同心共善」善心法師網上禪修班 (粵語) ……………………..
3/26/2024「同心共善」善心法師網上禪修班 (粵語) ……………………..3/26/2024「同心共善」善心法師網上禪修班 (粵語) ……………………..
3/26/2024「同心共善」善心法師網上禪修班 (粵語) ……………………..
 
3/19/2024「同心共善」善心法師網上禪修班 (粵語) ……………………..
3/19/2024「同心共善」善心法師網上禪修班 (粵語) ……………………..3/19/2024「同心共善」善心法師網上禪修班 (粵語) ……………………..
3/19/2024「同心共善」善心法師網上禪修班 (粵語) ……………………..
 
3/12/2024「同心共善」善心法師網上禪修班 (粵語) ……………………..
3/12/2024「同心共善」善心法師網上禪修班 (粵語) ……………………..3/12/2024「同心共善」善心法師網上禪修班 (粵語) ……………………..
3/12/2024「同心共善」善心法師網上禪修班 (粵語) ……………………..
 
3:5:2024 - Third Noble Truth • Mindfulness Meditation and Dharma Talk with Ve...
3:5:2024 - Third Noble Truth • Mindfulness Meditation and Dharma Talk with Ve...3:5:2024 - Third Noble Truth • Mindfulness Meditation and Dharma Talk with Ve...
3:5:2024 - Third Noble Truth • Mindfulness Meditation and Dharma Talk with Ve...
 
2/27/2024「同心共善」善心法師網上禪修班 (粵語) ……………………..
2/27/2024「同心共善」善心法師網上禪修班 (粵語) ……………………..2/27/2024「同心共善」善心法師網上禪修班 (粵語) ……………………..
2/27/2024「同心共善」善心法師網上禪修班 (粵語) ……………………..
 
2/20/2024「同心共善」善心法師網上禪修班 (粵語) ..........
2/20/2024「同心共善」善心法師網上禪修班 (粵語) ..........2/20/2024「同心共善」善心法師網上禪修班 (粵語) ..........
2/20/2024「同心共善」善心法師網上禪修班 (粵語) ..........
 
2/13/2024「同心共善」善心法師網上禪修班 (粵語) ……………………..
2/13/2024「同心共善」善心法師網上禪修班 (粵語) ……………………..2/13/2024「同心共善」善心法師網上禪修班 (粵語) ……………………..
2/13/2024「同心共善」善心法師網上禪修班 (粵語) ……………………..
 
2/6/2023 - Second Noble Truth • Mindfulness Meditation and Dharma Talk with V...
2/6/2023 - Second Noble Truth • Mindfulness Meditation and Dharma Talk with V...2/6/2023 - Second Noble Truth • Mindfulness Meditation and Dharma Talk with V...
2/6/2023 - Second Noble Truth • Mindfulness Meditation and Dharma Talk with V...
 
1/30/2024「同心共善」善心法師網上禪修班 (粵語) ……………………..
1/30/2024「同心共善」善心法師網上禪修班 (粵語) ……………………..1/30/2024「同心共善」善心法師網上禪修班 (粵語) ……………………..
1/30/2024「同心共善」善心法師網上禪修班 (粵語) ……………………..
 
1/23/2024「同心共善」善心法師網上禪修班 (粵語) ..........
1/23/2024「同心共善」善心法師網上禪修班 (粵語) ..........1/23/2024「同心共善」善心法師網上禪修班 (粵語) ..........
1/23/2024「同心共善」善心法師網上禪修班 (粵語) ..........
 
1/16/2024「同心共善」善心法師網上禪修班 (粵語) ……………………..
1/16/2024「同心共善」善心法師網上禪修班 (粵語) ……………………..1/16/2024「同心共善」善心法師網上禪修班 (粵語) ……………………..
1/16/2024「同心共善」善心法師網上禪修班 (粵語) ……………………..
 
1/9/2024「同心共善」善心法師網上禪修班 (粵語) ………………………..
1/9/2024「同心共善」善心法師網上禪修班 (粵語) ………………………..1/9/2024「同心共善」善心法師網上禪修班 (粵語) ………………………..
1/9/2024「同心共善」善心法師網上禪修班 (粵語) ………………………..
 
1/2/2023 - Mindfulness Meditation and Dharma Talk with Venerable De Hong
1/2/2023 - Mindfulness Meditation and Dharma Talk with Venerable De Hong1/2/2023 - Mindfulness Meditation and Dharma Talk with Venerable De Hong
1/2/2023 - Mindfulness Meditation and Dharma Talk with Venerable De Hong
 
12/27/2023「同心共善」善心法師網上禪修班 (粵語) …………………..
12/27/2023「同心共善」善心法師網上禪修班 (粵語) …………………..12/27/2023「同心共善」善心法師網上禪修班 (粵語) …………………..
12/27/2023「同心共善」善心法師網上禪修班 (粵語) …………………..
 
12/20/2023「同心共善」善心法師網上禪修班 (粵語) …………………..
12/20/2023「同心共善」善心法師網上禪修班 (粵語) …………………..12/20/2023「同心共善」善心法師網上禪修班 (粵語) …………………..
12/20/2023「同心共善」善心法師網上禪修班 (粵語) …………………..
 

Recently uploaded

Recently uploaded (20)

HTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation StrategiesHTML Injection Attacks: Impact and Mitigation Strategies
HTML Injection Attacks: Impact and Mitigation Strategies
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 

OSTU - Sake Blok on TShark Output Formats

  • 1. Tsharks output formats December 2008
  • 2.
  • 3.
  • 4.
  • 5. Example of output with -V $ tshark -r client.cap -R http.request -V Frame 4 (160 bytes on wire, 160 bytes captured) Arrival Time: Sep 23, 2008 22:31:59.249141000 [Time delta from previous captured frame: 0.000589000 seconds] [Time delta from previous displayed frame: 0.002689000 seconds] [Time since reference or first frame: 0.002689000 seconds] Frame Number: 4 Frame Length: 160 bytes Capture Length: 160 bytes [Frame is marked: False] [Protocols in frame: eth:ip:tcp:http] Ethernet II, Src: IntelCor_61:3a:ad (00:1c:bf:61:3a:ad), Dst: JuniperN_bb:d1:3b (00:12:1e:bb:d1:3b) Destination: JuniperN_bb:d1:3b (00:12:1e:bb:d1:3b) Address: JuniperN_bb:d1:3b (00:12:1e:bb:d1:3b) .... ...0 .... .... .... .... = IG bit: Individual address (unicast) .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default) Source: IntelCor_61:3a:ad (00:1c:bf:61:3a:ad) Address: IntelCor_61:3a:ad (00:1c:bf:61:3a:ad) .... ...0 .... .... .... .... = IG bit: Individual address (unicast) .... ..0. .... .... .... .... = LG bit: Globally unique address (factory default) Type: IP (0x0800) Internet Protocol, Src: 192.168.1.46 (192.168.1.46), Dst: 192.168.1.20 (192.168.1.20) Version: 4 Header length: 20 bytes Differentiated Services Field: 0x00 (DSCP 0x00: Default; ECN: 0x00) 0000 00.. = Differentiated Services Codepoint: Default (0x00) .... ..0. = ECN-Capable Transport (ECT): 0 .... ...0 = ECN-CE: 0 Total Length: 146 Identification: 0x588c (22668) Flags: 0x04 (Don't Fragment) [ rest of output omitted ]
  • 6.
  • 7.
  • 8. Example of output with -T fields $ tshark -r client.cap -R &quot;tcp.len>0&quot; -T fields -e frame.time_relative -e ip.src -e ip.dst -e tcp.len 0.002689000 192.168.1.46 192.168.1.20 106 0.024024000 192.168.1.20 192.168.1.46 375 $ $ tshark -r client.cap -R http.response -T fields -E header=y -e frame.time -e http.response.code -e http.content_length frame.time http.response.code http.content_length Sep 23, 2008 22:31:59.270476000 200 45 $ $ tshark -r client.cap -R http.response -T fields -E header=y -E separator=',' -E quote=d -e frame.time_relative -e http.response.code -e http.content_length frame.time_relative,http.response.code,http.content_length &quot;0.024024000&quot;,&quot;200&quot;,&quot;45&quot; $
  • 9.
  • 10. Example of output with -T pdml $ tshark -r client.cap -R http.request -T pdml <?xml version=&quot;1.0&quot;?> <pdml version=&quot;0&quot; creator=&quot;wireshark/1.1.2-SVN-26732&quot;> <packet> <proto name=&quot;geninfo&quot; pos=&quot;0&quot; showname=&quot;General information&quot; size=&quot;160&quot;> <field name=&quot;num&quot; pos=&quot;0&quot; show=&quot;4&quot; showname=&quot;Number&quot; value=&quot;4&quot; size=&quot;160&quot;/> <field name=&quot;len&quot; pos=&quot;0&quot; show=&quot;160&quot; showname=&quot;Packet Length&quot; value=&quot;a0&quot; size=&quot;160&quot;/> <field name=&quot;caplen&quot; pos=&quot;0&quot; show=&quot;160&quot; showname=&quot;Captured Length&quot; value=&quot;a0&quot; size=&quot;160&quot;/> <field name=&quot;timestamp&quot; pos=&quot;0&quot; show=&quot;Sep 23, 2008 22:31:59.249141000&quot; showname=&quot;Captured Time&quot; value=&quot;1222201919.249141000&quot; size=&quot;160&quot;/> </proto> <proto name=&quot;frame&quot; showname=&quot;Frame 4 (160 bytes on wire, 160 bytes captured)&quot; size=&quot;160&quot; pos=&quot;0&quot;> <field name=&quot;frame.time&quot; showname=&quot;Arrival Time: Sep 23, 2008 22:31:59.249141000&quot; size=&quot;0&quot; pos=&quot;0&quot; show=&quot;Sep 23, 2008 22:31:59.249141000&quot;/> <field name=&quot;frame.time_delta&quot; showname=&quot;Time delta from previous captured frame: 0.000589000 seconds&quot; size=&quot;0&quot; pos=&quot;0&quot; show=&quot;0.000589000&quot;/> <field name=&quot;frame.time_delta_displayed&quot; showname=&quot;Time delta from previous displayed frame: 0.002689000 seconds&quot; size=&quot;0&quot; pos=&quot;0&quot; show=&quot;0.002689000&quot;/> <field name=&quot;frame.time_relative&quot; showname=&quot;Time since reference or first frame: 0.002689000 seconds&quot; size=&quot;0&quot; pos=&quot;0&quot; show=&quot;0.002689000&quot;/> <field name=&quot;frame.number&quot; showname=&quot;Frame Number: 4&quot; size=&quot;0&quot; pos=&quot;0&quot; show=&quot;4&quot;/> <field name=&quot;frame.pkt_len&quot; showname=&quot;Packet Length: 160 bytes&quot; hide=&quot;yes&quot; size=&quot;0&quot; pos=&quot;0&quot; show=&quot;160&quot;/> <field name=&quot;frame.len&quot; showname=&quot;Frame Length: 160 bytes&quot; size=&quot;0&quot; pos=&quot;0&quot; show=&quot;160&quot;/> <field name=&quot;frame.cap_len&quot; showname=&quot;Capture Length: 160 bytes&quot; size=&quot;0&quot; pos=&quot;0&quot; show=&quot;160&quot;/> <field name=&quot;frame.marked&quot; showname=&quot;Frame is marked: False&quot; size=&quot;0&quot; pos=&quot;0&quot; show=&quot;0&quot;/> <field name=&quot;frame.protocols&quot; showname=&quot;Protocols in frame: eth:ip:tcp:http&quot; size=&quot;0&quot; pos=&quot;0&quot; show=&quot;eth:ip:tcp:http&quot;/> </proto> <proto name=&quot;eth&quot; showname=&quot;Ethernet II, Src: IntelCor_61:3a:ad (00:1c:bf:61:3a:ad), Dst: JuniperN_bb:d1:3b (00:12:1e:bb:d1:3b)&quot; size=&quot;14&quot; pos=&quot;0&quot;> [ rest of output omitted ]
  • 11.
  • 12.