Automation Suite
2023.10
Linux の Automation Suite のインストール ガイド
Last updated 2024年6月28日

TXチェックサムオフロードを無効にする方法

ネットワーク カードのチェックサム オフロードを行うと、VMware インスタンスや Cilium など、一部の設定で問題が発生する可能性があります。 このような問題が発生した場合は、次の手順を実行します。

  1. 次のコマンドを実行して、TX チェックサム オフロードを無効化します。
    cat <<EOF | sudo tee /etc/systemd/system/disable-checksum.service
    [Unit]
    Description=Disable TX Checksum Offload
    Before=rke2-service.service
    Wants=network-online.target
    After=network-online.target
    
    [Service]
    Type=oneshot
    ExecStart=/bin/bash -c "INTERFACE=$(awk '$2 == 00000000 { print $1; exit }' /proc/net/route); ethtool -K $INTERFACE tx-checksum-ip-generic off || ethtool -K cilium_host tx-checksum-ip-generic off || true"
    RemainAfterExit=true
    
    [Install]
    WantedBy=multi-user.target
    EOF
    sudo systemctl enable disable-checksumcat <<EOF | sudo tee /etc/systemd/system/disable-checksum.service
    [Unit]
    Description=Disable TX Checksum Offload
    Before=rke2-service.service
    Wants=network-online.target
    After=network-online.target
    
    [Service]
    Type=oneshot
    ExecStart=/bin/bash -c "INTERFACE=$(awk '$2 == 00000000 { print $1; exit }' /proc/net/route); ethtool -K $INTERFACE tx-checksum-ip-generic off || ethtool -K cilium_host tx-checksum-ip-generic off || true"
    RemainAfterExit=true
    
    [Install]
    WantedBy=multi-user.target
    EOF
    sudo systemctl enable disable-checksum
  2. 「ノードの起動とシャットダウン」で説明されている手順に従って、影響を受けるインスタンスを再起動します。

Was this page helpful?

サポートを受ける
RPA について学ぶ - オートメーション コース
UiPath コミュニティ フォーラム
UiPath ロゴ (白)
信頼とセキュリティ
© 2005-2024 UiPath. All rights reserved.