forked from francoismichel/ssh3
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
README.md add secret-path in client examples
- Loading branch information
1 parent
3877679
commit fa0545d
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -182,14 +182,14 @@ Host my-server | |
|
||
Similarly to what OpenSSH does, the following `ssh3` command will connect you to the SSH3 server running on 192.0.2.0 on UDP port 443 using public key authentication with the private key located in `.ssh/id_rsa` : | ||
|
||
ssh3 my-server | ||
ssh3 my-server/my-secret-path | ||
|
||
If you do not want a config-based utilization of SSH3, yo ucan read the sections below to see how to use the CLI parameters of `ssh3`. | ||
|
||
#### Private-key authentication | ||
You can connect to your SSH3 server at my-server.example.org using the private key located in `~/.ssh/id_rsa` with the following command: | ||
You can connect to your SSH3 server at my-server.example.org listening on `/my-secret-path` using the private key located in `~/.ssh/id_rsa` with the following command: | ||
|
||
ssh3 -privkey ~/.ssh/id_rsa [email protected] | ||
ssh3 -privkey ~/.ssh/id_rsa [email protected]/my-secret-path | ||
|
||
#### Agent-based private key authentication | ||
The SSH3 client works with the OpenSSH agent and uses the classical `SSH_AUTH_SOCK` environment variable to | ||
|
@@ -204,7 +204,7 @@ a direct access to the private key but you only have access to the public key. | |
While discouraged, you can connect to your server using passwords (if explicitly enabled on the `ssh3-server`) | ||
with the following command: | ||
|
||
ssh3 -use-password [email protected] | ||
ssh3 -use-password [email protected]/my-secret-path | ||
|
||
#### OpenID Connect authentication (still experimental) | ||
This feature allows you to connect using an external identity provider such as the one | ||
|