mirror of
https://github.com/kernelkit/infix.git
synced 2026-08-04 22:53:02 +02:00
SVG is a plain text file, better to see why it changed than binary PNG. Also fix #744 by adding infix/OEM hash to test specification Signed-off-by: Mattias Walström <lazzer@gmail.com>
24 lines
787 B
Plaintext
24 lines
787 B
Plaintext
graph "routing_basic" {
|
|
layout="neato";
|
|
overlap="false";
|
|
esep="+80";
|
|
node [shape=record, fontname="DejaVu Sans Mono, Book"];
|
|
edge [color="cornflowerblue", penwidth="2", fontname="DejaVu Serif, Book"];
|
|
|
|
host [
|
|
label="host | { <mgmt> mgmt | <data1> data1 | <data2> data2 }",
|
|
pos="0,12!",
|
|
kind="controller",
|
|
];
|
|
|
|
target [
|
|
label="{ <mgmt> mgmt | <data1> data1 | <data2> data2 } | target",
|
|
pos="10,12!",
|
|
|
|
kind="infix",
|
|
];
|
|
|
|
host:mgmt -- target:mgmt [kind=mgmt, color="lightgray"]
|
|
host:data1 -- target:data1 [color=black, fontcolor=black, fontsize=12, taillabel=".10", label="192.168.0.0/24", headlabel=".1"]
|
|
host:data2 -- target:data2 [color=black, fontcolor=black, fontsize=12, taillabel=".10", label="10.0.0.0/24", headlabel=".1"]
|
|
} |