I need to get a 2d picture of a network graph. I know the topology. Is there any tool which will help me do so?
+1 Seems like the perfect tool for the job - I might just use it in some of my projects!
Adam Matan
2009-12-06 15:03:09
Can I draw undirected graphs with this tool?
Bruce
2009-12-06 15:17:53
Yes you can. Instead of using ->, use --. Here is an example: http://www.graphviz.org/Gallery/undirected/process.html ... Click the image to see the source code.
davidrobles
2009-12-06 15:30:02
And here is a directed graph, so you can see the difference in the notation: http://www.graphviz.org/Gallery/undirected/philo.html
davidrobles
2009-12-06 15:32:33
+1
A:
Yep graphviz is the de facto tool for this. You do not need to look any further. Just use your programming language of choice to spit out a dot file which describes your network. You can drop to programatic definition of graphs using graphviz but that is another issue.
Dot files are nice and simple, anyone could write one.
Hassan Syed
2009-12-06 14:46:01