timestamp 时间戳问题处理

Linux 处理

执行命令

sysctl -w net.ipv4.tcp_timestamps=0

sysctl -p

修改 sysctl.conf 配置文件:追加 net.ipv4.tcp_timestamps=0

-------------------------------

Windows 处理

在CMD中以管理员身份执行命令

netsh int tcp set global timestamps=disabled

netsh firewall set icmpsetting 13 disable

netsh advfirewall firewall add rule name="Block Type 13 ICMP V4" protocol=icmpv4:13,any dir=in action=block

https://support.microsoft.com/en-us/help/947709/how-to-use-the-netsh-advfirewall-firewall-context-instead-of-the-netsh

你可能感兴趣的:(timestamp 时间戳问题处理)