Skip to content

AChingYo/iptables-graph

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Iptables-graph

Tools for iptables to generate call graph.

Example Command

Generate iptables of your local linux in graphviz graph foramt.

$ sudo iptables-save | ./iptables-graph
digraph {
    graph [pad="0.5", nodesep="0.5", ranksep="2"];
    node [shape=plain]
    rankdir=LR;
...

Test Command

Generate iptables graph to svg file.

$ cat example.txt | ./iptables-graph > a.dot
$ dot -Tsvg a.dot -o a.svg

Example Graph

example.svg

About

Tools for iptables to generate call graph

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages