9 changed files with 124 additions and 42 deletions
@ -0,0 +1,11 @@
|
||||
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; |
||||
|
||||
} |
After Width: | Height: | Size: 13 KiB |
@ -0,0 +1,54 @@
|
||||
graph G { |
||||
node [ shape="box"]; |
||||
|
||||
v6host1 [ label="IPv6 only host"]; |
||||
v6host2 [ label="IPv6 only host"]; |
||||
v6host3 [ label="IPv6 only host"]; |
||||
|
||||
v6host12 [ label="IPv6 only host"]; |
||||
v6host22 [ label="IPv6 only host"]; |
||||
v6host32 [ label="IPv6 only host"]; |
||||
|
||||
v4host1 [ label="IPv4 only host"]; |
||||
v4host2 [ label="IPv4 only host"]; |
||||
v4host3 [ label="IPv4 only host"]; |
||||
|
||||
v4host12 [ label="IPv4 only host"]; |
||||
v4host22 [ label="IPv4 only host"]; |
||||
v4host32 [ label="IPv4 only host"]; |
||||
|
||||
switchv6 [ label="Network Switch", shape="oval" ]; |
||||
switchv4 [ label="Network Switch", shape="oval" ]; |
||||
switchboth [ label="Network Switch with NAT64", shape="oval" ]; |
||||
|
||||
nat64gw [ label="NAT64 translator", rank=max ]; |
||||
|
||||
subgraph cluster_seperate { |
||||
v6host1--switchv6; |
||||
v6host2--switchv6; |
||||
v6host3--switchv6; |
||||
|
||||
v4host1--switchv4; |
||||
v4host2--switchv4; |
||||
v4host3--switchv4; |
||||
|
||||
switchv4--nat64gw; |
||||
switchv6--nat64gw; |
||||
}; |
||||
|
||||
subgraph cluster_mixed { |
||||
v6host12--switchboth; |
||||
v6host22--switchboth; |
||||
v6host32--switchboth; |
||||
|
||||
v4host12--switchboth; |
||||
v4host22--switchboth; |
||||
v4host32--switchboth; |
||||
|
||||
} |
||||
|
||||
|
||||
|
||||
|
||||
|
||||
} |
After Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 16 KiB |
Loading…
Reference in new issue