web-dev-qa-db-ja.com

tcpdump:snaplenを0に設定しても、「キャプチャ中はパケットサイズが制限されます」が表示されますか?

this の問題のため、MySQLサーバーバックエンドでいくつかのパケットをスニッフィングして、何が起こるかを確認します。

# tcpdump -vv -s0 -c 100 -i bond0 tcp port 3306 and Host 192.168.3.87 -w /home/quanta/3.87_aborted.pcap

ご覧のように、snaplenを0に設定しましたが、それでもメッセージ"キャプチャ中のパケットサイズ制限"が表示されます。

MySQL Protocol
    Packet Length: 579
    Packet Number: 96
    text: 336
    text: 1004352
    text: 147619
    text: 336
[Packet size limited during capture: MySQL truncated]

インターフェイスのオフロード設定:

# ethtool -k bond0
Offload parameters for bond0:
Cannot get device rx csum settings: Operation not supported
rx-checksumming: off
tx-checksumming: on
scatter-gather: on
tcp segmentation offload: on
udp fragmentation offload: off
generic segmentation offload: off
generic-receive-offload: off

/proc/net/bonding/bond0

Ethernet Channel Bonding Driver: v3.4.0-1 (October 7, 2008)

Bonding Mode: adaptive load balancing
Primary Slave: None
Currently Active Slave: eth1
MII Status: up
MII Polling Interval (ms): 100
Up Delay (ms): 0
Down Delay (ms): 0

Slave Interface: eth1
MII Status: up
Speed: 1000 Mbps
Duplex: full
Link Failure Count: 0
Permanent HW addr: 00:30:48:c3:20:be

@ HeatfanJohnに返信:

# ethtool -k eth1
Offload parameters for eth1:
Cannot get device udp large send offload settings: Operation not supported
rx-checksumming: on
tx-checksumming: on
scatter-gather: on
tcp segmentation offload: on
udp fragmentation offload: off
generic segmentation offload: off
generic-receive-offload: on

@ Doonへの返信:

bond0     UP BROADCAST RUNNING MASTER MULTICAST  MTU:1500  Metric:1

-s 1500でスニッフィングすると、次の情報も表示されます。

 41  11.371783  192.168.6.7 -> 192.168.3.87 MySQL Response OK
 42  11.371974 192.168.3.87 -> 192.168.6.7  MySQL Request Ping
 43  11.371996  192.168.6.7 -> 192.168.3.87 MySQL Response OK
 44  11.378562 192.168.3.87 -> 192.168.6.7  MySQL Request Query
 45  11.379604  192.168.6.7 -> 192.168.3.87 MySQL Response
 46  11.402431 192.168.3.87 -> 192.168.6.7  MySQL Request Query
 47  11.402992  192.168.6.7 -> 192.168.3.87 MySQL Response[Packet size limited during capture]
7
quanta

ここでは、正しい表現で回答形式になっています:)セグメンテーションオフロードを無効にしてこれを試してみます。これを有効にすると、tcpdumpが期待どおりの結果を取得できない可能性が非常に高くなります。

-マット

1
mcauth

TCPオフロードについての私が完全に準拠するオフロード: http://www.linuxfoundation.org/collaborate/workgroups/networking/toe

1
Michuelnik