mirror of
https://github.com/kernelkit/infix.git
synced 2026-08-06 23:43:20 +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>
33 lines
980 B
Plaintext
33 lines
980 B
Plaintext
graph "2x2" {
|
|
layout="neato";
|
|
overlap="false";
|
|
esep="+20";
|
|
size=10
|
|
|
|
node [shape=record, fontname="DejaVu Sans Mono, Book"];
|
|
edge [color="cornflowerblue", penwidth="2", fontname="DejaVu Serif, Book"];
|
|
|
|
PC [
|
|
label="PC | { <mgmt1> mgmt1 | <data> data | <mgmt2> mgmt2 }",
|
|
pos="20,80!",
|
|
kind="controller",
|
|
];
|
|
|
|
R1 [
|
|
label="{ <mgmt> mgmt | <data> data | <link> link} | R1 \n 192.168.100.1/32 \n(lo)",
|
|
pos="250,80!",
|
|
|
|
kind="infix",
|
|
];
|
|
R2 [
|
|
label="{ <link> link | <mgmt> mgmt | <data> data } | R2 \n 192.168.200.1/32 \n(lo)",
|
|
pos="250,30!",
|
|
|
|
kind="infix",
|
|
];
|
|
PC:mgmt1 -- R1:mgmt [kind=mgmt, color="lightgray"]
|
|
PC:mgmt2 -- R2:mgmt [kind=mgmt, color="lightgray"]
|
|
PC:data -- R1:data [color="black", headlabel="192.168.10.1/24", taillabel="192.168.10.2/24", fontcolor="black"]
|
|
R1:link -- R2:link [headlabel="192.168.50.2/24", taillabel="192.168.50.1/24", labeldistance=1, fontcolor="black", color="black"]
|
|
}
|