From f5e75a40dd663fd42645f5a334983ce519a697b6 Mon Sep 17 00:00:00 2001 From: "juraj.linkes" Date: Thu, 21 Sep 2017 11:33:49 +0200 Subject: Updated functest sim script Change-Id: Iacfb7b801c75cb85fafff2ff3082266220f17525 Signed-off-by: juraj.linkes --- scripts/functest_sim.sh | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) (limited to 'scripts') diff --git a/scripts/functest_sim.sh b/scripts/functest_sim.sh index 5c22e64..5bdded2 100755 --- a/scripts/functest_sim.sh +++ b/scripts/functest_sim.sh @@ -1,9 +1,17 @@ +############################################################################## +# Copyright (c) 2017 Juraj Linkes (Cisco) and others. +# +# All rights reserved. This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# http://www.apache.org/licenses/LICENSE-2.0 +############################################################################## #!/bin/bash # NETWORK AND SUBNET echo "Creating network with subnet" neutron net-create test-net neutron subnet-create --name test-subnet test-net 192.168.20.0/24 -net_id=`neutron net-list | grep test-net | cut -f 2 -d " "` +net_id=$(neutron net-list | grep test-net | cut -f 2 -d " ") # ATTACH NETWORK TO ROUTER echo "Attaching external and tenant networks to router" @@ -32,5 +40,8 @@ nova add-secgroup test-vm2 test-secgroup # FLOATING IP echo "Creating and associating floating IP for the first VM" -floatingip_id=`neutron floatingip-create external | grep " id " | tr -s " " | cut -f 4 -d " "` -neutron floatingip-associate $floatingip_id `neutron port-list | grep 192.168.20.3 | cut -d " " -f 2` +floatingip_id=$(neutron floatingip-create external | grep " id " | + tr -s " " | cut -f 4 -d " ") +neutron floatingip-associate $floatingip_id $(neutron port-list | + grep $(nova show test-vm1 | grep "test-net network" | + grep -Eo "[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+") | cut -d " " -f 2) -- cgit 1.2.3-korg