+##############################################################################
+# 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"
# 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)