6
nova flavor-delete m1.tiny
7
nova flavor-create m1.tiny 1 512 8 1
9
# configure external network
10
neutron net-create --router:external=True public-net
11
neutron subnet-create --name public-subnet --no-gateway --allocation-pool start=10.0.10.2,end=10.0.10.254 --disable-dhcp public-net 10.0.10.0/24
14
neutron net-create ubuntu-net
15
neutron subnet-create --name ubuntu-subnet --gateway 10.0.5.1 ubuntu-net 10.0.5.0/24
17
# create pool of floating ips
19
while [ $i -ne 10 ]; do
20
neutron floatingip-create public-net
24
# configure security groups
25
neutron security-group-rule-create --direction ingress --ethertype IPv4 --protocol icmp --remote-ip-prefix 0.0.0.0/0 default
26
neutron security-group-rule-create --direction ingress --ethertype IPv4 --protocol tcp --port-range-min 22 --port-range-max 22 --remote-ip-prefix 0.0.0.0/0 default
29
nova keypair-add --pub-key id_rsa.pub ubuntu-keypair