Skip to content

Instantly share code, notes, and snippets.

@alain-odea-vgh
alain-odea-vgh / RFC_1323.txt
Created October 14, 2015 21:24
RFC 1323 as a gist so I can highlight things.
[Docs] [txt|pdf] [draft-ietf-tcplw-...] [Diff1] [Diff2] [Errata]
Obsoleted by: 7323 PROPOSED STANDARD
Errata Exist
Network Working Group V. Jacobson
Request for Comments: 1323 LBL
Obsoletes: RFC 1072, RFC 1185 R. Braden
ISI
D. Borman
Cray Research
@alain-odea-vgh
alain-odea-vgh / whos_turning_on_tstamp.d
Last active October 15, 2015 02:53
Using DTrace on SmartOS to find who's turning on TCP timestamping globally (and breaking Windows keep-alive)
#!/usr/sbin/dtrace -s
fbt:ip:mod_set_boolean:entry
/stringof(args[2]->mpi_name) == "_tstamp_if_wscale" &&
stringof(args[4]) == "1"/
{
printf("timestamping enabled using %s in VM UUID %s", execname, zonename);
}