mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-02-03 20:39:27 -05:00
38 lines
1.6 KiB
Text
38 lines
1.6 KiB
Text
---
|
|
layout: docs
|
|
page_title: vagrant connect - Command-Line Interface
|
|
description: |-
|
|
The "vagrant connect" command compliments the "vagrant share" command to allow
|
|
a user to remotely connect to your Vagrant environment.
|
|
---
|
|
|
|
⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️
|
|
> [!IMPORTANT]
|
|
> **Documentation Update:** Product documentation previously located in `/website` has moved to the [`hashicorp/web-unified-docs`](https://github.com/hashicorp/web-unified-docs) repository, where all product documentation is now centralized. Please make contributions directly to `web-unified-docs`, since changes to `/website` in this repository will not appear on developer.hashicorp.com.
|
|
⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️⚠️
|
|
|
|
# Connect
|
|
|
|
**Command: `vagrant connect NAME`**
|
|
|
|
The connect command complements the
|
|
[share command](/vagrant/docs/cli/share) by enabling access to shared
|
|
environments. You can learn about all the details of Vagrant Share in the
|
|
[Vagrant Share section](/vagrant/docs/share/).
|
|
|
|
The reference of available command-line flags to this command
|
|
is available below.
|
|
|
|
## Options
|
|
|
|
- `--disable-static-ip` - The connect command will not spin up a small
|
|
virtual machine to create a static IP you can access. When this flag is
|
|
set, the only way to access the connection is to use the SOCKS proxy
|
|
address outputted.
|
|
|
|
- `--static-ip IP` - Tells connect what static IP address to use for the virtual
|
|
machine. By default, Vagrant connect will use an IP address that looks
|
|
available in the 172.16.0.0/16 space.
|
|
|
|
- `--ssh` - Connects via SSH to an environment shared with
|
|
`vagrant share --ssh`.
|