Skip to content

Commit d935936

Browse files
Merge pull request #5646 from TylerMSFT/pass
draft
2 parents 9c3d166 + 749269c commit d935936

File tree

2 files changed

+18
-12
lines changed

2 files changed

+18
-12
lines changed

docs/linux/connect-to-your-remote-linux-computer.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,14 +85,14 @@ If `ssh` isn't already set up and running on your Linux system, follow these ste
8585
| **Password** | Password for the entered user name |
8686
| **Private key file** | Private key file created for ssh connection |
8787
| **Passphrase** | Passphrase used with private key selected above |
88-
88+
8989
You can't click the **Connect** button until all the required fields are completed and the port is set to an integer between 1 and 65535.
90-
91-
You can use either a password or a key file and passphrase for authentication. For many development scenarios, password authentication is sufficient, but key files are more secure. If you already have a key pair, it's possible to reuse it.
9290

93-
Versions of Visual Studio before 17.10 support EC, RSA, and DSA keys for remote connections. Because of security concerns, RSA and DSA keys are no longer supported in VS 17.10 and later. Only EC keys are currently supported. To create a key pair compatible with the connection manager use the command:
91+
You can use either a password or a key file and passphrase for authentication. Key files are more secure than username/password. If you already have a key pair, it's possible to reuse it.
92+
93+
Versions of Visual Studio before 17.10 support Elliptic Curve (EC), Rivert-Shamir-Adleman (RSA), and Digital signature algorithm (DSA) keys for remote connections. Because of security concerns, RSA and DSA keys are no longer supported in VS 17.10 and later. Only EC keys are currently supported. To create a key pair compatible with the connection manager use the command:
9494
`ssh-keygen -m pem -t ecdsa -f <key-name>`
95-
95+
9696
> [!NOTE]
9797
> If using `ssh-keygen` to create the private key, you must specify the switch `-m pem`, or the key will not be accepted by Visual Studio. If your private key begins with `-----BEGIN OPENSSH PRIVATE KEY-----`, you must convert it with `ssh-keygen -p -f <FILE> -m pem`.
9898

docs/linux/connectionmanager-reference.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ helpviewer_keywords: ["ConnectionManager program"]
99

1010
::: moniker range="<=msvc-150"
1111

12-
ConnectionManager.exe is available in Visual Studio 2019 version 16.5 and later.
12+
`ConnectionManager.exe` is available in Visual Studio 2019 version 16.5 and later.
1313

1414
::: moniker-end
1515

1616
::: moniker range=">=msvc-160"
1717

1818
ConnectionManager.exe is a command-line utility to manage remote development connections outside of Visual Studio. It's useful for tasks such as provisioning a new development machine. Or, use it to set up Visual Studio for continuous integration. You can use it in a Developer Command Prompt window. For more information about the Developer Command Prompt, see [Use the Microsoft C++ toolset from the command line](../build/building-on-the-command-line.md).
1919

20-
ConnectionManager.exe is available in Visual Studio 2019 version 16.5 and later. It's part of the **Linux development with C++** workload in the Visual Studio Installer. It's also installed automatically when you choose the **Connection Manager** component in the installer. It's installed in *%VCIDEInstallDir%\\Linux\\bin\\ConnectionManagerExe\\ConnectionManager.exe*.
20+
`ConnectionManager.exe` is available in Visual Studio 2019 version 16.5 and later. It's part of the **Linux development with C++** workload in the Visual Studio Installer. It's also installed automatically when you choose the **Connection Manager** component in the installer. It's installed in `%VCIDEInstallDir%\Linux\bin\ConnectionManagerExe\ConnectionManager.exe`.
2121

22-
The functionality of ConnectionManager.exe is also available in Visual Studio. To manage remote development connections in the IDE, on the menu bar, choose **Tools** > **Options** to open the Options dialog. In the Options dialog, select **Cross Platform** > **Connection Manager**.
22+
The functionality of `ConnectionManager.exe` is also available in Visual Studio. To manage remote development connections in the IDE, on the menu bar, choose **Tools** > **Options** to open the Options dialog. In the Options dialog, select **Cross Platform** > **Connection Manager**.
2323

2424
## Syntax
2525

@@ -29,7 +29,13 @@ The functionality of ConnectionManager.exe is also available in Visual Studio. T
2929

3030
- **`add`** *user\@host* \[**`--port`** *port*] \[**`--password`** *password*] \[**`--privatekey`** *privatekey_file*]
3131

32-
Authenticates and adds a new connection. By default, it uses port 22 and password authentication. (You'll be prompted to enter a password.) Use both **-`-password`** and **`--privatekey`** to specify a password for a private key.
32+
Authenticates and adds a new connection. By default, it uses port 22 and password authentication. (You are prompted to enter a password.)
33+
34+
You can use either a password or a key file and passphrase for authentication. Key files are more secure than username/password. If you already have a key pair, it's possible to reuse it. Use both **-`-password`** and **`--privatekey`** to specify a passphrase for a private key file.
35+
36+
Versions of Visual Studio before 17.10 support Elliptic Curve (EC), Rivert-Shamir-Adleman (RSA), and Digital signature algorithm (DSA) keys for remote connections. Because of security concerns, RSA and DSA keys are no longer supported in VS 17.10 and later. Only EC keys are currently supported.
37+
38+
To create a key pair compatible with the connection manager, use the command `ssh-keygen -m pem -t ecdsa -f <key-name>`. If you use `ssh-keygen` to create the private key, you must specify the switch `-m pem`, or the key won't be accepted by Visual Studio. If your private key begins with `-----BEGIN OPENSSH PRIVATE KEY-----`, you must convert it with `ssh-keygen -p -f <FILE> -m pem`.
3339

3440
- **`clean`**
3541

@@ -48,7 +54,7 @@ The functionality of ConnectionManager.exe is also available in Visual Studio. T
4854
Defines or modifies a property on a connection.\
4955
If *value* is empty, then the property *key* is deleted.\
5056
If authentication fails, no changes will be made.\
51-
If no connection is specified (what is meant by *default*, above), the user's default remote connection is used.
57+
If no connection is specified, the user's default remote connection is used.
5258

5359
- **`remove`** \[*connection_id* \| *user\@host* \[**`--port`** *port*]]
5460

@@ -57,7 +63,7 @@ The functionality of ConnectionManager.exe is also available in Visual Studio. T
5763
- **`remove-all`**
5864

5965
Removes all stored connections.
60-
66+
6167
- **`update`** \[*default* \| *all* \| *connection_id* \| *user\@host* \[**`--port`** *port*]] \[**`--previous`**] [**`--fingerprint`**]
6268

6369
Added in Visual Studio 16.10. Updates the host key fingerprint of the specified connection(s).
@@ -135,7 +141,7 @@ ConnectionManager.exe remove 1975957870
135141
| `port` | The port used for the connection.<br/>Change the port for the specified connection: `ConnectionManager.exe modify -21212121 --property port=22`|
136142
| `shell` | The preferred shell to use on the remote system. Supported shells are `sh, csh, bash, tcsh, ksh, zsh, dash`<br/>To set the preferred shell to be zsh for the remote machine on the specified connection: `ConnectionManager.exe modify -21212121 --property shell=zsh`<br/>If the shell found on the Linux system isn't supported, then **`sh`** is used for all commands. |
137143
| `systemID` | The remote system type, such as `"OSX"`, `"Ubuntu"`. |
138-
| `timeout` | The connection timeout in milliseconds. Change the timeout for the specified connection with: `ConnectionManager.exe modify -21212121 --property timeout=100`
144+
| `timeout` | The connection timeout in milliseconds. Change the timeout for the specified connection with: `ConnectionManager.exe modify -21212121 --property timeout=100` |
139145
| `username` | The name of the user logged into the remote computer.<br/>To add a connection for a user named `"user"` on localhost: `ConnectionManager.exe add [email protected]`|
140146

141147
## See also

0 commit comments

Comments
 (0)