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

27 lines
467 B
Plaintext
Raw Permalink Normal View History

2019-08-09 09:14:30 +00:00
graph G {
node [ shape="box"];
v6host [ label="IPv6 only host"];
v4host [ label="IPv4 only host"];
2019-08-18 21:58:10 +00:00
2019-08-09 09:14:30 +00:00
switch1 [ label="Network Switch", shape="oval" ];
switch2 [ label="Network Switch", shape="oval" ];
2019-08-18 21:58:10 +00:00
v6router [ label="IPv6 router" ];
v4router [ label="IPv4 router" ];
2019-08-09 09:14:30 +00:00
nat64gw [ label="NAT64 translator", rank=max ];
v6host--switch1;
v4host--switch2;
2019-08-18 21:58:10 +00:00
switch1--v6router--nat64gw;
switch2--v4router--nat64gw;
2019-08-09 09:14:30 +00:00
}