Add graph for standard communication
This commit is contained in:
parent
77ac02ad47
commit
de6bc3dcba
5 changed files with 26 additions and 4 deletions
|
|
@ -1,3 +0,0 @@
|
|||
digraph G {
|
||||
Hello->World;
|
||||
}
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 6.6 KiB |
22
doc/graphviz/v6-v4-standard.dot
Normal file
22
doc/graphviz/v6-v4-standard.dot
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
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" ];
|
||||
|
||||
nat64gw [ label="NAT64 translator", rank=max ];
|
||||
|
||||
|
||||
v6host--switch1;
|
||||
v4host--switch2;
|
||||
|
||||
switch1--nat64gw;
|
||||
switch2--nat64gw;
|
||||
|
||||
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue