Changes between Version 42 and Version 43 of GENIExperimenter/Tutorials/OpenFlowOVS/Execute


Ignore:
Timestamp:
10/03/13 12:42:52 (10 years ago)
Author:
lnevers@bbn.com
Comment:

--

Legend:

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

    v42 v43  
    100100In this example we going to run a very simple learning switch controller to forward traffic between host1 and host2.
    101101
    102 1. First we are going to start a ping from  `host1` to `host2`:
    103 {{{
    104 ping host2
    105 }}}
    106 
    107   This ping should timeout, since there is no controller running.
    108 
     1021. First we are going to start a ping from  `host1` to `host2`, which should timeout, since there is no controller running. Leave this ping running.
     103{{{
     104ping host2 -c 10
     105}}}
    109106
    1101072. We have installed the POX controller under `/local/pox` on the OVS host. POX comes with a set of example modules that you can use out of the box. One of the modules is a learning switch.  Let's start the learning switch controller which is already available:
     
    115112}}}
    116113
    117 3. Go back to the terminal of `host1` and try to ping `host2` again:
    118 
    119 {{{
    120 ping 10.10.1.2
     1143. Now go to terminal of `host1` and ping `host2`:
     115
     116{{{
     117[experimenter@host1 ~]$ ping host2
     118PING host2-lan1 (10.10.1.2) 56(84) bytes of data.
     119From host1-lan0 (10.10.1.1) icmp_seq=2 Destination Host Unreachable
     120From host1-lan0 (10.10.1.1) icmp_seq=3 Destination Host Unreachable
     121From host1-lan0 (10.10.1.1) icmp_seq=4 Destination Host Unreachable
     12264 bytes from host2-lan1 (10.10.1.2): icmp_req=5 ttl=64 time=23.9 ms
     12364 bytes from host2-lan1 (10.10.1.2): icmp_req=6 ttl=64 time=0.717 ms
     12464 bytes from host2-lan1 (10.10.1.2): icmp_req=7 ttl=64 time=0.654 ms
     12564 bytes from host2-lan1 (10.10.1.2): icmp_req=8 ttl=64 time=0.723 ms
     12664 bytes from host2-lan1 (10.10.1.2): icmp_req=9 ttl=64 time=0.596 ms
    121127}}}
    122128