master-thesis/doc/graphviz/v6-v4-mixed.dot
Nico Schottelius 45871ae2c9 add presentation, update graphics
Signed-off-by: Nico Schottelius <nico@nico-notebook.schottelius.org>
2019-08-28 19:02:08 +02:00

23 lines
615 B
Text

graph G {
node [ shape="box"];
rankdir="LR";
v6host12 [ label="IPv6 only host" color="blue" ];
v6host22 [ label="IPv6 only host" color="blue" ];
v6host32 [ label="IPv6 only host" color="blue" ];
v4host12 [ label="IPv4 only host" color="yellow" ];
v4host22 [ label="IPv4 only host" color="yellow" ];
v4host32 [ label="IPv4 only host" color="yellow" ];
switchboth [ label="Network Switch with NAT64", shape="oval" ];
v6host12--switchboth;
v6host22--switchboth;
v6host32--switchboth;
v4host12--switchboth;
v4host22--switchboth;
v4host32--switchboth;
}