We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c22237 commit ef54c63Copy full SHA for ef54c63
README.md
@@ -48,6 +48,18 @@ $ ssh-keygen -L -f /run/user/1000/sshca/example-cert.pub
48
# Shell to some host that accepts the CA
49
```
50
51
+You might want to configure SSH to try the CA's certificate first - otherwise
52
+SSH seems to still prefer the Security Key over the certificate in most
53
+circumstances:
54
+
55
+```sh
56
+$ cat >> ~/.ssh/config
57
+Match host *.example.com
58
+ IdentitiesOnly yes
59
+ IdentityFile /run/user/1000/sshca/example
60
+ IdentityFile ~/.ssh/id_ecdsa_sk
61
+```
62
63
## Setting up the CA
64
65
You need to setup a host where users can log into (preferably) a dedicated user
0 commit comments