diff options
Diffstat (limited to 'conf/04_vnf.conf')
-rw-r--r-- | conf/04_vnf.conf | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/conf/04_vnf.conf b/conf/04_vnf.conf index 034e4108..52cc6ec1 100644 --- a/conf/04_vnf.conf +++ b/conf/04_vnf.conf @@ -79,5 +79,33 @@ GUEST_SMP = ['2', '2'] # For 2 VNFs you may use [(4,5), (6, 7)] GUEST_CORE_BINDING = [(6, 7), (9, 10)] +GUEST_START_TIMEOUT = 120 GUEST_OVS_DPDK_DIR = '/root/ovs_dpdk' OVS_DPDK_SHARE = '/mnt/ovs_dpdk_share' + +# IP addresses to use for Vanilla OVS PVP testing +# Consider using RFC 2544/3330 recommended IP addresses for benchmark testing. +# Network: 198.18.0.0/15 +# Netmask: 255.254.0.0 +# Broadcast: 198.19.255.255 +# First IP: 198.18.0.1 +# Last IP: 198.19.255.254 +# Hosts: 131070 +# + +# ARP entries for the IXIA ports and the bridge you are using: +VANILLA_TGEN_PORT1_IP = '1.1.1.10' +VANILLA_TGEN_PORT1_MAC = 'AA:BB:CC:DD:EE:FF' + +VANILLA_TGEN_PORT2_IP = '1.1.2.10' +VANILLA_TGEN_PORT2_MAC = 'AA:BB:CC:DD:EE:F0' + +VANILLA_BRIDGE_IP = ['1.1.1.5/16', '1.1.1.6/16'] + +VANILLA_NIC1_NAME = ['eth0', 'eth2'] +VANILLA_NIC2_NAME = ['eth1', 'eth3'] + +VANILLA_NIC1_IP_CIDR = ['192.168.1.2/24', '192.168.1.4/24'] +VANILLA_NIC2_IP_CIDR = ['192.168.1.3/24', '192.168.1.5/24'] + +VNF_AFFINITIZATION_ON = True |