automation-suite
2023.10
false
重要 :
このコンテンツの一部は機械翻訳によって処理されており、完全な翻訳を保証するものではありません。
UiPath logo, featuring letters U and I in white
Linux の Automation Suite のインストール ガイド
Last updated 2024年11月21日

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

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

  1. 次のコマンドを実行して、TX チェックサム オフロードを無効化します。
    • サーバー マシンの場合

      cat <<EOF | sudo tee /etc/systemd/system/disable-checksum.service
      [Unit]
      Description=Disable TX Checksum Offload
      Before=rke2-server.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-server.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
    • エージェント マシンの場合:

      cat <<EOF | sudo tee /etc/systemd/system/disable-checksum.service
      [Unit]
      Description=Disable TX Checksum Offload
      Before=rke2-agent.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-agent.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. 「ノードの起動とシャットダウン」で説明されている手順に従って、影響を受けるインスタンスを再起動します。

このページは役に立ちましたか?

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