diff options
author | lassulus <lassulus@googlemail.com> | 2014-01-14 03:59:49 +0100 |
---|---|---|
committer | lassulus <lassulus@googlemail.com> | 2014-01-14 03:59:49 +0100 |
commit | 5c5fc52820e94effbc64d0f248a8e262945c2ce3 (patch) | |
tree | c54a336c93253afbe89bd8489516fd1379394f6f /retiolum/scripts/adv_graphgen/USAGE.md | |
parent | b137ee46632b884c9c74f28ed38c3e6e89c17dcc (diff) | |
parent | da8f0952253b7463ec1951dcdee0127fe7782c88 (diff) |
Merge branch 'master' of github.com:krebscode/painload
Diffstat (limited to 'retiolum/scripts/adv_graphgen/USAGE.md')
-rw-r--r-- | retiolum/scripts/adv_graphgen/USAGE.md | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/retiolum/scripts/adv_graphgen/USAGE.md b/retiolum/scripts/adv_graphgen/USAGE.md new file mode 100644 index 00000000..9fa541ed --- /dev/null +++ b/retiolum/scripts/adv_graphgen/USAGE.md @@ -0,0 +1,27 @@ +# Example usage +make sure you have the correct permissions! + +# High Level + + # creates all graphs with predefined paths (see source code of this script) + ./all_the_graphs.sh + + # create anonymized graphs to /tmp + ./anonytize.sh /tmp + + # create full detail graphs to /var/www/graph.retiolum + ./sanitize.sh /var/ww/graph.retiolum + + # return currently availabe supernodes + tinc_stats/Supernodes.py + +# Low Level + + # returns the current tinc graph as json + tinc_stats/Log2JSON.py + + # adds GEOIP information to the json file + tinc_stats/Log2JSON.py | tinc_stats/Geo.py + + # creates a grapviz file from current graph, pipes into a timpfile + tinc_stats/Log2JSON.py | tinc_stats/Graph.py complete > /tmp/out.graphviz |