diff options
author | Ross Brattain <ross.b.brattain@intel.com> | 2017-08-25 04:52:05 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2017-08-25 04:52:05 +0000 |
commit | 564496eae84e4b8916d2102222eb95877a338b20 (patch) | |
tree | 786b62dbf9526bcbdc5924557d09c8c3ee1acbc1 | |
parent | f782dba09843df25cefb243dab9bc24d9a9c93b6 (diff) | |
parent | 37ab5baeb3a395088bc571d77d426245b7e7fca2 (diff) |
Merge "Fixed invalid vfw/vacl rulw config issues"
-rw-r--r-- | yardstick/network_services/helpers/samplevnf_helper.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yardstick/network_services/helpers/samplevnf_helper.py b/yardstick/network_services/helpers/samplevnf_helper.py index 870409e31..ae5451020 100644 --- a/yardstick/network_services/helpers/samplevnf_helper.py +++ b/yardstick/network_services/helpers/samplevnf_helper.py @@ -36,13 +36,13 @@ link {0} up ACTION_TEMPLATE = """\ p action add {0} accept -p action add {0} fwd +p action add {0} fwd {0} p action add {0} count """ FW_ACTION_TEMPLATE = """\ p action add {0} accept -p action add {0} fwd +p action add {0} fwd {0} p action add {0} count p action add {0} conntrack """ |