Skip to content

jbenc/plotnetcfg

Folders and files

NameName
Last commit message
Last commit date

Latest commit

6a3074d · Sep 14, 2021
Oct 12, 2020
Oct 12, 2020
Dec 4, 2015
Oct 10, 2014
Sep 14, 2021
Sep 14, 2021
Sep 26, 2017
Sep 26, 2017
Jan 9, 2019
Jan 6, 2017
Sep 3, 2020
Sep 29, 2016
Oct 10, 2014
Jan 6, 2017
Jan 6, 2017
May 16, 2017
May 16, 2017
Oct 12, 2020
Oct 12, 2020
Apr 21, 2017
Jan 6, 2017
Jan 6, 2017
Oct 12, 2020
Sep 26, 2017
Jan 6, 2017
Oct 12, 2020
Jan 6, 2017
Sep 26, 2017
Sep 3, 2020
Sep 23, 2020
Jan 6, 2017
Oct 12, 2020
Feb 23, 2016
Nov 10, 2016
Jan 6, 2017
Nov 10, 2016
Sep 29, 2016
Jan 6, 2017
Sep 29, 2016
Apr 2, 2019
Apr 2, 2019
Jul 27, 2015

Repository files navigation

plotnetcfg is a tool that scans networking configuration on the machine and
plots a diagram of the configuration hierarchy.

Design goals are:
1. Lighweight. It should have no run time dependencies. Just scp the
   binary to the target machine.
2. Works across net namespaces.
3. Allows multiple frontends (graphviz and json frontends are currently
   supported).


Example usage:

ssh target_machine plotnetcfg | dot -Tpdf > output.pdf


Building:

Jansson library is required, version 2.3 or newer:
http://www.digip.org/jansson/

To statically link against Jansson, build the Jansson library and invoke in
the plotnetcfg source directory:

make jansson=/path/to/jansson

To dynamically link against Jansson, ensure Jansson is properly installed in
the system (e.g. using the devel package provided by your distribution) and
invoke:

make

The following flags can be overridden during the build:
- CC
  Choose a different compiler (such as clang or an arm cross compiler)
- CFLAGS
  Additional compilation flags to pass to the compiler

Bugs:

Report bugs to jbenc@redhat.com. Patches are welcome.


Contains code from iproute2, originally licensed under GPLv2 or later,
http://www.linuxfoundation.org/collaborate/workgroups/networking/iproute2