Changes between Version 17 and Version 18 of HowTo/ConfigureOVSWithLayer3Routing


Ignore:
Timestamp:
08/19/14 09:17:46 (10 years ago)
Author:
zwang@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HowTo/ConfigureOVSWithLayer3Routing

    v17 v18  
    79797. If you want to insert these flows with OVS itself, you can do something like the following:
    8080{{{
    81 ovs-ofctl add-flow OVSbr1 in_port=port_number_of_eth1,actions=output:LOCAL
     81ovs-ofctl add-flow OVSbr1 in_port=port_number_of_eth1,actions=LOCAL
    8282ovs-ofctl add-flow OVSbr1 in_port=LOCAL,actions=output:port_number_of_eth1
    83 ovs-ofctl add-flow OVSbr2 in_port=port_number_of_eth2,actions=output:LOCAL
     83ovs-ofctl add-flow OVSbr2 in_port=port_number_of_eth2,actions=LOCAL
    8484ovs-ofctl add-flow OVSbr2 in_port=LOCAL,actions=output:port_number_of_eth2
    8585}}}
    86 In some cases, you must specifically use the keyword LOCAL or the port number 65534 (both mean the same thing, but OVS is particular about it). You can determine port_number_of_eth1 via:
     86You can determine port_number_of_eth1 via:
    8787{{{
    8888ovs-ofctl show OVSbr1