回答:
Tcpdumpには、-B
キャプチャバッファサイズを設定するオプションがあります。次に、値はpcap_set_buffer_size()
関数を介してlibpcap(実際のパケットキャプチャを行うためにtcpdumpで使用されるライブラリ)に渡されます。Tcpdumpのマンページでは、-Bでバッファサイズを指定する単位を指定していませんが、ソースからはKiBのようです。
のマニュアルページでpcap_set_buffer_size()
はデフォルトのバッファサイズ(この関数が呼び出されない場合に使用されます)は指定されていませんが、libpcap sourceからは、少なくともLinuxでは2 MiBのようです(ただし、システムに依存している可能性が高い)。
パケットのバッファリングとドロップに関しては、-s
それに応じてsnaplen()パラメータを設定することにも注意する必要があります。man tcpdump
:
-s Snarf snaplen bytes of data from each packet rather than the
default of 65535 bytes. Packets truncated because of a limited snapshot
are indicated in the output with ``[|proto]'', where proto is the name of
the protocol level at which the truncation has occurred. Note that taking
larger snapshots both increases the amount of time it takes to
process packets and, effectively, decreases the amount of packet buffering.
This may cause packets to be lost. You should limit snaplen to the
smallest number that will capture the protocol information you're
interested in. Setting snaplen to 0 sets it to the default of 65535, for
back-wards compatibility with recent older versions of tcpdump.
これは、バッファサイズが固定されている場合、snaplenサイズを小さくすることで、バッファに収まる(したがってドロップされない)パケット数を増やすことができることを意味します。