Changes between Version 17 and Version 18 of HowTo/ConfigureOVSWithLayer3Routing
- Timestamp:
- 08/19/14 09:17:46 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowTo/ConfigureOVSWithLayer3Routing
v17 v18 79 79 7. If you want to insert these flows with OVS itself, you can do something like the following: 80 80 {{{ 81 ovs-ofctl add-flow OVSbr1 in_port=port_number_of_eth1,actions= output:LOCAL81 ovs-ofctl add-flow OVSbr1 in_port=port_number_of_eth1,actions=LOCAL 82 82 ovs-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:LOCAL83 ovs-ofctl add-flow OVSbr2 in_port=port_number_of_eth2,actions=LOCAL 84 84 ovs-ofctl add-flow OVSbr2 in_port=LOCAL,actions=output:port_number_of_eth2 85 85 }}} 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:86 You can determine port_number_of_eth1 via: 87 87 {{{ 88 88 ovs-ofctl show OVSbr1