现场还原
客户有n台redhat虚拟机,构建了一个swarm集群,服务起来后,发现不同节点间的服务,无法互相访问。经运维大佬排查是服务器的checksum校验是开启状态,关闭即可~
查看checksum状态
ethtool -k 内网网卡名称 | grep checksum
rx-checksumming: on
tx-checksumming: on # 当前为 on 关闭后为 off
tx-checksum-ipv4: off [fixed]
tx-checksum-ip-generic: on # 当前为 on 关闭后为 off
tx-checksum-ipv6: off [fixed]
tx-checksum-fcoe-crc: off [fixed]
tx-checksum-sctp: off [fixed]
临时关闭
ethtool -K 内网网卡名称 tx-checksum-ip-generic off
设置开机自动关闭(永久关闭)
vim /etc/systemd/system/docker-tx-checksum-off.service
填充以下内容[可以直接将提供的文件,复制到 /etc/systemd/system/ 下]
[Unit]
Description=Turn off checksum offload on eth0
After=network-online.target # 备注①
[Install]
WantedBy=network-online.target # 备注②
[Service]
Type=oneshot
ExecStart=/sbin/ethtool -K eth0 tx-checksum-ip-generic off
备注:上面的 备注① 和备注② 很重要,是这个脚本的开机启动顺序,如果配置的比network-online早,则该脚本先执行,就没意义了~文章来源:https://www.toymoban.com/news/detail-793824.html
开机自启动,并启动服务
systemctl enable docker-tx-checksum-off.service
systemctl start docker-tx-checksum-off.service文章来源地址https://www.toymoban.com/news/detail-793824.html
到了这里,关于swarm节点间通信问题-关闭checksum校验和的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!