12 lines
233 B
Text
12 lines
233 B
Text
|
graph G {
|
||
|
node [ shape="box"];
|
||
|
|
||
|
v6host [ label="IPv6 only host"];
|
||
|
v4host [ label="IPv4 only host"];
|
||
|
|
||
|
switch1 [ label="Network Switch and NAT64 translator", shape="oval" ];
|
||
|
v6host--switch1;
|
||
|
v4host--switch1;
|
||
|
|
||
|
}
|