master-thesis/doc/graphviz/v6-v4-mixed.dot

24 lines
525 B
Text
Raw Normal View History

2019-08-09 11:49:41 +02:00
graph G {
node [ shape="box"];
2019-08-10 15:27:52 +02:00
rankdir="LR";
2019-08-09 11:49:41 +02:00
v6host12 [ label="IPv6 only host"];
v6host22 [ label="IPv6 only host"];
v6host32 [ label="IPv6 only host"];
v4host12 [ label="IPv4 only host"];
v4host22 [ label="IPv4 only host"];
v4host32 [ label="IPv4 only host"];
switchboth [ label="Network Switch with NAT64", shape="oval" ];
2019-08-18 23:58:10 +02:00
v6host12--switchboth;
v6host22--switchboth;
v6host32--switchboth;
2019-08-09 11:49:41 +02:00
2019-08-18 23:58:10 +02:00
v4host12--switchboth;
v4host22--switchboth;
v4host32--switchboth;
2019-08-09 11:49:41 +02:00
}