Differences between revisions 2 and 3
Revision 2 as of 2010-09-24 21:10:54
Size: 396
Editor: PieterSmit
Comment:
Revision 3 as of 2010-09-24 21:11:25
Size: 418
Editor: PieterSmit
Comment:
Deletions are marked like this. Additions are marked like this.
Line 11: Line 11:
     1. Take 101110 and shift it left two bits: 10111000      1. Take 101110 and shift it left two bits: 10111000 (ECN is right 2 bits)

DSCP Diffserve code point

  • Priority markings on IP traffic.
  • How to match with tcpdump ?
    • for EF
      1. Take 101110 and shift it left two bits: 10111000 (ECN is right 2 bits)
      2. Convert it to hex: 0xb8
      3. Create a filter, masking out the ECN bits:
        • ip[1] & 0xfc == 0xb8

...

dscp (last edited 2010-09-24 21:11:25 by PieterSmit)