systemd-networkdで分割オフロードを使用する方法は?

systemd-networkdで分割オフロードを使用する方法は?

ネットワークインタフェースを設定するには、systemd-networkdを使用してLinuxシステム(Debian 8.5、カーネル3.16.36-1 + deb8u2、64ビット)を設定しようとしています。段階的アンロードを無効にする必要があるため、リンクファイルを次のように設定しました。

# /etc/systemd/network/0-lan_user.link
[Match]
MACAddress=00:11:22:33:44:55
[Link]
Name=lan_user
TCPSegmentationOffload=false
GenericSegmentationOffload=false

しかし、適用されないようです。

ethtool -k lan_user | grep segmentation-offload
tcp-segmentation-offload: on
generic-segmentation-offload: on

何でもvmxnet3アダプタです(もちろんESXiから)。

私は何が間違っていましたか?

ベストアンサー1

Debian 8のsystemdバージョンは現在215(源泉)、しかし、各Offloadオプションは.linkバージョン232に追加されました。

UDP Segmentation Offload, TCP Segmentation Offload, Generic
Segmentation Offload, Generic Receive Offload, Large Receive Offload
can be enabled and disabled using the new UDPSegmentationOffload=,
TCPSegmentationOffload=, GenericSegmentationOffload=,
GenericReceiveOffload=, LargeReceiveOffload= options in the
[Link] section of .link files.

システム変更ログ)

おすすめ記事