diff options
| author | SeekingFor <nobody@nowhere> | 2013-05-03 15:42:25 +0000 | 
|---|---|---|
| committer | SeekingFor <nobody@nowhere> | 2013-05-03 15:42:25 +0000 | 
| commit | e485bd9d2772a3bb50ef15ebd880de6d9bf56acc (patch) | |
| tree | ed00518d77a3b31bdf09504d0833e1e5d56ba3a3 /doc | |
| parent | 5a389a054eed9b1e8f484173830b0c0be5cd777b (diff) | |
| parent | 63fed7f008d271af51219b7d8dad3577580358c6 (diff) | |
| download | resdb-e485bd9d2772a3bb50ef15ebd880de6d9bf56acc.tar.gz resdb-e485bd9d2772a3bb50ef15ebd880de6d9bf56acc.zip | |
Merge http://anogit.ucis.ano/
Diffstat (limited to 'doc')
| -rwxr-xr-x | doc/ucis.ano/bgp_graph/readme.txt | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/doc/ucis.ano/bgp_graph/readme.txt b/doc/ucis.ano/bgp_graph/readme.txt index b32c52f..10a00ef 100755 --- a/doc/ucis.ano/bgp_graph/readme.txt +++ b/doc/ucis.ano/bgp_graph/readme.txt @@ -29,16 +29,16 @@ $ ./path_list_to_dot.php < /tmp/paths.txt | dot -T png -o graph.png  You can combine data from as many routers as you like. More is better, because it will make the graph more accurate.
  Or, in one single line:
 -$ (./bgp_path_list_bird.sh; ./bgp_path_list_quagga.sh) | ./path_list_to_dot.php < /tmp/paths.txt | dot -T png -o graph.png
 +$ (./bgp_path_list_bird.sh; ./bgp_path_list_quagga.sh) | ./path_list_to_dot.php | dot -T png -o graph.png
  Graphing a remote quagga instance using http:
 -$ wget http://remotehost/bgp_path_list_quagga.php -O - | ./path_list_to_dot.php < /tmp/paths.txt | dot -T png -o graph.png
 +$ wget http://remotehost/bgp_path_list_quagga.php -O - | ./path_list_to_dot.php | dot -T png -o graph.png
  Alternatively, you can use a cron job on the server to periodically update a static data file.
  Graphing a remote instance using netcat:
  server$ ./bgp_path_list_bird.sh | nc -l -p 9876
 -client$ nc remotehost 9876 | ./path_list_to_dot.php < /tmp/paths.txt | dot -T png -o graph.png
 +client$ nc remotehost 9876 | ./path_list_to_dot.php | dot -T png -o graph.png
  You can also use inetd/xinetd on the server side for a more permanent solution.
 | 
