~0x44/nova/extdoc

« back to all changes in this revision

Viewing changes to doc/source/adminguide/managing.networks.rst

  • Committer: NTT PF Lab.
  • Date: 2010-12-24 11:38:49 UTC
  • mto: This revision was merged to the branch mainline in revision 564.
  • Revision ID: openstack@lab.ntt.co.jp-20101224113849-z9nemzmki17bxnvw
SupportĀ IPv6

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
..
 
2
      Copyright 2010 United States Government as represented by the
 
3
      Administrator of the National Aeronautics and Space Administration.
 
4
      Overview Sections Copyright 2010 Citrix 
 
5
      All Rights Reserved.
 
6
 
 
7
      Licensed under the Apache License, Version 2.0 (the "License"); you may
 
8
      not use this file except in compliance with the License. You may obtain
 
9
      a copy of the License at
 
10
 
 
11
          http://www.apache.org/licenses/LICENSE-2.0
 
12
 
 
13
      Unless required by applicable law or agreed to in writing, software
 
14
      distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 
15
      WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 
16
      License for the specific language governing permissions and limitations
 
17
      under the License.
 
18
 
 
19
Networking Overview
 
20
===================
 
21
In Nova, users organize their cloud resources in projects. A Nova project consists of a number of VM instances created by a user. For each VM instance, Nova assigns to it a private IP address. (Currently, Nova only supports Linux bridge networking that allows the virtual interfaces to connect to the outside network through the physical interface. Other virtual network technologies, such as Open vSwitch, could be supported in the future.) The Network Controller provides virtual networks to enable compute servers to interact with each other and with the public network.
 
22
 
 
23
Nova Network Strategies
 
24
-----------------------
 
25
 
 
26
Currently, Nova supports three kinds of networks, implemented in three "Network Manager" types respectively: Flat Network Manager, Flat DHCP Network Manager, and VLAN Network Manager. The three kinds of networks can co-exist in a cloud system. However, the scheduler for selecting the type of network for a given project is not yet implemented. Here is a brief description of each of the different network strategies, with a focus on the VLAN Manager in a separate section. 
 
27
 
 
28
Read more about Nova network strategies here:
 
29
 
 
30
.. toctree::
 
31
   :maxdepth: 1
 
32
 
 
33
   network.flat.rst
 
34
   network.vlan.rst
 
35
 
 
36
 
 
37
Network Management Commands
 
38
---------------------------
 
39
 
 
40
Admins and Network Administrators can use the 'nova-manage' command to manage network resources:
 
41
 
 
42
VPN Management
 
43
~~~~~~~~~~~~~~
 
44
 
 
45
* vpn list: Print a listing of the VPNs for all projects.
 
46
    * arguments: none
 
47
* vpn run: Start the VPN for a given project.
 
48
    * arguments: project
 
49
* vpn spawn: Run all VPNs.
 
50
    * arguments: none
 
51
 
 
52
 
 
53
Floating IP Management
 
54
~~~~~~~~~~~~~~~~~~~~~~
 
55
 
 
56
* floating create: Creates floating ips for host by range
 
57
    * arguments: host ip_range
 
58
* floating delete: Deletes floating ips by range
 
59
    * arguments: range
 
60
* floating list: Prints a listing of all floating ips
 
61
    * arguments: none
 
62
 
 
63
Network Management
 
64
~~~~~~~~~~~~~~~~~~
 
65
 
 
66
* network create: Creates fixed ips for host by range
 
67
    * arguments: [fixed_range=FLAG], [num_networks=FLAG],
 
68
                 [network_size=FLAG], [vlan_start=FLAG],
 
69
                 [vpn_start=FLAG]
 
70