VMware vCloud CLI
Project description
vca-cli
=======
[](https://pypi.python.org/pypi/vca-cli) [](https://pypi.python.org/pypi/vca-cli) [](https://travis-ci.org/vmware/vca-cli/)
NOTE: due to changes in the service, use the --host argument to login on OnDemand:
PASS --save-password
Command Line Interface for VMware vCloud Air. It supports vCloud Air On Demand and Subscription. It also supports standalone vCloud Director.
> Release early, release often.
This project is under development, the commands and parameters might change over time. This README usually reflects the syntax of the latest version. See the [documentation](http://vca-cli.readthedocs.org) for a detailed description of each command. More information about commands and usage can be found in the [vca-cli wiki](https://github.com/vmware/vca-cli/wiki). The [networking section](https://github.com/vmware/vca-cli/wiki/Networking) documents all the operations related to networks, edge gateway and network services. See the [release notes](https://github.com/vmware/vca-cli/wiki/ReleaseNotes) for what's new.
`vca-cli` uses [pyvcloud](https://github.com/vmware/pyvcloud "Title"), Python SDK for VMware vCloud.
Installation:
=============
In general, `vca-cli` can be installed with:
sudo apt-get update
wget https://bootstrap.pypa.io/get-pip.py
sudo pip install vca-cli
Mac OS X:
---------
On Mac OS X (10.10.3), open a Terminal and enter the commands listed below (skip those that refer to a component already installed on your mac):
Install `Xcode Command Line Tools`:
sudo easy_install pip
Install `vca-cli`
vca --version
vca-cli version 12 (pyvcloud: 13)
Installation with virtualenv:
-----------------------------
It is also possible to install vca-cli in a [virtualenv](http://docs.python-guide.org/en/latest/dev/virtualenvs/).
Upgrade:
--------
To upgrade an existing `vca-cli` install, just run:
pip install vca-cli --pre
And to upgrade a pre-release:
vca login user@domain.com --password ******** --save-password
# same as:
vca login user@domain.com --password ******** --save-password \
--host vchs.vmware.com --type subscription --version 5.6
# vCloud Director Standalone
vca login user@domain.com --password ******** --save-password \
--host vcdhost.domain.com --org myorg --type standalone --version 5.6 \
--insecure
vCloud Air On Demand, login to a specific instance and get the details of the instance (organization):
vca instance
Available instances for user 'email@company.com' in 'default' profile:
| Instance Id | Region | Plan Id |
|--------------------------------------+-----------------------------------+--------------------------------------|
| fbf278f0-065d-4028-96d4-6ece56789751 | us-virginia-1-4.vchs.vmware.com | feda2919-32cb-4efd-a4e5-c5953733df33 |
| c40ba6b4-c158-49fb-b164-5c66f90344fa | us-california-1-3.vchs.vmware.com | 41400e74-4445-49ef-90a4-98da4ccfb16c |
| 7d275413-bc0b-4bbf-8c7b-b9522777beec | uk-slough-1-6.vchs.vmware.com | 62155213-e5fc-448d-a46a-770c57c5dd31 |
vca org info
Details for org 'a6545fcb-d68a-489f-afff-2ea055104cc1':
| Type | Name |
|------------+------------------------|
| catalog | Public Catalog |
| catalog | default-catalog |
| orgNetwork | default-routed-network |
| orgNetwork | default-routed-network |
| vdc | VDC1 |
| vdc | VDC2 |
Connection status:
vca logout
Logout successful for profile 'default'
Examples and Help:
------------------
`vca-cli` provides a list of examples with the `example` command:
IP |
| 48 | list networks | vca network |
| 49 | create network | vca network create --network network_name --gateway gateway_name --gateway-ip 192.168.117.1 --netmask 255.255.255.0 --dns1 192.168.117.1 --pool 192.168.117.2-192.168.117.100 |
| 50 | delete network | vca network delete --network network_name |
| 51 | list edge gateways | vca gateway |
| 52 | get details of edge gateways | vca gateway info --gateway gateway_name |
| 53 | set syslog server on gateway | vca gateway set-syslog --gateway gateway_name --ip 192.168.109.2 |
| 54 | unset syslog server on gateway | vca gateway set-syslog --gateway gateway_name |
| 55 | allocate external IP address (OnDemand) | vca gateway add-ip |
| 56 | release external IP address (OnDemand) | vca gateway del-ip --ip 107.189.93.162 |
| 57 | list edge gateway NAT rules | vca nat |
| 58 | add edge gateway DNAT rule | vca nat add --type DNAT --original-ip 107.189.93.162 --original-port 22 --translated-ip 192.168.109.2 --translated-port 22 --protocol tcp |
| 59 | add edge gateway SNAT rule | vca nat add --type SNAT --original-ip 192.168.109.0/24 --translated-ip 107.189.93.162 |
| 60 | add edge gateway rules from file | vca nat add --file natrules.yaml |
| 61 | delete edge gateway NAT rule | vca nat delete --type DNAT --original-ip 107.189.93.162 --original-port 22 --translated-ip 192.168.109.4 --translated-port 22 --protocol tcp |
| 62 | delete all edge gateway NAT rules | vca nat delete --all |
| 63 | enable edge gateway firewall | vca firewall enable |
| 64 | disable edge gateway firewall | vca firewall disable |
| 65 | display DHCP configuration | vca dhcp |
| 66 | enable DHCP service | vca dhcp enable |
| 67 | disable DHCP service | vca dhcp disable |
| 68 | add DHCP service to a network | vca dhcp add --network routed-211 --pool 192.168.211.101-192.168.211.200 |
| 69 | delete all DHCP pools from a network | vca dhcp delete --network routed-211 |
| 70 | list edge gateway VPN config | vca vpn |
| 71 | enable edge gateway VPN | vca vpn enable |
| 72 | disable edge gateway VPN | vca vpn disable |
| 73 | add VPN endpoint | vca vpn add-endpoint --network d1p10-ext --public-ip 107.189.123.101 |
| 74 | delete VPN endpoint | vca vpn del-endpoint --network d1p10-ext --public-ip 107.189.123.101 |
| 75 | add VPN tunnel | vca vpn add-tunnel --tunnel t1 --local-ip 107.189.123.101 --local-network routed-116 --peer-ip 192.240.158.15 --peer-network 192.168.110.0/24 --secret P8s3P...7v |
| 76 | delete VPN tunnel | vca vpn del-tunnel --tunnel t1 |
| 77 | add local network to VPN tunnel | vca vpn add-network --tunnel t1 --local-network routed-115 |
| 78 | add peer network to VPN tunnel | vca vpn add-network --tunnel t1 --peer-network 192.168.115.0/24 |
| 79 | delete local network from VPN tunnel | vca vpn del-network --tunnel t1 --local-network routed-115 |
| 80 | delete peer network from VPN tunnel | vca vpn del-network --tunnel t1 --peer-network 192.168.115.0/24 |
| 81 | send debug to vca --help
Usage: vca [OPTIONS] COMMAND [ARGS]...
VMware vCloud Air Command Line Interface.
Options:
-p, --profile <profile> Profile id
-v, --version Show version
-d, --debug Enable debug
-j, --json Results as JSON object
-x, --xml Results as XML document
-i, --insecure Perform insecure SSL connections
-h, --help Show this message and exit.
Commands:
bp Operations with Blueprints
catalog Operations with Catalogs
dep Operations with Deployments
dhcp Operations with Edge Gateway DHCP Service
example vCloud Air CLI Examples
firewall Operations with Edge Gateway Firewall Rules
gateway Operations with Edge Gateway
instance Operations with Instances
login Login to a vCloud service
logout Logout from a vCloud service
nat Operations with Edge Gateway NAT Rules
network Operations with Networks
org Operations with Organizations
plan Operations with Instances
status Show current status
vapp Operations with vApps
vdc Operations with Virtual Data Centers (vdc)
vm Operations with Virtual Machines (VMs)
vpn Operations with Edge Gateway VPN
Detailed syntax for a specific command:
$ vca vapp --help
Usage: vca vapp [OPTIONS] [list | info | create | delete | power.on |
power.off | deploy | undeploy | customize |
insert | eject]
Operations with vApps
Options:
-v, --vdc <vdc> Virtual Data Center Id
-a, --vapp <vapp> vApp name
-c, --catalog <catalog> catalog name
-t, --template <template> template name
-n, --network <network> Network name
-m, --mode [POOL, DHCP] Network connection mode
-V, --vm <vm> VM name
-f, --file <customization_file>
Guest OS Customization script file
-e, --media <media> virtual media name (ISO)
-h, --help Show this message and exit.
=======
[](https://pypi.python.org/pypi/vca-cli) [](https://pypi.python.org/pypi/vca-cli) [](https://travis-ci.org/vmware/vca-cli/)
NOTE: due to changes in the service, use the --host argument to login on OnDemand:
Command Line Interface for VMware vCloud Air. It supports vCloud Air On Demand and Subscription. It also supports standalone vCloud Director.
> Release early, release often.
This project is under development, the commands and parameters might change over time. This README usually reflects the syntax of the latest version. See the [documentation](http://vca-cli.readthedocs.org) for a detailed description of each command. More information about commands and usage can be found in the [vca-cli wiki](https://github.com/vmware/vca-cli/wiki). The [networking section](https://github.com/vmware/vca-cli/wiki/Networking) documents all the operations related to networks, edge gateway and network services. See the [release notes](https://github.com/vmware/vca-cli/wiki/ReleaseNotes) for what's new.
`vca-cli` uses [pyvcloud](https://github.com/vmware/pyvcloud "Title"), Python SDK for VMware vCloud.
Installation:
=============
In general, `vca-cli` can be installed with:
Mac OS X:
---------
On Mac OS X (10.10.3), open a Terminal and enter the commands listed below (skip those that refer to a component already installed on your mac):
Install `Xcode Command Line Tools`:
Install `vca-cli`
vca-cli version 12 (pyvcloud: 13)
Installation with virtualenv:
-----------------------------
It is also possible to install vca-cli in a [virtualenv](http://docs.python-guide.org/en/latest/dev/virtualenvs/).
Upgrade:
--------
To upgrade an existing `vca-cli` install, just run:
And to upgrade a pre-release:
# same as:
--host vchs.vmware.com --type subscription --version 5.6
# vCloud Director Standalone
--host vcdhost.domain.com --org myorg --type standalone --version 5.6 \
--insecure
vCloud Air On Demand, login to a specific instance and get the details of the instance (organization):
Available instances for user 'email@company.com' in 'default' profile:
| Instance Id | Region | Plan Id |
|--------------------------------------+-----------------------------------+--------------------------------------|
| fbf278f0-065d-4028-96d4-6ece56789751 | us-virginia-1-4.vchs.vmware.com | feda2919-32cb-4efd-a4e5-c5953733df33 |
| c40ba6b4-c158-49fb-b164-5c66f90344fa | us-california-1-3.vchs.vmware.com | 41400e74-4445-49ef-90a4-98da4ccfb16c |
| 7d275413-bc0b-4bbf-8c7b-b9522777beec | uk-slough-1-6.vchs.vmware.com | 62155213-e5fc-448d-a46a-770c57c5dd31 |
Details for org 'a6545fcb-d68a-489f-afff-2ea055104cc1':
| Type | Name |
|------------+------------------------|
| catalog | Public Catalog |
| catalog | default-catalog |
| orgNetwork | default-routed-network |
| orgNetwork | default-routed-network |
| vdc | VDC1 |
| vdc | VDC2 |
Connection status:
Logout successful for profile 'default'
Examples and Help:
------------------
`vca-cli` provides a list of examples with the `example` command:
| 48 | list networks | vca network |
| 49 | create network | vca network create --network network_name --gateway gateway_name --gateway-ip 192.168.117.1 --netmask 255.255.255.0 --dns1 192.168.117.1 --pool 192.168.117.2-192.168.117.100 |
| 50 | delete network | vca network delete --network network_name |
| 51 | list edge gateways | vca gateway |
| 52 | get details of edge gateways | vca gateway info --gateway gateway_name |
| 53 | set syslog server on gateway | vca gateway set-syslog --gateway gateway_name --ip 192.168.109.2 |
| 54 | unset syslog server on gateway | vca gateway set-syslog --gateway gateway_name |
| 55 | allocate external IP address (OnDemand) | vca gateway add-ip |
| 56 | release external IP address (OnDemand) | vca gateway del-ip --ip 107.189.93.162 |
| 57 | list edge gateway NAT rules | vca nat |
| 58 | add edge gateway DNAT rule | vca nat add --type DNAT --original-ip 107.189.93.162 --original-port 22 --translated-ip 192.168.109.2 --translated-port 22 --protocol tcp |
| 59 | add edge gateway SNAT rule | vca nat add --type SNAT --original-ip 192.168.109.0/24 --translated-ip 107.189.93.162 |
| 60 | add edge gateway rules from file | vca nat add --file natrules.yaml |
| 61 | delete edge gateway NAT rule | vca nat delete --type DNAT --original-ip 107.189.93.162 --original-port 22 --translated-ip 192.168.109.4 --translated-port 22 --protocol tcp |
| 62 | delete all edge gateway NAT rules | vca nat delete --all |
| 63 | enable edge gateway firewall | vca firewall enable |
| 64 | disable edge gateway firewall | vca firewall disable |
| 65 | display DHCP configuration | vca dhcp |
| 66 | enable DHCP service | vca dhcp enable |
| 67 | disable DHCP service | vca dhcp disable |
| 68 | add DHCP service to a network | vca dhcp add --network routed-211 --pool 192.168.211.101-192.168.211.200 |
| 69 | delete all DHCP pools from a network | vca dhcp delete --network routed-211 |
| 70 | list edge gateway VPN config | vca vpn |
| 71 | enable edge gateway VPN | vca vpn enable |
| 72 | disable edge gateway VPN | vca vpn disable |
| 73 | add VPN endpoint | vca vpn add-endpoint --network d1p10-ext --public-ip 107.189.123.101 |
| 74 | delete VPN endpoint | vca vpn del-endpoint --network d1p10-ext --public-ip 107.189.123.101 |
| 75 | add VPN tunnel | vca vpn add-tunnel --tunnel t1 --local-ip 107.189.123.101 --local-network routed-116 --peer-ip 192.240.158.15 --peer-network 192.168.110.0/24 --secret P8s3P...7v |
| 76 | delete VPN tunnel | vca vpn del-tunnel --tunnel t1 |
| 77 | add local network to VPN tunnel | vca vpn add-network --tunnel t1 --local-network routed-115 |
| 78 | add peer network to VPN tunnel | vca vpn add-network --tunnel t1 --peer-network 192.168.115.0/24 |
| 79 | delete local network from VPN tunnel | vca vpn del-network --tunnel t1 --local-network routed-115 |
| 80 | delete peer network from VPN tunnel | vca vpn del-network --tunnel t1 --peer-network 192.168.115.0/24 |
| 81 | send debug to
Usage: vca [OPTIONS] COMMAND [ARGS]...
VMware vCloud Air Command Line Interface.
Options:
-p, --profile <profile> Profile id
-v, --version Show version
-d, --debug Enable debug
-j, --json Results as JSON object
-x, --xml Results as XML document
-i, --insecure Perform insecure SSL connections
-h, --help Show this message and exit.
Commands:
bp Operations with Blueprints
catalog Operations with Catalogs
dep Operations with Deployments
dhcp Operations with Edge Gateway DHCP Service
example vCloud Air CLI Examples
firewall Operations with Edge Gateway Firewall Rules
gateway Operations with Edge Gateway
instance Operations with Instances
login Login to a vCloud service
logout Logout from a vCloud service
nat Operations with Edge Gateway NAT Rules
network Operations with Networks
org Operations with Organizations
plan Operations with Instances
status Show current status
vapp Operations with vApps
vdc Operations with Virtual Data Centers (vdc)
vm Operations with Virtual Machines (VMs)
vpn Operations with Edge Gateway VPN
Detailed syntax for a specific command:
$ vca vapp --help
Usage: vca vapp [OPTIONS] [list | info | create | delete | power.on |
power.off | deploy | undeploy | customize |
insert | eject]
Operations with vApps
Options:
-v, --vdc <vdc> Virtual Data Center Id
-a, --vapp <vapp> vApp name
-c, --catalog <catalog> catalog name
-t, --template <template> template name
-n, --network <network> Network name
-m, --mode [POOL, DHCP] Network connection mode
-V, --vm <vm> VM name
-f, --file <customization_file>
Guest OS Customization script file
-e, --media <media> virtual media name (ISO)
-h, --help Show this message and exit.