An open API service indexing awesome lists of open source software.

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

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

```