SSH server entry point. #77

Merged
lash merged 11 commits from lash/ssh-2 into master 2024-09-26 15:55:51 +02:00
2 changed files with 3 additions and 1 deletions
Showing only changes of commit c2b68231f5 - Show all commits

2
.gitignore vendored
View File

@ -4,3 +4,5 @@ go.work*
**/*/*.bin **/*/*.bin
**/*/.state/ **/*/.state/
cmd/.state/ cmd/.state/
id_*
*.gdbm

View File

@ -30,5 +30,5 @@ go run -v -tags logtrace ./cmd/ssh/main.go -h <host> -p <port> [--dbdir <dbpath>
## Connect to the server ## Connect to the server
``` ```
ssh -T -p <port> -i <client_publickey_filepath> <host> ssh [-v] -T -p <port> -i <client_publickey_filepath> <host>
``` ```