1 parent 759e519 commit 08ff99eCopy full SHA for 08ff99e
1 file changed
README.md
@@ -29,6 +29,10 @@ Quick Start
29
1. Generate keys (run once):
30
31
```bash
32
+ # Generate server host key
33
+ qsh genkey -o ./server_hppk
34
+
35
+ # Generate client key
36
qsh genkey -o ./id_hppk
37
```
38
@@ -37,7 +41,13 @@ Quick Start
41
2. Start the server:
42
39
43
40
- qsh server -l :2323 -c client-1=/etc/qsh/id_hppk.pub
44
+ qsh server -l :2323 --host-key ./server_hppk -c client-1=/etc/qsh/id_hppk.pub
45
+ ```
46
47
+ Or use a clients configuration file:
48
49
+ ```bash
50
+ qsh server -l :2323 --host-key ./server_hppk --clients-config /etc/qsh/clients.json
51
52
53
3. Connect from the client (client mode is the default when no subcommand is provided):
0 commit comments