tripleo-image-elements/elements/neutron-openvswitch-agent
Dan Prince dc228c0e5f Identify os-net-config conf file as autogenerated
This adds a comment to the neutron-openvswitch-agent.conf so
that end users know it is autogenerated.

Change-Id: I9420d1f0684aee505cedeedb486c9a7f7764c465
2015-03-19 11:34:37 -04:00
..
bin Identify os-net-config conf file as autogenerated 2015-03-19 11:34:37 -04:00
install.d Install ipset for the ml2 agent 2014-09-15 11:16:57 -04:00
os-refresh-config Allow VxLAN udp port 4789 and multicast 2014-12-09 15:22:41 -08:00
README.md Merge "Remove unused physical_network parameter in tripleo-image-elements" 2014-11-18 17:04:16 +00:00
element-deps Replace ensure-bridge w/ os-net-config. 2014-09-17 15:01:44 -04:00

README.md

Install and configure OpenStack Networking Openvswitch agent.

Configuration

The physical interface and bridges to use to bridge traffic onto can be configured via Heat Metadata. For example:

neutron:
  ovs:
    public_interface: vlan25
    public_interface_route: 12.34.56.78
    physical_bridge: br-ctlplane
    network_vlan_ranges: ctlplane
    bridge_mappings: ctlplane:br-ctlplane
bootstack:
    public_interface_ip: 12.34.56.79/24

If public_interface and physical_bridge are not set, no bridges will be connected directly. This is normal for neutron hosting virtual machines when using an overlay network (e.g. GRE tunnelling) with no provider networks. Some of the other fields will be ignored in this case. Most of them map 1:1 with their counterparts in ml2_conf.ini.

Public_interface_ip is used to add an additional ip address to the machine. This is set on the bridge device. Our current scripts write a static configuration with either DHCP or one IP address per interface, so its not very flexible.

There are two ways to setup VLANs. The old deprecated way using public_interface_raw_device creates a VLAN device under the bridge, which prevents the use of provider networks other than that for the same VLAN. It also sometimes leads to issues with access to the metadata server. In this configuration the raw device is still configured using DHCP and the public IP is put on the bridge device itself using public_interface_ip.

The new way is to use public_interface_tag and public_interface_tag_ip to create a VLAN access port on top of the bridge. This allows the use of any provider network desired, as the traffic tagging and filtering occurs in the bridge rather than below it. In this configuration the access port is given the public IP address, the bridge is (usually) configured for DHCP, and the underlying device is no longer given an IP address at all. This can be used together with public_interface_ip to assign a static ip address to the bridge (which we use for the seed VM as part of bootstrapping an environment).

Routing on the control plane network can be complex, and we have a new feature coming in to do arbitrary routes, but for now, we offer the ability to add a single static route via the physical_bridge_route key.

For instance:

neutron:
  ovs:
    public_interface: eth2
    public_interface_route: 45.67.89.1
    public_interface_tag: 25
    public_interface_tag_ip: 45.67.89.10/24
    physical_bridge: br-ctlplane
    physical_bridge_route:
      prefix: 12.34.0.0/16
      via: 12.34.56.1
bootstack:
    public_interface_ip: 12.34.56.79/24

will result in br-ctlplane being created on eth2, a tagged port (int\_public) added to br-ctlplane with tag 25, ip address 45.67.89.10/24, default route 45.67.89.1 and the bridge device itself being assigned 12.34.56.78/24.

public_interface_tag must be an int, or null, which like not present, means untagged. When public_interface_tag is not set, public_interface_tag_ip must also not be set. The recommended approach is to set the tag, tag_ip and _route options together, or not at all. public_interface_ip should only be used in the seed, as using it elsewhere will usually result in the metadata service being inaccessible.

For the deprecated behaviour where public_interface_raw_device is set, public_interface must be a vlan device, and the vlan device will be created using the raw device during os-collect-config configuration. We suggest not using this and migrating to public_interface_ip_tag as soon as possible as that will fix tag provider networks.

When public_interface_raw_device is not set, setting an IP address without setting a tag for it will result in an invalid configuration where metadata access is not possible, as the source IP address will be wrong. This may be useful where metadata access is not an issue (such as the seed VM).

The bridge is always configured to use the MAC address of the public_interface device as its MAC address.

Once the bridge and access port (if configured) are set up, the public_interface_route (if set) will replace the default route's next hop. The hop this replaces will be added as the next hop for 169.254.169.254/32 (unless one already exists). This permits routing default traffic out through a hardware router without breaking the ability to contact a local subnet bare metal metadata server.