1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
|
=====
Usage
=====
Follow the `Installation <installation.html>`_ document first.
This document describes how to use OVS-DPDK with devstack as well as configuration settings and values they accept.
To use networking-ovs-dpdk with devstack add the below to local.conf::
enable_plugin networking-ovs-dpdk https://github.com/stackforge/networking-ovs-dpdk master
Note: Virtual Machines using vhost-user need to be backed by hugepages.
Example::
nova flavor-key m1.tiny set "hw:mem_page_size=large"
local.conf settings
-------------------
See :download:`local.conf_example <_downloads/local.conf_example>` for sample usage of the below settings.
Default values for the below settings can be found in `settings` file in devstack directory of the main OVS DPDK repository.
**OVS_INSTALL_DIR**
(Filesystem path) Directory containing OVS compiled files are installed to.
**OVS_DB_CONF_DIR**
(Filesystem path) Directory containing OVS configuration and database files.
Default: /etc/openvswitch/
**OVS_DB_SOCKET_DIR**
(Filesystem path) Directory to create socket of a running OVS in.
**OVS_DB_CONF**
(Filesystem path) File path to OVS configuration database.
**OVS_DB_SOCKET**
(Filesystem path) File path to OVS socket.
**OVS_SOCKET_MEM**
(Size in MB/auto) Amount of memory reserved by OVS from each Numa node. 'auto' defaults to 2048MB per Numa node.
Example:
OVS_SOCKET_MEM=1024,0
OVS_SOCKET_MEM=auto
**OVS_MEM_CHANNELS**
(Number) Number of memory channels into the processor OVS will use.
**OVS_CORE_MASK**
cpu core mask in hexa format, according to it's value CPU cores are selected.
OVS_CORE_MASK is used for ovs-vswitchd process as -c option, it has default value 2.
Example:
OVS_CORE_MASK=3 (0x011 binary -> first two cores taken)
**OVS_PMD_CORE_MASK**
the mask in hexa format for the PMD threads of ovs set in the db,
OVS_PMD_CORE_MASK value is used for other_config:pmd-cpu-mask parameter in ovsdb.
It has default value 4. In case of HT enabled, it's 4 + sibling.
**OVS_DPDK_MODE**
This parameter determines the installation mode of ovs-dpdk. Supported values are 'compute', 'controller_ovs' or 'controller_ovs_dpdk'.
It has no default value and when not set plugin works as usual.
When set this parameter alters the defaults for other devstack settings if they are not explicitly set by the user as follows:
"controller_ovs" mode - OVS_DPDK_INSTALL set to 'False'
- OVS_AGENT_TYPE set to '$Q_AGENT'
"compute" mode or "controller_ovs_dpdk" mode - OVS_DPDK_INSTALL set to 'True'
- OVS_DATAPATH_TYPE se to 'netdev'
For both controller* modes ovsdpdk mechanism driver is added to Q_ML2_PLUGIN_MECHANISM_DRIVERS if not declared earlier.
**OVS_DPDK_INSTALL**
when set to 'true', ovs-dpdk will be downloaded, compiled and installed.
The Default value is true unless modified by OVS_DPDK_MODE as stated above.
**OVS_LOG_DIR**
(Filesystem path) Directory containing ovs-db and ovs-vswitchd log files.
**OVS_LOCK_DIR**
(Filesystem path) Directory containing OVS lock file.
**OVS_SRC_DIR**
(Filesystem path) Directory containing OVS source code. It's used along with RTE_SDK and RTE_TARGET to compile OVS DPDK.
**OVS_DIR**
(Filesystem path) Destination installation directory for compiled OVS DPDK.
**OVS_UTILS**
(Filesystem path) Destination installation directory for compiled OVS DPDK utilities.
**OVS_DB_UTILS**
(Filesystem path) Directory containing OVS DB and related utilities.
**OVS_DPDK_DIR**
(Filesystem path) Directory containing DPDK compiled libraries.
**OVS_ALLOCATE_HUGEPAGES**
(True/False) Indicates whether to allocate hugepages for OVS. If 'True' OpenVSwitch/DPDK will allocate hugepages of the default size for currently running Operating System (i.e.: 2kB).
**OVS_DPDK_GIT_TAG**
(git tag/branch/commitId) Indicates which tag, branch or commitId of DPDK source to checkout before compiling.
**OVS_NUM_HUGEPAGES**
(Number) Amount of hugepages to mount if OVS_ALLOCATE_HUGEPAGES is True.
**OVS_DPDK_VHOST_USER_DEBUG**
(True/False) Indicates whether to enable debugging for VHOST USER in DPDK.
**OVS_HUGEPAGE_MOUNT**
(Filesystem path) Mount point to use for hugepages. It's created and hugepages mounted if doesn't exist on the filesystem.
**OVS_HUGEPAGE_MOUNT_PAGESIZE**
(2M/1G) Preferred hugepage size. Defaults to Operating System's default if not set. If '1G' value is used hugepages should be allocated before starting ovs (i.e.: at kernel boot command line).
**OVS_BRIDGE_MAPPINGS**
(network:bridge) List of comma separated pairs of "physical network:bridge name" used by DPDK/OVS.
Example:
OVS_BRIDGE_MAPPINGS=default:br-eth1,default1:br-enp9s0f0
**OVS_DPDK_PORT_MAPPINGS**
(nic:bridge) List of comma separated pairs of "nic:bridge name" used by DPDK/OVS.
"nic" must be a NIC interface present in the system; "bridge" is the linux virtual bridge created by OVS.
Example:
OVS_DPDK_PORT_MAPPINGS=eth1:br-01,eth2:br-01,eth3:br-02
**OVS_INTERFACE_DRIVER**
(vfio-pci/igb_uio) NIC driver to use for physical network interface(s). Note: drivers names are the ones supported by DPDK, i.e.: not the kernel names.
**OVS_AGENT_TYPE**
(openvswitch/dpdk/...) Name of the Q_AGENT to use. Defaults to 'ovsdpdk' if not set.
**OVS_PATCHES**
(http/ftp/file location) Space separated cURL-like locations of OVS patches. Patches are downloaded and applied in the same order they are listed here.
**OVS_DATAPATH_TYPE**
(datapath type) OVS bridges will be set to use this datapath. This parameter should be set to 'netdev' (without '') for userspace OVS.
**OVS_DPDK_RTE_LIBRTE_VHOST**
(True/False) Enable libvhost/vhost-cuse. If ovs commit is before vhost-cuse support was added, this should be set to 'False'. Defaults is 'True'.
**OVS_TUNNEL_CIDR_MAPPING**
(bridge:cidr) When spcifed this option enables automatic assignment of the tunnel endpoint ip to a specific interface.
e.g. OVS_TUNNEL_CIDR_MAPPING=br-phy:192.168.50.1/24 asignes the ip of 192.168.50.1 with subnetmask 255.255.255.0 to the br-phy local port.
This is required to enabled vxlan or other tunneling protocals with ovs-dpdk and dpdk phyical ports.
**OVS_BOND_MODE**
(bond:bond_type) comma separated list of bond to mode mappings. Should be used together with OVS_BOND_PORTS.
bond_mode is optional, one of active-backup, balance-tcp or balance-slb.
Defaults to active-backup if unset.
Example:
OVS_BOND_MODE=bond0:active-backup,bond1:balance-slb
**OVS_BOND_PORTS**
(bond:nic) comma separated list of bond to NIC mappings. Specified NIC interfaces will be added as dpdk ports to OVS.
it's also required that user specify bridge for particular bonds in OVS_DPDK_PORT_MAPPINGS, relevant nic's will be added automatically
Example:
OVS_BOND_PORTS=bond0:enp9s0f0,bond0:enp9s0f1
OVS_DPDK_PORT_MAPPINGS=bond0:br-fast
|