[user guide] Legacy neutron command change

Updating neutron commands to openstack commands
for the legacy to openstack conversion.

Change-Id: I3b7885ca8cf00fd65db9cbca148a106f86e3580f
Implements-blueprint: use-openstack-command
This commit is contained in:
Joseph Robinson 2016-12-02 18:12:10 +10:00 committed by KATO Tomoyuki
parent 8121a14d49
commit a8071c3cb6
1 changed files with 3 additions and 3 deletions

View File

@ -271,14 +271,14 @@ Create network
.. code-block:: console
$ neutron net-create NAME
$ openstack network create NETWORK_NAME
Create a subnet
.. code-block:: console
$ neutron subnet-create NETWORK_NAME CIDR
$ neutron subnet-create my-network 10.0.0.0/29
$ openstack subnet create --subnet-pool SUBNET SUBNET_NAME
$ openstack subnet create --subnet-pool 10.0.0.0/29 NETWORK
Block Storage (cinder)
~~~~~~~~~~~~~~~~~~~~~~