mirror of
https://github.com/kernelkit/infix.git
synced 2026-08-02 13:53:01 +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>
25 lines
603 B
Plaintext
25 lines
603 B
Plaintext
graph "1x2" {
|
|
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 | <data> data }",
|
|
pos="0,12!",
|
|
kind="controller",
|
|
];
|
|
|
|
target [
|
|
label="{ <mgmt> mgmt | <data> data } | target",
|
|
pos="10,12!",
|
|
|
|
kind="infix",
|
|
];
|
|
|
|
host:mgmt -- target:mgmt [kind=mgmt, color=lightgrey]
|
|
host:data -- target:data [color=black, fontcolor=black, fontsize=12, taillabel="10.0.0.1/24", headlabel="10.0.0.10/24"]
|
|
}
|