add cgnat

This commit is contained in:
Nico Schottelius 2020-09-02 10:38:02 +02:00
parent 8ceaa8fe77
commit a234e61692
1 changed files with 16 additions and 0 deletions

16
ipv4natandcgnat.dot Normal file
View File

@ -0,0 +1,16 @@
digraph G {
node [ shape=box ]
rankdir=LR;
client1 [ label="IPv4 client 1\nPrivate IP" ];
client2 [ label="IPv4 client 2\nPrivate IP" ];
nat_gw [ label="NAT gateway\nPublic IP" ];
cgnat1 [ label="CGNAT gateway\nPrivate IP" ];
cgnat2 [ label="CGNAT gateway\nPublic IP" ];
target [ label="The Internet\nPublic IP" ];
client1->nat_gw->target;
client2->cgnat1->cgnat2->target;
}