Changes between Version 13 and Version 14 of HowTo/ConfigureOVSStaticRouteMirroringNoController


Ignore:
Timestamp:
06/21/17 16:15:01 (7 years ago)
Author:
joshua.fasching@raytheon.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HowTo/ConfigureOVSStaticRouteMirroringNoController

    v13 v14  
    2424
    2525== Setting up the static IP traffic ==
    26 === Configure OVS Switch ===
     26=== Configure OVS Switch === #configureovs
    2727 i. Login to the OVS host
    2828 ii. Create an Ethernet bridge that will act as our software switch:
     
    9595From ovs
    9696{{{
    97 sudo ovs-ofctl add-flow br0 priority=500,ip,nw_src=10.10.1.1,nw_dst=10.10.1.2,actions=normal
    98 sudo ovs-ofctl add-flow br0 priority=500,ip,nw_src=10.10.1.2,nw_dst=10.10.1.1,actions=normal
     97sudo ovs-ofctl add-flow br0 ip,nw_src=10.10.1.1,nw_dst=10.10.1.2,actions=normal
     98sudo ovs-ofctl add-flow br0 ip,nw_src=10.10.1.2,nw_dst=10.10.1.1,actions=normal
    9999}}}
    100100ARP traffic will also need to be able to flow in order for the routes to each host to be learned.
     
    102102From ovs
    103103{{{
    104 sudo ovs-ofctl add-flow br0 "priority=500,arp,nw_dst=10.10.1.1 actions=normal"
    105 sudo ovs-ofctl add-flow br0 "priority=500,arp,nw_dst=10.10.1.2 actions=normal"
     104sudo ovs-ofctl add-flow br0 "arp,nw_dst=10.10.1.1 actions=normal"
     105sudo ovs-ofctl add-flow br0 "arp,nw_dst=10.10.1.2 actions=normal"
    106106}}}
    107107The connectivity can then be tested with:
     
    136136ovs-ofctl add-flow br0 in_port=2,actions=normal,output:3
    137137}}}
     138
     139Port numbers are assigned based on the order that the ports were added to the bridge as presented in [#configureovs Configure OVS Switch]
     140
    138141=== Setting up mirroring of traffic from host1 and host2 to host3 (using ovs-vctl) ===
    139142