Skip to content

Add information regarding authentication and SSH remoting #2350

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 17, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,15 @@ In addition you will need to enable password authentication and optionally key b
sudo launchctl start com.openssh.sshd
```

## Authentication

PowerShell remoting over SSH relies on the authentication exchange between the SSH client and SSH service and does not implement any authentication schemes itself.
This means that any configured authentication schemes including multi-factor authentication is handled by SSH and independent of PowerShell.
For example, you can configure the SSH service to require public key authentication as well as a one-time password for added security.
Configuration of multi-factor authentication is outside the scope of this documentation.
Refer to documentation for SSH on how to correctly configure multi-factor authentication and validate it works outside of PowerShell
before attempting to use it with PowerShell remoting.

## PowerShell Remoting Example

The easiest way to test remoting is to just try it on a single machine.
Expand Down