Hello, I was able to get the novarc file to source and it is also connecting properly, with some deprecating warnings: ubuntu@JuJu-Controller:~$ keystone catalog /usr/lib/python2.7/dist-packages/keystoneclient/shell.py:64: DeprecationWarning: The keystone CLI is deprecated in favor of python-openstackclient. For a Python library, continue using python-keystoneclient. 'python-keystoneclient.', DeprecationWarning) /usr/lib/python2.7/dist-packages/keystoneclient/v2_0/client.py:145: DeprecationWarning: Constructing an instance of the keystoneclient.v2_0.client.Client class without a session is deprecated as of the 1.7.0 release and may be removed in the 2.0.0 release. 'the 2.0.0 release.', DeprecationWarning) /usr/lib/python2.7/dist-packages/keystoneclient/v2_0/client.py:147: DeprecationWarning: Using the 'tenant_name' argument is deprecated in version '1.7.0' and will be removed in version '2.0.0', please use the 'project_name' argument instead super(Client, self).__init__(**kwargs) /usr/lib/python2.7/dist-packages/debtcollector/renames.py:45: DeprecationWarning: Using the 'tenant_id' argument is deprecated in version '1.7.0' and will be removed in version '2.0.0', please use the 'project_id' argument instead return f(*args, **kwargs) /usr/lib/python2.7/dist-packages/keystoneclient/httpclient.py:371: DeprecationWarning: Constructing an HTTPClient instance without using a session is deprecated as of the 1.7.0 release and may be removed in the 2.0.0 release. 'the 2.0.0 release.', DeprecationWarning) /usr/lib/python2.7/dist-packages/keystoneclient/session.py:140: DeprecationWarning: keystoneclient.session.Session is deprecated as of the 2.1.0 release in favor of keystoneauth1.session.Session. It will be removed in future releases. DeprecationWarning) /usr/lib/python2.7/dist-packages/keystoneclient/auth/identity/base.py:56: DeprecationWarning: keystoneclient auth plugins are deprecated as of the 2.1.0 release in favor of keystoneauth1 plugins. They will be removed in future releases. 'in future releases.', DeprecationWarning) Service: compute +-------------+-----------------------------------------------------------------+ | Property | Value | +-------------+-----------------------------------------------------------------+ I was able to get glance to accept and create my image, everything is good so far in the guide, until I hit the following issue when creating the external and internal network: ubuntu@JuJu-Controller:~$ sh ./neutron-ext-net -g xx.xx.xx.193 -c /27 -f xx.xx.xx.194:xx.xx.xx.222 ext_net ./neutron-ext-net: 3: ./neutron-ext-net: try:: not found from: can't read /var/mail/quantumclient.v2_0 ./neutron-ext-net: 5: ./neutron-ext-net: except: not found from: can't read /var/mail/neutronclient.v2_0 from: can't read /var/mail/keystoneclient.v2_0 ./neutron-ext-net: 9: ./neutron-ext-net: import: not found ./neutron-ext-net: 10: ./neutron-ext-net: import: not found ./neutron-ext-net: 11: ./neutron-ext-net: import: not found ./neutron-ext-net: 12: ./neutron-ext-net: import: not found ./neutron-ext-net: 15: ./neutron-ext-net: usage: not found ./neutron-ext-net: 24: ./neutron-ext-net: Syntax error: "(" unexpected (expecting "then") ubuntu@JuJu-Controller:~$ ubuntu@JuJu-Controller:~$ sh ./neutron-tenant-net -t admin -r provider-router \ > [-N xx.xx.xx.10] internal 10.5.5.0/24 ./neutron-tenant-net: 3: ./neutron-tenant-net: try:: not found from: can't read /var/mail/quantumclient.v2_0 ./neutron-tenant-net: 5: ./neutron-tenant-net: except: not found from: can't read /var/mail/neutronclient.v2_0 from: can't read /var/mail/keystoneclient.v2_0 ./neutron-tenant-net: 9: ./neutron-tenant-net: import: not found ./neutron-tenant-net: 10: ./neutron-tenant-net: import: not found ./neutron-tenant-net: 11: ./neutron-tenant-net: import: not found ./neutron-tenant-net: 12: ./neutron-tenant-net: import: not found ./neutron-tenant-net: 14: ./neutron-tenant-net: usage: not found ./neutron-tenant-net: 26: ./neutron-tenant-net: Syntax error: "(" unexpected (expecting "then") ubuntu@JuJu-Controller:~$ Am I doing something wrong?