Changes between Version 3 and Version 4 of TraceSplit
- Timestamp:
- 07/28/10 13:51:46 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TraceSplit
v3 v4 2 2 3 3 === Usage === 4 {{{ tracesplit [ -f exp | --filter=exp ] [ -c num | --count=num ] [ -b num | --bytes=num ] [ -i secs | --interval=secs ] }}} 5 {{{ [ -s unixtime | --starttime=unixtime ] [ -e unixtime | --endtime=unixtime ] [ -m files | --maxfiles=files] inputuri outputuri }}} 4 {{{ 5 tracesplit 6 [ -f exp | --filter=exp ] 7 [ -c num | --count=num ] 8 [ -b num | --bytes=num ] 9 [ -i secs | --interval=secs ] 10 [ -s unixtime | --starttime=unixtime ] 11 [ -e unixtime | --endtime=unixtime ] 12 [ -m files | --maxfiles=files ] 13 [ -S snaplen | --snaplen=snaplen ] 14 [ -z level | --compress-level=level ] 15 [ -Z method | --compress-type=method ] 16 inputuri outputuri 17 }}} 6 18 7 19 === Options === … … 20 32 {{{-m, --maxfiles}}}:: 21 33 Do not create more than __files__ trace files 34 {{{-S, --snaplen}}}:: 35 Truncate packets to __snaplen__ bytes long. The default is to perform no truncation at all. 36 {{{-z, --compress-level}}}:: 37 Compress the output trace using the specified compression level, ranging from 0 (no compression) to 9. Higher compression levels require more CPU to compress data. Defaults to no compression. 38 {{{-Z, --compress-type}}}:: 39 Compress the output trace using the specified compression method. Possible methods are "gzip", "bzip2", "lzo" or "none". The default is "none". 22 40 23 41 === Applications === … … 33 51 34 52 === Notes === 35 * As {{{tracesplit}}} is capable of producing multiple output files, the output URI is used as the base of the output filename. Appended istimestamp of the first packet in the subtrace.53 * If {{{tracesplit}}} produces multiple output files, the output URI is used as the base of the output filename. Appended is the timestamp of the first packet in the subtrace.