https://github.com/databus23/golang-issue-18711
A repro for https://github.com/golang/go/issues/18711
https://github.com/databus23/golang-issue-18711
Last synced: about 1 month ago
JSON representation
A repro for https://github.com/golang/go/issues/18711
- Host: GitHub
- URL: https://github.com/databus23/golang-issue-18711
- Owner: databus23
- Created: 2017-01-26T23:02:34.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-01-26T23:20:36.000Z (over 9 years ago)
- Last Synced: 2025-03-21T01:45:35.396Z (over 1 year ago)
- Language: Go
- Size: 128 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This repo contains a repro for https://github.com/golang/go/issues/18711
It creates an ssh server using `golang.org/x/crypto/ssh` and starts 20 concurrent openssh clients that connect to the server until an attempt fails.
Example:
```
docker run -it -v $PWD:/go/src/handshake -w /go/src/handshake golang:1.7.4 go run sshd.go exit: 127
2017/01/26 22:55:01 Listening on 2200...
2017/01/26 22:55:01 Starting 20 concurrent clients
..............................................................................................................................................................................................................................................................................................................................................................................................................2017/01/26 22:55:27
exit status 255Warning: Permanently added '[localhost]:2200' (RSA) to the list of known hosts.
Server denied authentication request: 20
exit status 1
```