wiki:HowTo/ConfigureOVSWithLayer3Routing

Version 26 (modified by zwang@bbn.com, 10 years ago) (diff)

--

Configure OVS With Layer 3 Routing

Open vSwitch (OVS) acts as a Layer 2 device when it's not connected to its controller (and its fail-safe-mode is set to standalone [default]). If we want to do Layer 3 control, we need to write the control logic in its controller. However, sometimes we want to Layer 3 control while there is other Layer 3 control. For example, we want to do firewall or NAT while there is IP routing managed by XORP or Kernel Static Routing. A straightforward solution is to write your own IP forwarding logic in your controller (Yeah, practice of writing your own XORP is fun!). This is really violating the reusability principle of software engineering. Another solution is to cross your finger and hope there is someone has written it for the controller framework you use.

In this page, we are going to show you how to configure OVS to work with Linux kernel static IP routing. The method is largely from the help of Ryan Izard, rizard@g.clemson.edu, from Clemson University.

The topology we want to have is shown in below figure.

The configuration we want to have is shown in the figure below.

In summary the idea is to create a single OVS bridge for each interface on your machine that you want to assign an IP; pass the packet between the interface and the network stack through the LOCAL port of OVS; and let Linux routing handle the rest. This wiki page provides step-by-step instructions.

We've generated an RSpec http://www.gpolab.bbn.com/exp/NAT/ovs-l3-routing.rspec for you to try out this technique before applying it to your topology. You need to reserve it and login to host OVS to configure it.

Before you do the configuration, login into host1 amd try to ping host2.

ping 10.10.11.2

The ping should timeout.

  1. Now, login into OVS and create 2 OVS bridges.
    sudo ovs-vsctl add-br OVSbr1
    sudo ovs-vsctl add-br OVSbr2
    
  1. Remove the IPs of dataplane interfaces as you will assign them to the OVS bridges (your interface names may vary). On GENI, be careful not to bring down eth0, because it is your control interface, if you bring that interface down you won't be able to login to your host!
    sudo ifconfig eth1 0
    sudo ifconfig eth2 0
    
  1. Attach each interfaces to its own OVS bridge. Again, don't attach control plane interface.
    sudo ovs-vsctl add-port OVSbr1 eth1
    sudo ovs-vsctl add-port OVSbr2 eth2
    

4.Verify the configurations by:

sudo ovs-ofctl show OVSbr1

See the output here.

sudo ovs-ofctl show OVSbr2

See the output here.

sudo ovs-vsctl show

See the output here.

  1. Assign the IP addresses to the OVS bridges, and add routing entries.
    sudo ifconfig OVSbr1 10.10.10.1/24 up
    sudo ifconfig OVSbr2 10.10.11.1/24 up
    

These will insert the corresponding routes automatically for you, and you can verify it via:

route -n

See the output here.

Alternatively, you could do:

sudo ifconfig OVSbr1 10.10.10.1 up
sudo ifconfig OVSbr2 10.10.11.1 up
sudo route add -net 10.10.10.0 netmask 255.255.255.0 dev OVSbr1
sudo route add -net 10.10.11.0 netmask 255.255.255.0 dev OVSbr2
route -n
  1. When an OVS bridge is installed in the Linux OS, it is wired such that any application packets or packets routed via Linux will be sent to the LOCAL port of the OVS bridge, assuming a route to that bridge exists. And, in the reverse direction, any packets sent out an OVS bridge's LOCAL port will be received by the local networking stack.

Let's do an example of how a packet would traverse our network from 10.10.10.2 to 10.10.11.2.

10.10.10.2 sends the packet with destination 10.10.11.2. The packet arrives at eth1. There is an OpenFlow flow in place on OVSbr1 between eth1 and it's LOCAL port, so the packet will match this flow and be sent out the LOCAL port of OVSbr1 (i.e. port 65534). The packet is then received by the local machine's network stack. It has a destination IP of 10.10.11.2, so the routing table we have established will send the packet to the OVSbr2 network interface. OVSbr2 will receive this packet from the local network stack via it's LOCAL port (i.e. port 65534). There is an OpenFlow flow in place on OVS2 between OVS2's LOCAL port and eth2, so this packet will match that flow and be sent out through eth2. From there, it will arrive at 10.10.11.2. The same process will occur in reverse. This assumes though that you insert the flows between the physical interfaces (eth1 and eth2) and the OVS LOCAL ports. That's the key to handing packet to and receiving packets from the local OS.

  1. If you want to insert these flows with OVS itself, you can do something like the following:
    sudo ovs-ofctl add-flow OVSbr1 in_port=port_number_of_eth1,actions=LOCAL
    sudo ovs-ofctl add-flow OVSbr1 in_port=LOCAL,actions=output:port_number_of_eth1
    sudo ovs-ofctl add-flow OVSbr2 in_port=port_number_of_eth2,actions=LOCAL
    sudo ovs-ofctl add-flow OVSbr2 in_port=LOCAL,actions=output:port_number_of_eth2
    

You can determine port_number_of_eth1 via:

sudo ovs-ofctl show OVSbr1

According to the output here, the port number of eth1 is 1.

  1. If you want to insert these flows via your controller, you will need to either specify port 65534 explicitly or use whatever convention your controller uses to specify the LOCAL port of a bridge.

Remember to set your controller to all OVS bridges you want to control:

sudo ovs-vsctl set-controller OVSbr1 tcp:127.0.0.1:6653 ptcp:6634:127.0.0.1
sudo ovs-vsctl set-controller OVSbr2 tcp:127.0.0.1:6653 ptcp:6634:127.0.0.1
  1. Apart from these, remember to verify IP forwarding is enabled:
    cat /proc/sys/net/ipv4/ip_forward
    sudo echo 1 > /proc/sys/net/ipv4/ip_forward
    
  1. Now you should be able to ping each other between host1 and host2.

For an example of using this configuration, you may want to try out the OpenFlow NAT Example.

Attachments (6)

Download all attachments as: .zip