The Official Wireshark Blog

Wireshark’s Welcome Screen

by Gerald Combs

Categories: Tip

Wireshark 1.2 added a nifty welcome screen which lets you start capturing, load a capture file, get help, and lots of other things. At the very top of the screen we brag about our popularity.

You can change that message to anything you like.

🔗

More Shark Pictures

by Gerald Combs

Categories: Pictures
Wireshark power user Joan Snelders sent in a couple of shark pictures: Shark candy More shark candy Thanks, Joan! Comments 🔗Comment by Ro on 2009-10-18 07:16:26 +0000 🔗– Hey fellows, Attached is the link of another great shark user ! http://www.flickr.com/photos/43707902@N04/sets/72157622485731109/ -R PS : Feel free to put photos on the site

Filtering DSCP

by Gerald Combs

Categories: Protocols Tip

The second byte in the IPv4 header (aka “those bits you’ve probably never, ever looked at”) is used for Differentiated Services, or DiffServ. It’s split into two parts: the 6 most significant bits define the DSCP (differentiated services code point) and the two least significant bits are for ECN (explicit congestion notification). You can use DSCP to divide your traffic into different classes. For example, Asterisk might use the following DiffServ value, which corresponds EF (Expedited Forwarding):

DSCP  ECN
10111000

If your networking equipment is sufficiently aware, this traffic will receive preferential treatment.

You can filter these values pretty easily using the ip.dsfield.dscp display filter — just right-click on the DSCP field in the packet like so:

Applying a DSCP display filter

Applying a DSCP display filter

What if you need to use DSCP in a capture filter?