Begin to add dot for viirb

This commit is contained in:
Nico Schottelius 2020-06-14 11:31:19 +02:00
parent 08fedd3a6e
commit e21c3851bf
1 changed files with 25 additions and 0 deletions

25
ipv6-with-the-viirb.dot Normal file
View File

@ -0,0 +1,25 @@
digraph G {
node [ shape=box, fontcolor="#ffffff", color="#40a9e3", style="filled" ]
label="The VPN IPv6 IoT Router Box (VIIRB) in action"
node [ shape=box ]
# rankdir=LR;
viirb [ label="The VIIRB" ];
lan [ label="Your LAN" ];
ipv6vpn [ label="IPv6VPN.ch cloud server" shape=oval ]
wifi [ label="IPv6 only wifi: 'IPv6 everywhere'" shape=oval ]
lanclients [ label="Other client is the lan" ]
ipv6internet [ label="The IPv6 Internet" shape=oval ]
viirb->lan [ label="1. Gets IPv4 via cable" ]
viirb->ipv6vpn [ label="2. Connect VPN to IPv6VPN.ch" ]
ipv6vpn->viirb [ label="3. Route /48 IPv6 network to VIIRB" ]
viirb->lan [ label="4. Announce IPv6 availability" ]
lanclients->lan [ label="5. Assign themselves an IPv6 address" ]
lanclients->ipv6internet [ label="Can access" ]
viirb->wifi [ label="" ]
ipv6vpn->ipv6internet [ label="Is connected to" ]
}