mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 09:08:20 +00:00
problem: default snaplen is too small for jumbo frames
Jumbo frames start at 9000 bytes and can be up to 9216 bytes
This commit is contained in:
parent
8403fd9f94
commit
bbcf95dca4
1 changed files with 1 additions and 1 deletions
|
@ -4409,7 +4409,7 @@ export {
|
|||
module Pcap;
|
||||
export {
|
||||
## Number of bytes per packet to capture from live interfaces.
|
||||
const snaplen = 8192 &redef;
|
||||
const snaplen = 9216 &redef;
|
||||
|
||||
## Number of Mbytes to provide as buffer space when capturing from live
|
||||
## interfaces.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue