Reputation: 35213
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?
Upvotes: 1
Views: 676
Reputation: 20475
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.
Upvotes: 1