You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/source/index.rst
+11-11Lines changed: 11 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -1,19 +1,19 @@
1
1
Python bindings to the OpenStack Network API
2
2
============================================
3
3
4
-
In order to use the python quantum client directly, you must first obtain an auth token and identify which endpoint you wish to speak to. Once you have done so, you can use the API like so::
4
+
In order to use the python neutron client directly, you must first obtain an auth token and identify which endpoint you wish to speak to. Once you have done so, you can use the API like so::
@@ -27,21 +27,21 @@ In order to use the CLI, you must provide your OpenStack username, password, ten
27
27
28
28
The command line tool will attempt to reauthenticate using your provided credentials for every request. You can override this behavior by manually supplying an auth token using ``--os-url`` and ``--os-auth-token``. You can alternatively set these environment variables::
29
29
30
-
export OS_URL=http://quantum.example.org:9696/
30
+
export OS_URL=http://neutron.example.org:9696/
31
31
export OS_TOKEN=3bcc3d3a03f44e3d8377f9247b0ad155
32
32
33
-
If quantum server does not require authentication, besides these two arguments or environment variables (We can use any value as token.), we need manually supply ``--os-auth-strategy`` or set the environment variable::
33
+
If neutron server does not require authentication, besides these two arguments or environment variables (We can use any value as token.), we need manually supply ``--os-auth-strategy`` or set the environment variable::
34
34
35
35
export OS_AUTH_STRATEGY=noauth
36
36
37
-
Once you've configured your authentication parameters, you can run ``quantum -h`` to see a complete listing of available commands.
37
+
Once you've configured your authentication parameters, you can run ``neutron -h`` to see a complete listing of available commands.
0 commit comments