This script creates a network (net1) and configures the external network. Then a router is created with its gateway is set to the external network and it is given an interface on net1. An instance is created with an nic connected to net1, and a floating IP is created and associated with the port the vm's nic is plugged into. Here is the CLI doing the same.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import logging | |
import pprint | |
import time | |
from quantumclient.quantum import client as qclient | |
from novaclient.v1_1 import client as nclient | |
import novaclient.exceptions as nova_exc | |
logging.basicConfig(level=logging.INFO) | |
#logging.basicConfig(level=logging.DEBUG) | |
KEYSTONE_URL='http://10.0.10.10:5000/v2.0' | |
qc = qclient.Client('2.0', auth_url=KEYSTONE_URL, username='admin', | |
tenant_name='demo', password='secrete') | |
nc = nclient.Client('admin', 'secrete', 'demo', KEYSTONE_URL, | |
service_type='compute') | |
net1 = qc.create_network({'network': {'name': 'net1', | |
'admin_state_up': True} }) | |
pprint.pprint(net1) | |
net1_id = net1['network']['id'] | |
sub1 = qc.create_subnet({'subnet': {'name': 'sub2', | |
'network_id': net1_id, | |
'ip_version': 4, | |
'cidr': '10.0.33.0/24'} }) | |
pprint.pprint(sub1) | |
ext_net = qc.create_network({'network': {'name': 'ext-net', | |
'admin_state_up': True, | |
'provider:network_type': 'local', | |
'router:external': True} }) | |
pprint.pprint(ext_net) | |
ext_net_id = ext_net['network']['id'] | |
ext_sub = qc.create_subnet({'subnet': {'name': 'ext-sub', | |
'network_id': ext_net_id, | |
'ip_version': 4, | |
'cidr': '192.168.101.0/24', | |
'enable_dhcp': False} }) | |
pprint.pprint(ext_sub) | |
router1 = qc.create_router( { 'router': { 'name': 'router1', | |
'admin_state_up': True} }) | |
router1_id = router1['router']['id'] | |
qc.add_gateway_router(router1_id, {'network_id': ext_net_id} ) | |
qc.add_interface_router(router1_id, {'subnet_id': sub1['subnet']['id']}) | |
pprint.pprint(qc.list_routers(name='router1')['routers'][0]) | |
try: | |
micro_flavor = nc.flavors.create('micro', 48, 1, 0, 6) | |
except nova_exc.ClientException: | |
micro_flavor = nc.flavors.get(6) | |
cirros_img = [i for i in nc.images.list() if i.name=='cirros-0.3.0-x86_64'][0] | |
vm1 = nc.servers.create('vm1', cirros_img, micro_flavor, | |
nics=[{'net-id': net1_id}] ) | |
while True: | |
print 'polling until quantum port for vm1 is ready...' | |
time.sleep(1) | |
ports = qc.list_ports(fields=['id'], device_id=vm1.id)['ports'] | |
if len(ports) > 0: | |
vm1_port_id = ports[0]['id'] | |
break | |
fip = qc.create_floatingip({'floatingip':{'floating_network_id':ext_net_id, | |
'port_id': vm1_port_id } }) | |
pprint.pprint(fip) |
Sample output:
vagrant@controller:/vagrant$ python sample.py
{u'network': {u'admin_state_up': True,
u'id': u'aeac6081-9cb3-411e-b927-36c110b80798',
u'name': u'net1',
u'provider:network_type': u'gre',
u'provider:physical_network': None,
u'provider:segmentation_id': 1,
u'router:external': False,
u'shared': False,
u'status': u'ACTIVE',
u'subnets': [],
u'tenant_id': u'5d3ca208a1d2478e8a9cefb309513fa5'}}
{u'subnet': {u'allocation_pools': [{u'end': u'10.0.33.254',
u'start': u'10.0.33.2'}],
u'cidr': u'10.0.33.0/24',
u'dns_nameservers': [],
u'enable_dhcp': True,
u'gateway_ip': u'10.0.33.1',
u'host_routes': [],
u'id': u'ead47f5d-a72d-4202-9b8c-4a3b96049c9b',
u'ip_version': 4,
u'name': u'sub2',
u'network_id': u'aeac6081-9cb3-411e-b927-36c110b80798',
u'tenant_id': u'5d3ca208a1d2478e8a9cefb309513fa5'}}
{u'network': {u'admin_state_up': True,
u'id': u'e50eddff-49e7-4a3e-a4e7-2b282552e2b4',
u'name': u'ext-net',
u'provider:network_type': u'local',
u'provider:physical_network': None,
u'provider:segmentation_id': None,
u'router:external': True,
u'shared': False,
u'status': u'ACTIVE',
u'subnets': [],
u'tenant_id': u'5d3ca208a1d2478e8a9cefb309513fa5'}}
{u'subnet': {u'allocation_pools': [{u'end': u'192.168.101.254',
u'start': u'192.168.101.2'}],
u'cidr': u'192.168.101.0/24',
u'dns_nameservers': [],
u'enable_dhcp': False,
u'gateway_ip': u'192.168.101.1',
u'host_routes': [],
u'id': u'2b3dffc3-72ac-447c-abab-a2747abf67e2',
u'ip_version': 4,
u'name': u'ext-sub',
u'network_id': u'e50eddff-49e7-4a3e-a4e7-2b282552e2b4',
u'tenant_id': u'5d3ca208a1d2478e8a9cefb309513fa5'}}
{u'admin_state_up': True,
u'external_gateway_info': {u'network_id': u'e50eddff-49e7-4a3e-a4e7-2b282552e2b4'},
u'id': u'2d34e275-8504-44ff-ad92-142d184b7cb6',
u'name': u'router1',
u'status': u'ACTIVE',
u'tenant_id': u'5d3ca208a1d2478e8a9cefb309513fa5'}
polling until quantum port for vm1 is ready...
polling until quantum port for vm1 is ready...
{u'floatingip': {u'fixed_ip_address': u'10.0.33.3',
u'floating_ip_address': u'192.168.101.3',
u'floating_network_id': u'e50eddff-49e7-4a3e-a4e7-2b282552e2b4',
u'id': u'd26f1bc9-9941-4761-8cc7-f9d987eb30a3',
u'port_id': u'89378092-b300-461e-b71a-e2990a324284',
u'router_id': u'2d34e275-8504-44ff-ad92-142d184b7cb6',
u'tenant_id': u'5d3ca208a1d2478e8a9cefb309513fa5'}}
And a cleanup script:
vagrant@controller:/vagrant$ python sample.py
{u'network': {u'admin_state_up': True,
u'id': u'aeac6081-9cb3-411e-b927-36c110b80798',
u'name': u'net1',
u'provider:network_type': u'gre',
u'provider:physical_network': None,
u'provider:segmentation_id': 1,
u'router:external': False,
u'shared': False,
u'status': u'ACTIVE',
u'subnets': [],
u'tenant_id': u'5d3ca208a1d2478e8a9cefb309513fa5'}}
{u'subnet': {u'allocation_pools': [{u'end': u'10.0.33.254',
u'start': u'10.0.33.2'}],
u'cidr': u'10.0.33.0/24',
u'dns_nameservers': [],
u'enable_dhcp': True,
u'gateway_ip': u'10.0.33.1',
u'host_routes': [],
u'id': u'ead47f5d-a72d-4202-9b8c-4a3b96049c9b',
u'ip_version': 4,
u'name': u'sub2',
u'network_id': u'aeac6081-9cb3-411e-b927-36c110b80798',
u'tenant_id': u'5d3ca208a1d2478e8a9cefb309513fa5'}}
{u'network': {u'admin_state_up': True,
u'id': u'e50eddff-49e7-4a3e-a4e7-2b282552e2b4',
u'name': u'ext-net',
u'provider:network_type': u'local',
u'provider:physical_network': None,
u'provider:segmentation_id': None,
u'router:external': True,
u'shared': False,
u'status': u'ACTIVE',
u'subnets': [],
u'tenant_id': u'5d3ca208a1d2478e8a9cefb309513fa5'}}
{u'subnet': {u'allocation_pools': [{u'end': u'192.168.101.254',
u'start': u'192.168.101.2'}],
u'cidr': u'192.168.101.0/24',
u'dns_nameservers': [],
u'enable_dhcp': False,
u'gateway_ip': u'192.168.101.1',
u'host_routes': [],
u'id': u'2b3dffc3-72ac-447c-abab-a2747abf67e2',
u'ip_version': 4,
u'name': u'ext-sub',
u'network_id': u'e50eddff-49e7-4a3e-a4e7-2b282552e2b4',
u'tenant_id': u'5d3ca208a1d2478e8a9cefb309513fa5'}}
{u'admin_state_up': True,
u'external_gateway_info': {u'network_id': u'e50eddff-49e7-4a3e-a4e7-2b282552e2b4'},
u'id': u'2d34e275-8504-44ff-ad92-142d184b7cb6',
u'name': u'router1',
u'status': u'ACTIVE',
u'tenant_id': u'5d3ca208a1d2478e8a9cefb309513fa5'}
polling until quantum port for vm1 is ready...
polling until quantum port for vm1 is ready...
{u'floatingip': {u'fixed_ip_address': u'10.0.33.3',
u'floating_ip_address': u'192.168.101.3',
u'floating_network_id': u'e50eddff-49e7-4a3e-a4e7-2b282552e2b4',
u'id': u'd26f1bc9-9941-4761-8cc7-f9d987eb30a3',
u'port_id': u'89378092-b300-461e-b71a-e2990a324284',
u'router_id': u'2d34e275-8504-44ff-ad92-142d184b7cb6',
u'tenant_id': u'5d3ca208a1d2478e8a9cefb309513fa5'}}
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
from quantumclient.quantum import client as qclient | |
from novaclient.v1_1 import client as nclient | |
import novaclient.exceptions as nova_exc | |
KEYSTONE_URL='http://10.0.10.10:5000/v2.0' | |
qc = qclient.Client('2.0', auth_url=KEYSTONE_URL, username='admin', | |
tenant_name='demo', password='secrete') | |
nc = nclient.Client('admin', 'secrete', 'demo', KEYSTONE_URL, | |
service_type='compute') | |
try: | |
nc.servers.delete(nc.servers.list(search_opts={'name': 'vm1'})[0]) | |
except: | |
pass | |
print "wait a while for nova to release quantum ports" | |
time.sleep(5) | |
for fip in qc.list_floatingips()['floatingips']: | |
qc.delete_floatingip(fip['id']) | |
qc.delete_network(qc.list_networks(name='net1')['networks'][0]['id']) | |
qc.delete_router(qc.list_routers(name='router1')['routers'][0]['id']) | |
qc.delete_network(qc.list_networks(name='ext-net')['networks'][0]['id']) |