in reply to generating a router map from xml configs

Depending on the XML format, I'd probably use XML::Simple (for simple formats) or XML::Twig (for more 'complex' formats) to parse the files.

As for generating the graphs, GraphViz is quite good (and requires almost no configuration if your graphs are reasonably small)

  • Comment on Re: generating a router map from xml configs

Replies are listed 'Best First'.
Re^2: generating a router map from xml configs
by coontie (Sexton) on Dec 06, 2006 at 19:50 UTC
    You are right GraphViz does exactly what I need!!! Thank you!