-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Another connection issue #75
Comments
Does it work if you leave out |
No, it does not work. When doing ssh into 10.11.99.1, I have the message |
That's a bit weird, as the exception from Paramiko is about timing out, whereas the issue in openssh-client is that that RSA isn't supported anymore. |
Yep, since |
I forgot to mention I have a Remarkable 2. |
Have you remouse with 10.11.99.1, so that it doesn't use your ssh config? |
Here is the result of
|
Can you try with the I think it doesn't like your default ssh key. You might also try generating an RSA ssh key and use the |
Adding the
Though for having it working properly (i.e., without paramiko exception), I had to replace |
Is this still an issue? I'm not sure why |
I fail using remouse, because (I guess) of some connection issue. The instruction
remouse --address remarkable --debug
yields:rDebugging enabled... Connecting to input 'remarkable'
then, after a couple of minutes:
Traceback (most recent call last): File "/usr/bin/remouse", line 8, in <module> sys.exit(main())
File "/home/marc/.local/lib/python3.10/site-packages/remarkable_mouse/remarkable_mouse.py", line 138, in main rm_inputs = open_rm_inputs(
File "/home/marc/.local/lib/python3.10/site-packages/remarkable_mouse/remarkable_mouse.py", line 73, in open_rm_inputs client.connect(
File "/home/marc/.local/lib/python3.10/site-packages/paramiko/client.py", line 349, in connect retry_on_signal(lambda: sock.connect(addr))
File "/home/marc/.local/lib/python3.10/site-packages/paramiko/util.py", line 283, in retry_on_signal return function()
File "/home/marc/.local/lib/python3.10/site-packages/paramiko/client.py", line 349, in <lambda> retry_on_signal(lambda: sock.connect(addr))
TimeoutError: [Errno 110] Connection timed out
The remarkable config is:
Host remarkable
Hostname 10.11.99.1
User root
Port 22
IdentityFile ~/.ssh/remarkable2
PubkeyAcceptedKeyTypes=+ssh-rsa
HostKeyAlgorithms=+ssh-rsa
I checked that
ssh remarkable
works just fine, yet.The text was updated successfully, but these errors were encountered: