How to use SSH options with Konqueror?
Stephen Dowdy
sdowdy at ucar.edu
Tue Jul 13 18:12:49 BST 2010
On 06/23/2010 09:26 AM, Dotan Cohen wrote:
> I have some dual-boot systems that get one partition changed
> regularly. In these cases I would like to disable strict host key
> checking temporarily. That is easy enough to do from a terminal:
> $ ssh -o UserKnownHostsFile=/dev/null -o stricthostkeychecking=no user at address
>
> However, how can I use these options when accessing the machine via
> Konqueror, with an address like this:
> ssh://user@address
>
Dotan,
Is it acceptable to create an ssh_config pseudo wildcard rule
to allow this?
in ~/.ssh/config add a stanza like:
# leverage wildcards and proxycommand via netcat to port 22
Host *_tmp
UserKnownHostsFile /dev/null
StrictHostKeyChecking no
ProxyCommand nc $(basename %h _tmp) 22
Then, instead of connecting to 'ssh://user@twinky', use
'ssh://user@twinky_tmp'
--stephen
___________________________________________________
This message is from the kde mailing list.
Account management: https://mail.kde.org/mailman/listinfo/kde.
Archives: http://lists.kde.org/.
More info: http://www.kde.org/faq.html.
More information about the kde
mailing list