Post

One liner to disable TCP timestamps

This has not been tested on all linux operating systems use at your own risk.

1
grep -q "net.ipv4.tcp_timestamps" /etc/sysctl.conf && echo "net.ipv4.tcp_timestamps = 0" >> /etc/sysctl.conf && sysctl -p || echo "Stopping \"net.ipv4.tcp_timestamps\" is already in file"
This post is licensed under CC BY 4.0 by the author.