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:
Justin Azoff 2017-09-20 15:31:06 -04:00
parent 8403fd9f94
commit bbcf95dca4

View file

@ -4409,7 +4409,7 @@ export {
module Pcap; module Pcap;
export { export {
## Number of bytes per packet to capture from live interfaces. ## 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 ## Number of Mbytes to provide as buffer space when capturing from live
## interfaces. ## interfaces.