You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[wushuzh@veronica ~]$ docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
ef26a2ddd082 internap/fake-switches "/bin/sh -c 'fake-sw…" 5 seconds ago Up 2 seconds 0.0.0.0:32768->22/tcp pedantic_sammet
I am using minikube for my docker env, so I am using vm ip (not 127.0.0.1)
eval $(minikube -p minikube docker-env)
$ minikube ip
192.168.39.218
The error msg when I try to login the container.
$ ssh 192.168.39.218 -p 32768 -l root
Unable to negotiate with 192.168.39.218 port 32768: no matching key exchange method found. Their offer: diffie-hellman-group1-sha1,diffie-hellman-group14-sha1
The text was updated successfully, but these errors were encountered:
wushuzh
changed the title
how to setup ssh key with docker mode
how to login with docker mode
Nov 24, 2020
fake-switches seems to offer an old ssh cipher that has been deprecated,
we'll try to take a look at it.
In the meanwhile, While this is insecure, you can use command such as ssh -oKexAlgorithms=+diffie-hellman-group1-sha1 ... to accept to connect to host with insecure ciphers.
Hello,
I tried to launch fake-switches in docker mode. But there is an error when I tried to login. Anything (ssh-key?) I should do or config ?
I am using minikube for my docker env, so I am using vm ip (not 127.0.0.1)
The error msg when I try to login the container.
The text was updated successfully, but these errors were encountered: