Changes between Version 3 and Version 4 of TraceAnon
- Timestamp:
- 07/28/10 11:41:27 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TraceAnon
v3 v4 2 2 3 3 === Usage === 4 {{{traceanon [ -s | --encrypt-source ] [ -d | --encrypt-dest ] [ -p prefix | --prefix=prefix ] [ -c key | --cryptopan=key ] sourceuri desturi}}}4 {{{traceanon [ -s | --encrypt-source ] [ -d | --encrypt-dest ] [ -p prefix | --prefix=prefix ] [ -c key | --cryptopan=key ] [ -Z method | --compress-type=method ] [ -z level | --compress-level=level ] sourceuri desturi}}} 5 5 6 6 === Options === … … 13 13 {{{-c, --cryptopan}}}:: 14 14 Anonymise IPs using the cryptopan method using the provided key 15 {{{-z, --compress-level}}}:: 16 Compress the output trace using the given compression level. Compression level can range from 0 (no compression) through to 9. Higher compression levels require more CPU to compress data. Default is no compression. 17 {{{-Z, --compress-type}}}:: 18 Compress the output trace using the given compression algorithm. Options are "gzip", "bzip2", "lzo" or "none". Default is "none". 15 19 16 20 === Applications === 17 21 ==== Anonymising traces using cryptopan ==== 18 22 {{{ 19 traceanon - sd -c "I like bears" erf:unanonymised.erf.gz erf:anonymised.erf.gz23 traceanon -Z gzip -z 1 -sd -c "I like bears" erf:unanonymised.erf.gz erf:anonymised.erf.gz 20 24 }}} 21 25 22 26 ==== Anonymising traces using prefix substitution ==== 23 27 {{{ 24 traceanon - sd -p 192.168.0.0/16 erf:unanonymised.erf.gz erf:anonymised.erf.gz28 traceanon -Z gzip -z 1 -sd -p 192.168.0.0/16 erf:unanonymised.erf.gz erf:anonymised.erf.gz 25 29 }}} 26 30