Bruce
Bruce

Reputation: 35213

Network graph visualizer

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

Answers (3)

Hassan Syed
Hassan Syed

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

David Robles
David Robles

Reputation: 9607

Graphviz

Upvotes: 7

Adam Matan
Adam Matan

Reputation: 136141

There are some open source tools written in Java here.

Upvotes: 2

Related Questions