diff options
| author | Vishvananda Ishaya <vishvananda@gmail.com> | 2010-11-23 23:56:26 +0000 |
|---|---|---|
| committer | Vishvananda Ishaya <vishvananda@gmail.com> | 2010-11-23 23:56:26 +0000 |
| commit | 521dd52e49feeae04108f3e21480f42456b4e4c7 (patch) | |
| tree | 5e22bff789d9c20255a8b720454b21cc6dc7e32f | |
| parent | 84521218b84d2eed307364c9efc9f6f2ee212aac (diff) | |
| download | nova-521dd52e49feeae04108f3e21480f42456b4e4c7.tar.gz nova-521dd52e49feeae04108f3e21480f42456b4e4c7.tar.xz nova-521dd52e49feeae04108f3e21480f42456b4e4c7.zip | |
fix typos in docstring
| -rw-r--r-- | nova/network/manager.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nova/network/manager.py b/nova/network/manager.py index f9489d2ad..a7298b47f 100644 --- a/nova/network/manager.py +++ b/nova/network/manager.py @@ -261,7 +261,7 @@ class FlatManager(NetworkManager): on all compute hosts. The idea is to create a single network for the host with a command like: - nova-manage network create 192.168.0.0/24 256 1. Creating multiple + nova-manage network create 192.168.0.0/24 1 256. Creating multiple networks for for one manager is currently not supported, but could be added by modifying allocate_fixed_ip and get_network to get the a network with new logic instead of network_get_by_bridge. Arbitrary lists of @@ -391,7 +391,7 @@ class VlanManager(NetworkManager): VlanManager is the most complicated. It will create a host-managed vlan for each project. Each project gets its own subnet. The networks and associated subnets are created with nova-manage using a command like: - nova-manage network create 10.0.0.0/8 16 3. This will create 3 networks + nova-manage network create 10.0.0.0/8 3 16. This will create 3 networks of 16 addresses from the beginning of the 10.0.0.0 range. A dhcp server is run for each subnet, so each project will have its own. |
