由于某种原因,我想在 Linux 主机上禁用 TCP 校验和验证。可以禁用它吗?
答案1
您可以使用ethtool
命令示例禁用校验和卸载
ethtool -K eth0 tx off rx off
答案2
阅读 nft 手册页 - 您可以添加一条规则来告诉它禁用 tcp 校验和验证:-
nft 'add rule input_table input ip protocol tcp tcp checksum set 0'
由于某种原因,我想在 Linux 主机上禁用 TCP 校验和验证。可以禁用它吗?
您可以使用ethtool
命令示例禁用校验和卸载
ethtool -K eth0 tx off rx off
阅读 nft 手册页 - 您可以添加一条规则来告诉它禁用 tcp 校验和验证:-
nft 'add rule input_table input ip protocol tcp tcp checksum set 0'