8ac9e0b2e0
Highlights: - Deprecate br-tun. - Reduce the use of OFPP_NORMAL action. Use mac address info obtained from get_device_details and l2-pop to reduce flooding. - Use OpenFlow metadata instead of "internal" VLANs. Now tenant networks are VLAN transparent. Implements: blueprint ofagent-port-monitor Implements: blueprint ofagent-merge-bridges Change-Id: I21ee1c6d141863182b487e10c7bfe911b1a472ab
79 lines
2.5 KiB
Plaintext
79 lines
2.5 KiB
Plaintext
This directory includes agent for OpenFlow Agent mechanism driver.
|
|
|
|
# -- Installation
|
|
|
|
For how to install/set up ML2 mechanism driver for OpenFlow Agent, please refer to
|
|
https://github.com/osrg/ryu/wiki/OpenStack
|
|
|
|
# -- Notes for updating from Icehouce
|
|
|
|
After Icehouce, most of the functionality have been folded into
|
|
a single bridge, the integration bridge. (aka. br-int)
|
|
The integration bridge is the only bridge which would have an
|
|
OpenFlow connection to the embedded controller in ofagent now.
|
|
|
|
- ofagent no longer uses a separate bridge for tunneling.
|
|
Please remove br-tun if you have one.
|
|
|
|
# ovs-vsctl del-br br-tun
|
|
|
|
- ofagent no longer acts as an OpenFlow controller for physical bridges.
|
|
Please remove set-controller configuration from your physical bridges.
|
|
|
|
# ovs-vsctl del-controller ${PHYSICAL_BRIDGE}
|
|
|
|
The support of ancillary bridges has been removed after Icehouce.
|
|
While you can still use these bridges to provide connectivity,
|
|
neutron-ofagent-agent no longer reports port state changes (up/down)
|
|
for these bridges. If it is a problem for you, please consider
|
|
tweaking your configuration to avoid using ancillary bridges.
|
|
We recommend to use a provider network instead as the following:
|
|
|
|
- Make l3-agent external_network_bridge configuration empty.
|
|
eg.
|
|
[DEFAULT]
|
|
external_network_bridge=
|
|
|
|
- (Re-)create a network (and subnet) for public connectivity with
|
|
a flat provider network.
|
|
eg.
|
|
neutron net-create $PUBLIC_NETWORK -- \
|
|
--router:external=True \
|
|
--provider:network_type:flat \
|
|
--provider:physical_network=$PUBLIC_PHYSICAL_NETWORK
|
|
|
|
- Associate your neutron router to the above network.
|
|
eg.
|
|
neutron router-gateway-clear $ROUTER_ID
|
|
neutron router-gateway-set $ROUTER_ID $PUBLIC_NETWORK
|
|
|
|
- Add the corresponding entry to bridge_mappings.
|
|
eg.
|
|
[OVS]
|
|
bridge_mappings=$PUBLIC_PHYSICAL_NETWORK:$PUBLIC_BRIDGE
|
|
|
|
The port naming scheme for ofagent has been changed after Icehouce.
|
|
If you are using security groups, you should switch firewall_driver
|
|
accordingly.
|
|
From:
|
|
[securitygroup]
|
|
firewall_driver=neutron.agent.linux.iptables_firewall.OVSHybridIptablesFirewallDriver
|
|
To:
|
|
[securitygroup]
|
|
firewall_driver=neutron.agent.linux.iptables_firewall.IptablesFirewallDriver
|
|
|
|
# -- Ryu General
|
|
|
|
For general Ryu stuff, please refer to
|
|
http://www.osrg.net/ryu/
|
|
|
|
Ryu is available at github
|
|
git://github.com/osrg/ryu.git
|
|
https://github.com/osrg/ryu
|
|
|
|
The mailing is at
|
|
ryu-devel@lists.sourceforge.net
|
|
https://lists.sourceforge.net/lists/listinfo/ryu-devel
|
|
|
|
Enjoy!
|