Fix the subgraph
This commit is contained in:
parent
bbada059b5
commit
61b65341aa
3 changed files with 10 additions and 6 deletions
|
@ -33,7 +33,7 @@
|
||||||
\include{Abstract}
|
\include{Abstract}
|
||||||
|
|
||||||
\tableofcontents
|
\tableofcontents
|
||||||
%\listoffigures
|
\listoffigures
|
||||||
\listoftables
|
\listoftables
|
||||||
|
|
||||||
\include{Introduction}
|
\include{Introduction}
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
graph G {
|
graph G {
|
||||||
node [ shape="box"];
|
node [ shape="box"];
|
||||||
|
rankdir="LR";
|
||||||
|
|
||||||
|
|
||||||
v6host1 [ label="IPv6 only host"];
|
v6host1 [ label="IPv6 only host"];
|
||||||
v6host2 [ label="IPv6 only host"];
|
v6host2 [ label="IPv6 only host"];
|
||||||
|
@ -24,6 +26,10 @@ graph G {
|
||||||
nat64gw [ label="NAT64 translator", rank=max ];
|
nat64gw [ label="NAT64 translator", rank=max ];
|
||||||
|
|
||||||
subgraph cluster_seperate {
|
subgraph cluster_seperate {
|
||||||
|
label="Separated IPv6/IPv4 networks";
|
||||||
|
|
||||||
|
rank="max";
|
||||||
|
|
||||||
v6host1--switchv6;
|
v6host1--switchv6;
|
||||||
v6host2--switchv6;
|
v6host2--switchv6;
|
||||||
v6host3--switchv6;
|
v6host3--switchv6;
|
||||||
|
@ -37,6 +43,8 @@ graph G {
|
||||||
};
|
};
|
||||||
|
|
||||||
subgraph cluster_mixed {
|
subgraph cluster_mixed {
|
||||||
|
label="Mixed IPv6/IPv4 networks";
|
||||||
|
rank="min";
|
||||||
v6host12--switchboth;
|
v6host12--switchboth;
|
||||||
v6host22--switchboth;
|
v6host22--switchboth;
|
||||||
v6host32--switchboth;
|
v6host32--switchboth;
|
||||||
|
@ -47,8 +55,4 @@ graph G {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 81 KiB |
Loading…
Reference in a new issue