Summarize fabric config inline
Change-Id: Ib06df1860360094d56d26c12b0f50179bd7db002
diff --git a/docs/quickstart_physical.md b/docs/quickstart_physical.md
index 473485c..760339f 100644
--- a/docs/quickstart_physical.md
+++ b/docs/quickstart_physical.md
@@ -665,9 +665,75 @@
Configuring the switching fabric for use with CORD is documented in the
[Fabric Configuration Guide](https://wiki.opencord.org/display/CORD/Fabric+Configuration+Guide) on the OpenCORD wiki.
-The
-[CORD-Integrated Fabric](https://wiki.opencord.org/display/CORD/Fabric+Configuration+Guide#FabricConfigurationGuide-CORD-IntegratedFabric)
-section of the guide details how to load the modified fabric configuration into XOS and ONOS.
+To modify the fabric configuration for your environment, on the head node, login to the XOS VM:
+```
+ssh ubuntu@xos
+```
+Then edit the file `~/xos_services/fabric/config/network-cfg-quickstart.json` as follows:
+
+ - **Replace the DPID of the leaf-spine switches:** The DPIDs are generated by adding 4 extra zeros
+ in front of the MAC address of the management interface. If a switch has been provisioned
+ by MAAS correctly, you should be able to find DPID information in `/root/connect` on the
+ head node. Search for the following line:
+ ```
+ brcm-indigo-ofdpa-ofagent --dpid=0x0000cc37ab6182d2 --controller=$IP
+ ```
+ Remember to replace "0x" with "of:" . E.g. **of:0000cc37ab6182d2**
+
+ - **Modify the MAC address of hosts:** If a compute node has been provisioned by maas correctly,
+ you should be able to find out its MAC address by running the following command on the compute node.
+ ```
+ ifconfig fabric | grep HWaddr | awk {'print $5'}
+ ```
+ A valid MAC address format should look like **00:02:c9:1e:b1:21**
+
+ - **Modify IP address and default gateway on the compute nodes:** You need to manually configure
+ the IP address and route on the `fabric` bonding interface. (More details needed here.)
+
+Once these steps are done, apply the configuration (still in the XOS VM):
+```
+cd ~/service-profile/cord-pod
+make fabric
+```
+
+To verify that XOS has pushed the configuration to ONOS, log into ONOS in the onos-fabric VM and run `netcfg`:
+```
+$ ssh -p 8101 karaf@onos-fabric
+Password authentication
+Password:
+Welcome to Open Network Operating System (ONOS)!
+ ____ _ ______ ____
+ / __ \/ |/ / __ \/ __/
+ / /_/ / / /_/ /\ \
+ \____/_/|_/\____/___/
+
+Documentation: wiki.onosproject.org
+Tutorials: tutorials.onosproject.org
+Mailing lists: lists.onosproject.org
+
+Come help out! Find out how at: contribute.onosproject.org
+
+Hit '<tab>' for a list of available commands
+and '[cmd] --help' for help on a specific command.
+Hit '<ctrl-d>' or type 'system:shutdown' or 'logout' to shutdown ONOS.
+
+onos> netcfg
+{
+ "hosts" : {
+ "00:00:00:00:00:04/None" : {
+ "basic" : {
+ "ips" : [ "10.6.2.2" ],
+ "location" : "of:0000000000000002/4"
+ }
+ },
+ "00:00:00:00:00:03/None" : {
+ "basic" : {
+ "ips" : [ "10.6.2.1" ],
+ "location" : "of:0000000000000002/3"
+ }
+ },
+... etc.
+```
### Complete