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

24 lines
615 B
Plaintext
Raw Normal View History

2019-08-09 09:49:41 +00:00
graph G {
node [ shape="box"];
2019-08-10 13:27:52 +00:00
rankdir="LR";
2019-08-09 09:49:41 +00:00
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" ];
2019-08-09 09:49:41 +00:00
switchboth [ label="Network Switch with NAT64", shape="oval" ];
2019-08-18 21:58:10 +00:00
v6host12--switchboth;
v6host22--switchboth;
v6host32--switchboth;
2019-08-09 09:49:41 +00:00
2019-08-18 21:58:10 +00:00
v4host12--switchboth;
v4host22--switchboth;
v4host32--switchboth;
2019-08-09 09:49:41 +00:00
}