Changes between Version 44 and Version 45 of GENIExperimenter/Tutorials/OpenFlowOVS/Execute


Ignore:
Timestamp:
11/22/13 13:25:21 (10 years ago)
Author:
sedwards@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GENIExperimenter/Tutorials/OpenFlowOVS/Execute

    v44 v45  
    4545           </li> <br/>
    4646           <li> Be careful <b> not to bring down eth0</b>. This is your control interface, if you bring that interface down you <b> won't be able to login</b> to your host!. For all interfaces other than <code>eth0</code> and <code> l0</code>, remove the IP from the interfaces: <br/>
    47 91                            <ul><li> <code> sudo ifconfig &lt data_interface_name &gt 0 </code> </li></ul>
     4791                            <ul><li> <code> sudo ifconfig eth1 0 </code> </li></ul>
     48                              <ul><li> <code> sudo ifconfig eth2 0 </code> </li></ul>
     49                              <ul><li> <code> sudo ifconfig eth3 0 </code> </li></ul>
    4850             <li> Add all the data interfaces to your switch (bridge):Be careful <b> not to add interface eth0</b>. This is your control interface. You should see three interfaces that start with VLAN, these are your data interfaces.
    49                 <ul><li> <code> sudo  ovs-vsctl add-port br0 &lt data_interface_name &gt </code> </li></ul>
     51                <ul><li> <code> sudo  ovs-vsctl add-port br0 eth1 </code> </li></ul>
     52                <ul><li> <code> sudo  ovs-vsctl add-port br0 eth2 </code> </li></ul>
     53                <ul><li> <code> sudo  ovs-vsctl add-port br0 eth3 </code> </li></ul>
    5054             </li>
    5155          </ol>