Changes between Version 17 and Version 18 of HowTo/ConfigureOVSStaticRouteMirroringNoController


Ignore:
Timestamp:
07/06/17 14:34:25 (7 years ago)
Author:
lnevers@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HowTo/ConfigureOVSStaticRouteMirroringNoController

    v17 v18  
    1414
    1515
    16 First we will establish rules for allowing IP traffic to flow between host1 and host2. Later in the howto we will discuss how to setup the OVS switch to allow for host3 to observe the traffic between host1 and host2 using OpenFlow table rules. An alternative method using the Mirror feature of the OVS switch is also presented if only mirroring is required.  These setups maybe be used for network monitoring.
     16First we will establish rules for allowing IP traffic to flow between host1 and host2. Later in the howto we will discuss how to setup the OVS switch to allow for host3 to observe the traffic between host1 and host2 using !OpenFlow table rules. An alternative method using the Mirror feature of the OVS switch is also presented if only mirroring is required.  These setups maybe be used for network monitoring.
    1717
    1818== Setting up the static IP traffic ==
     
    118118
    119119== Setting up mirroring behavior ==
    120 There are two possible ways in which port mirroring can be setup using an OVS switch. The first method presented uses OpenFlow table rules. An alternative method is presented that does not use OpenFlow at all.
     120There are two possible ways in which port mirroring can be setup using an OVS switch. The first method presented uses !OpenFlow table rules. An alternative method is presented that does not use !OpenFlow at all.
    121121=== Setting up mirroring of traffic from host1 and host2 to host3 (using ovs-ofctl) ===
    122 Mirroring can be setup by adding flows to the OpenFlow table that take for {{{in_port}}} the port we want monitored, and by specifying the output port in which we want
     122Mirroring can be setup by adding flows to the !OpenFlow table that take for {{{in_port}}} the port we want monitored, and by specifying the output port in which we want
    123123the monitoring traffic to be sent to. This is done using {{{actions=output:#.}}}
    124124
     
    137137=== Setting up mirroring of traffic from host1 and host2 to host3 (using ovs-vctl) ===
    138138
    139 It is possible to setup mirroring without ever adding any flows to the OpenFlow table. It can be done independently of setting up the static IP flows. This is done with a single command to ovs-vsctl.
     139It is possible to setup mirroring without ever adding any flows to the !OpenFlow table. It can be done independently of setting up the static IP flows. This is done with a single command to ovs-vsctl.
    140140
    141141From ovs