Browse code

docs: Add network diagram for provider net section

Change-Id: Id39aaab5a7eadfa3fc09ba3d30c48b452d685904

Sean M. Collins authored on 2015/10/10 01:31:57
Showing 1 changed files
... ...
@@ -183,6 +183,34 @@ given a VLAN tag and IP address range, so that instances created via
183 183
 DevStack will use the external router for L3 connectivity, as opposed
184 184
 to the neutron L3 service.
185 185
 
186
+Physical Network Setup
187
+----------------------
188
+
189
+.. nwdiag::
190
+
191
+        nwdiag {
192
+                inet [ shape = cloud ];
193
+                router;
194
+                inet -- router;
195
+
196
+                network provider_net {
197
+                        address = "203.0.113.0/24"
198
+                        router [ address = "203.0.113.1" ];
199
+                        controller;
200
+                        compute1;
201
+                        compute2;
202
+                }
203
+
204
+                network control_plane {
205
+                        router [ address = "10.0.0.1" ]
206
+                        address = "10.0.0.0/24"
207
+                        controller [ address = "10.0.0.2" ]
208
+                        compute1 [ address = "10.0.0.3" ]
209
+                        compute2 [ address = "10.0.0.4" ]
210
+                }
211
+        }
212
+
213
+
186 214
 
187 215
 Service Configuration
188 216
 ---------------------