23 lines
525 B
Text
23 lines
525 B
Text
graph G {
|
|
node [ shape="box"];
|
|
rankdir="LR";
|
|
|
|
|
|
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" ];
|
|
|
|
v6host12--switchboth;
|
|
v6host22--switchboth;
|
|
v6host32--switchboth;
|
|
|
|
v4host12--switchboth;
|
|
v4host22--switchboth;
|
|
v4host32--switchboth;
|
|
|
|
}
|