You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
467 B
26 lines
467 B
graph G { |
|
node [ shape="box"]; |
|
|
|
|
|
v6host [ label="IPv6 only host"]; |
|
v4host [ label="IPv4 only host"]; |
|
|
|
|
|
switch1 [ label="Network Switch", shape="oval" ]; |
|
switch2 [ label="Network Switch", shape="oval" ]; |
|
|
|
v6router [ label="IPv6 router" ]; |
|
v4router [ label="IPv4 router" ]; |
|
|
|
nat64gw [ label="NAT64 translator", rank=max ]; |
|
|
|
|
|
v6host--switch1; |
|
v4host--switch2; |
|
|
|
switch1--v6router--nat64gw; |
|
switch2--v4router--nat64gw; |
|
|
|
|
|
|
|
}
|
|
|