diff options
author | Mytnyk, Volodymyr <volodymyrx.mytnyk@intel.com> | 2018-10-11 18:16:06 +0100 |
---|---|---|
committer | Emma Foley <emma.l.foley@intel.com> | 2018-11-01 11:04:49 +0000 |
commit | b08ec122e407dee72514adbe14feb2314ec0245e (patch) | |
tree | 4f017fcd4221e8c7eb29cccaa9b53f4dc07a1af8 | |
parent | 7d4c4b6d08209b8365854c28f5e4e8e53c6a5a6c (diff) |
Make OvS to listen on TCP by default
JIRA: YARDSTICK-1492
Change-Id: I81c682d473ffe3d70ecbb42cce40c2d16e608b41
Signed-off-by: Mytnyk, Volodymyr <volodymyrx.mytnyk@intel.com>
-rw-r--r-- | yardstick/benchmark/contexts/standalone/ovs_dpdk.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yardstick/benchmark/contexts/standalone/ovs_dpdk.py b/yardstick/benchmark/contexts/standalone/ovs_dpdk.py index 3ad1097b0..a1af3c72b 100644 --- a/yardstick/benchmark/contexts/standalone/ovs_dpdk.py +++ b/yardstick/benchmark/contexts/standalone/ovs_dpdk.py @@ -146,8 +146,8 @@ class OvsDpdkContext(base.Context): cmd_list = [ "mkdir -p /usr/local/var/run/openvswitch", "mkdir -p {}".format(os.path.dirname(log_path)), - "ovsdb-server --remote=punix:/{0}/{1} --pidfile --detach".format(vpath, - ovs_sock_path), + ("ovsdb-server --remote=punix:/{0}/{1} --remote=ptcp:6640" + " --pidfile --detach").format(vpath, ovs_sock_path), ovs_other_config.format("--no-wait ", "dpdk-init=true"), ovs_other_config.format("--no-wait ", "dpdk-socket-mem='%s,%s'" % (socket0, socket1)), lcore_mask, |