Portable SSH Server
Find a file
dependabot[bot] ece9017869
build(deps): bump actions/checkout from 2 to 3 (#2)
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2...v3)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-08-09 09:03:34 +09:00
.github build(deps): bump actions/checkout from 2 to 3 (#2) 2023-08-09 09:03:34 +09:00
cmd support --unix-socket 2023-08-09 08:37:54 +09:00
main implement basic handy-sshd 2023-08-09 08:01:01 +09:00
version bump: 0.1.0 2023-08-09 08:58:16 +09:00
.goreleaser.yml implement basic handy-sshd 2023-08-09 08:01:01 +09:00
CHANGELOG.md bump: 0.1.0 2023-08-09 08:58:16 +09:00
go.mod implement basic handy-sshd 2023-08-09 08:01:01 +09:00
go.sum implement basic handy-sshd 2023-08-09 08:01:01 +09:00
LICENSE implement basic handy-sshd 2023-08-09 08:01:01 +09:00
pty_related_unix.go implement basic handy-sshd 2023-08-09 08:01:01 +09:00
pty_related_unsupported.go implement basic handy-sshd 2023-08-09 08:01:01 +09:00
README.md docs: add "Examples" 2023-08-09 08:52:43 +09:00
server.go implement basic handy-sshd 2023-08-09 08:01:01 +09:00

handy-sshd

Portable SSH Server

Examples

# Listen on 2222 and accept user name "john" with password "mypassword"
handy-sshd -p 2222 --user "john:mypassword"
# Listen on 2222 and accept user name "john" without password
handy-sshd -p 2222 --user "john:"
# Listen on 2222 and accept users "john" and "alice" without password
handy-sshd -p 2222 --user "john:" --user "alice:"
# Listen on unix domain socket
handy-sshd --unix-socket /tmp/my-unix-socket --user "john:"