corrections, corrections, corrections...
This commit is contained in:
parent
a5858febf0
commit
2bc5964ae3
7 changed files with 85 additions and 75 deletions
21
doc/graphviz/p4switch.dot
Normal file
21
doc/graphviz/p4switch.dot
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
digraph G {
|
||||
rankdir="TB";
|
||||
|
||||
v4host [ shape="box" label="IPv4 Host" rank="min" ];
|
||||
v6host [ shape="box" label="IPv6 Host" ];
|
||||
|
||||
parser [ label="Parser"];
|
||||
deparser [ label="Deparser"];
|
||||
translation [ label="Translation"];
|
||||
v4packet [ label="IPv4 Packet"];
|
||||
v6packet [ label="IPv6 Packet"];
|
||||
|
||||
subgraph cluster_nat64 {
|
||||
label="P4 Switch";
|
||||
parser->v4packet->translation->v6packet->deparser;
|
||||
}
|
||||
|
||||
deparser->v6host;
|
||||
v4host->parser;
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue