Disable SSH Kitten for specific hosts (Windows) #6609
-
Hi, I'm having issues with the SSH Kitten for a specific host: a Windows one, my personal desktop.
I can solve this by doing I don't care for using any of Kitty's special features - I just want to SSH into my remote host without any special options or arguments. I tried a couple variations of the following config, but nothing really works. Maybe I am misunderstanding what these options do?
|
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 15 replies
-
Put it in ssh.conf
|
Beta Was this translation helpful? Give feedback.
-
Works for me with
kitten ssh --kitten=delegate=ssh localhost
Then ps aux | grep ssh
there is no kitten in the output showing that the ssh kitten did indeed
delegate to ssh, as expected.
|
Beta Was this translation helpful? Give feedback.
-
On Fri, Sep 08, 2023 at 02:28:27AM -0700, Xevion wrote:
Okay, making a little progress.
The following configurations of hostname worked for me (in using `delegate`)
```
hostname *
hostname xevion@*
```
Even when using a Host alias (defined in `~/.ssh/config`) like `ssh desktop`, it worked just fine.
It doesn't work when the hostname is defined as an IPv4 address like `192.168.100.1`.
Works fine for me with
hostname 127.0.0.1
|
Beta Was this translation helpful? Give feedback.
af42135