tcpdump selective acknowledgements question

Posted by wlaus on Server Fault See other posts from Server Fault or by wlaus
Published on 2011-03-02T03:20:23Z Indexed on 2011/03/02 7:26 UTC
Read the original article Hit count: 469

Filed under:

Hi All,

I eventually sometimes watch most initial tcp connection attempts like this:

tcpdump -nn -Z somepcapuser not src host (12x.x5.109.xxx or 62.75.160.xxx ) and not (port 9001 or 443 or 8080 ) and tcp[tcpflags]&(tcp-syn) !=0 and not tcp[tcpflags]& (tcp-ack) !=0 or icmp

this works pretty well to quickly identify oddness so far. However, I now have a question on the following output:

03:53:52.227884 IP 203.81.166.20.53786 > 62.75.160.xxx.80: S 846930886:846930886(0) win 61690 "<"mss 1460,nop,nop,sackOK,opt-178:f04700000000,nop,wscale 4">"

I wonder what the marked portion means, haven't seen that before.

Thanks for help wlaus

© Server Fault or respective owner

Related posts about networking