ungleich-graphviz/ipv4-only-island-ipv6-reachable.dot
Nico Schottelius 8794ae339d new pictures for blog article
Signed-off-by: Nico Schottelius <nico@nico-notebook.schottelius.org>
2020-12-15 16:00:57 +01:00

13 lines
499 B
Text

digraph G {
node [ shape=box ]
label="Enabling IPv4 islands with stateful NAT64"
v4island [ label="IPv4 only network\n192.0.2.0/24" ]
nat64 [ label="NAT64 translator" ]
v6internet [ label="IPv6 Internet\n::/0" ]
v6internet->v4island [ label="Allow access\nfrom the IPv6 Internet" style=dashed ]
v6internet->nat64 [ label="Connects to\n2001:db8:cafe::/120" ]
nat64->v4island [ label="Translates 2001:db8:cafe::/120 to\n192.0.2.0/24\nSquashes ::/0 to 192.0.2.1" ]
}