- Timestamp:
- 04/23/10 11:34:08 (12 years ago)
- Branches:
- 4.0.1-hotfixes, cachetimestamps, develop, dpdk-ndag, etsilive, getfragoff, help, libtrace4, master, ndag_format, pfring, rc-4.0.1, rc-4.0.2, rc-4.0.3, rc-4.0.4, ringdecrementfix, ringperformance, ringtimestampfixes
- Children:
- 83a1f4e
- Parents:
- db9fa93
- Location:
- tools
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/traceanon/traceanon.1
r1481ba7 rba91618 8 8 [ \-p prefix | \-\^\-prefix=prefix ] 9 9 [ \-c key | \-\^\-cryptopan=key ] 10 [ \-z level | \-\^\-compress-level=level ] 11 [ \-Z method | \-\^\-compress-type=method ] 10 12 sourceuri 11 13 desturi … … 51 53 encrypt the IP addresses using the prefix-preserving cryptopan method using 52 54 the key "key". The key can be up to 32 bytes long, and will be padded with 53 NUL charactors.55 NULL characters. 54 56 57 .TP 58 .PD 0 59 .BI \-z 60 .TP 61 .PD 62 .BI \-\^\-compress-level=level 63 compress the output trace using a compression level of "level". Compression 64 level can range from 0 (no compression) through to 9. Higher compression levels 65 require more CPU to compress data. Defaults to no compression. 66 67 .TP 68 .PD 0 69 .BI \-Z 70 .TP 71 .PD 72 .BI \-\^\-compress-type=method 73 compress the output trace using the compression algorithm "method". Possible 74 algorithms are "gzip", "bzip2", "lzo" and "none". Default is "none". 55 75 56 76 .SH EXAMPLES … … 59 79 \-\^\-encrypt-source \\ 60 80 \-\^\-encrypt-dest \\ 81 \-\^\-compress-level=1 \\ 82 \-\^\-compress-type=gzip \\ 61 83 erf:/traces/unenc.gz \\ 62 84 erf:/traces/enc.gz \\ -
tools/traceanon/traceanon.c
rdb9fa93 rba91618 22 22 "-p --prefix=C.I.D.R/bits Substitute the prefix of the address\n" 23 23 "-H --libtrace-help Print libtrace runtime documentation\n" 24 "-z --compress ion-level Compress the output trace at the specified level\n"25 "-Z --compress ion-type Compress the output trace using the specified"24 "-z --compress-level Compress the output trace at the specified level\n" 25 "-Z --compress-type Compress the output trace using the specified" 26 26 " compression algorithm\n" 27 27 ,argv0); … … 128 128 { "cryptopan", 1, 0, 'c' }, 129 129 { "prefix", 1, 0, 'p' }, 130 { "compress ion-level", 1, 0, 'z' },131 { "compress ion-type", 1, 0, 'Z' },130 { "compress-level", 1, 0, 'z' }, 131 { "compress-type", 1, 0, 'Z' }, 132 132 { "libtrace-help", 0, 0, 'H' }, 133 133 { NULL, 0, 0, 0 }, -
tools/tracemerge/tracemerge.1
r1481ba7 rba91618 5 5 .B tracemerge 6 6 [ \-i [ interfaces_per_input ] | \-\^\-set-interface [ interfaces_per_input ] ] 7 [ \-u | \-\^\-unique-packets ] 7 [ \-u | \-\^\-unique-packets ] [ \-z | \-\^\-compress-level <level> ] 8 [ \-Z | \-\^\-compress-type <method> ] 8 9 outputuri inputuri... 9 10 .SH DESCRPTION … … 37 38 .TP 38 39 .PD 0 39 .BI \-z [ compression_level ]40 .BI \-z level 40 41 .TP 41 42 .PD 42 .BI \-\^\-compression [ compression_level ] 43 Sets the amount of compression performed on the output file. Currently libtrace will always write 44 out compressed files, even when -z0 is given. 43 .BI \-\^\-compress-level level 44 Sets the amount of compression performed on the output file. This value can 45 range from 0 (no compression) to 9 (maximum compression). Higher compression 46 levels require more CPU to compress data. Defaults to 0. 47 48 .TP 49 .PD 0 50 .BI \-Z method 51 .TP 52 .PD 53 .BI \-\^\-compress-type method 54 Describes the compression algorithm to be used when writing the output trace. 55 Possible methods are "gzip", "bzip2", "lzo" and "none". Defaults to "none". 56 45 57 46 58 .SH LINKS -
tools/tracemerge/tracemerge.c
rdb9fa93 rba91618 16 16 " read from the original traces, if appropriate\n" 17 17 "-u --unique-packets Discard duplicate packets\n" 18 "-z level --compress ionlevel\n"18 "-z level --compress-level level\n" 19 19 " Compression level\n" 20 "-Z method --compress ion-type method\n"20 "-Z method --compress-type method\n" 21 21 " Compression method\n" 22 22 "-H --libtrace-help Print libtrace runtime documentation\n" … … 54 54 { "unique-packets", 0, 0, 'u' }, 55 55 { "libtrace-help", 0, 0, 'H' }, 56 { "compress ion", 1, 0, 'z' },57 { "compress ion-type", 1, 0, 'Z' },56 { "compress-level", 1, 0, 'z' }, 57 { "compress-type", 1, 0, 'Z' }, 58 58 { NULL, 0, 0, 0 }, 59 59 }; -
tools/tracesplit/tracesplit.1
rbfe8535 rba91618 12 12 [ \fB-m \fRmaxfiles | \fB--maxfiles=\fRmaxfiles] 13 13 [ \fB-S \fRsnaplen | \fB--snaplen=\fRsnaplen] 14 [ \fB-z \fRlevel | \fB--compress =\fRlevel]14 [ \fB-z \fRlevel | \fB--compress-level=\fRlevel] 15 15 [ \fB-Z \fRmethod | \fB--compress-type=\fRmethod] 16 16 inputuri outputuri ... -
tools/tracesplit/tracesplit.c
r6374f4e rba91618 41 41 "-S --snaplen Snap packets at the specified length\n" 42 42 "-v --verbose Output statistics\n" 43 "-z --compress 43 "-z --compress-level Set compression level\n" 44 44 "-Z --compress-type Set compression type\n" 45 45 ,argv0); … … 99 99 { "snaplen", 1, 0, 'S' }, 100 100 { "verbose", 0, 0, 'v' }, 101 { "compress ",1, 0, 'z' },101 { "compress-level", 1, 0, 'z' }, 102 102 { "compress-type", 1, 0, 'Z' }, 103 103 { NULL, 0, 0, 0 },
Note: See TracChangeset
for help on using the changeset viewer.