jolausa

Untitled

Jan 4th, 2018
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.26 KB | None | 0 0
  1. # Copyright 2015 Intel Corporation.
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14.  
  15. #RTE_TARGET = '' # the relevant DPDK build target
  16.  
  17. # traffic generator to use in tests
  18. TRAFFICGEN = 'Dummy'
  19. #TRAFFICGEN = 'Moongen'
  20. VSWITCH = 'OvsVanilla'
  21.  
  22.  
  23. ###################################################
  24. # MoonGen Configuration and Connection Info-- BEGIN
  25.  
  26. # Ex: TRAFFICGEN_MOONGEN_HOST_IP_ADDR = "192.10.1.1"
  27. TRAFFICGEN_MOONGEN_HOST_IP_ADDR = ""
  28. TRAFFICGEN_MOONGEN_USER = "root"
  29. TRAFFICGEN_MOONGEN_BASE_DIR = "/root/MoonGen"
  30. TRAFFICGEN_MOONGEN_PORTS = "{0,1}"
  31. # Ex. 10 Gbps: TRAFFICGEN_MOONGEN_LINE_SPEED_GBPS = '10'
  32. # Today only 10 Gbps is supported
  33. TRAFFICGEN_MOONGEN_LINE_SPEED_GBPS = '10'
  34.  
  35. # MoonGen Configuration and Connection Info-- END
  36. ###################################################
  37.  
  38. ####################################################
  39. #TEST_PARAMS = {'TRAFFICGEN_PKT_SIZES':(64,)}
  40. #OPNFV_INSTALLER = "Fuel"
  41. #OPNFV_URL = "http://testresults.opnfv.org/test/api/v1"
  42. #PACKAGE_LIST = "src/package-list.mk"
  43.  
  44.  
  45. # Binary package configuration for RHEL 7.3 systems with Vanilla OVS
  46. ####################################################################
  47. # Uncomment these lines for binary usage of Vanilla OVS.
  48.  
  49. PATHS['vswitch']['ovs_var_tmp'] = '/var/run/openvswitch/'
  50. PATHS['vswitch']['ovs_etc_tmp'] = '/etc/openvswitch/'
  51. PATHS['vswitch']['OvsVanilla']['bin']['modules'] = [
  52. 'libcrc32c', 'ip_tunnel', 'vxlan', 'gre', 'nf_nat', 'nf_nat_ipv6',
  53. 'nf_nat_ipv4', 'nf_conntrack', 'nf_defrag_ipv4', 'nf_defrag_ipv6',
  54. 'openvswitch']
  55. PATHS['vswitch']['OvsVanilla']['type'] = 'bin'
  56. PATHS['dpdk']['type'] = 'bin'
  57. PATHS['dpdk']['bin']['modules'] = ['uio', 'igb_uio']
  58. PATHS['qemu']['type'] = 'bin'
  59. PATHS['qemu']['bin']['qemu-system'] = 'qemu-system-x86_64'
Advertisement
Add Comment
Please, Sign In to add comment