Answers:
您必须先运行ssh-host-config。它将在/ etc /中生成一个“ ssh_config”文件。
我遇到过同样的问题。我想使用〜/ .ssh / config,因为我已经将该目录用于其他应用程序,并且不想维护2个副本。因此,创建/ etc / ssh_config目录不是理想的解决方案。
正如Fujimoto Youichi提到的那样,ssh会在/ etc / passwd中查找您的主目录,而不是$ HOME环境变量。
当前的cygwin版本(我正在使用2.6)不再在安装过程中创建/ etc / passwd。但是,很容易创建一个新的:
mkpasswd -c -p "$(cygpath -H)" > /etc/passwd
https://cygwin.com/cygwin-ug-net/mkpasswd.html包含有关可用标志的更多详细信息。
我没有看过代码,但ssh的偏好似乎是:
因此,如果只想使用〜/ .ssh / config中的ssh配置信息,请确保删除/ etc / ssh_config。
另外,请确保在进行更改后打开一个新的cygwin终端窗口,以使它们可用。
其他答案对我不起作用。我刚刚创建了c:\ cygwin64 \ etc \ ssh_config并粘贴到以下默认/示例文件中:
# This is the ssh client system-wide configuration file. See
# ssh_config(5) for more information. This file provides defaults for
# users, and the values can be changed in per-user configuration files
# or on the command line.
# Configuration data is parsed as follows:
# 1. command line options
# 2. user-specific file
# 3. system-wide file
# Any configuration value is only changed the first time it is set.
# Thus, host-specific definitions should be at the beginning of the
# configuration file, and defaults at the end.
# Site-wide defaults for some commonly used options. For a comprehensive
# list of available options, their meanings and defaults, please see the
# ssh_config(5) man page.
# Host *
# ForwardAgent no
# ForwardX11 no
# RhostsRSAAuthentication no
# RSAAuthentication yes
# PasswordAuthentication yes
# HostbasedAuthentication no
# GSSAPIAuthentication no
# GSSAPIDelegateCredentials no
# BatchMode no
# CheckHostIP yes
# AddressFamily any
# ConnectTimeout 0
# StrictHostKeyChecking ask
# IdentityFile ~/.ssh/identity
# IdentityFile ~/.ssh/id_rsa
# IdentityFile ~/.ssh/id_dsa
# Port 22
# Protocol 2,1
# Cipher 3des
# Ciphers aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128,aes128-cbc,3des-cbc
# MACs hmac-md5,hmac-sha1,umac-64@openssh.com,hmac-ripemd160
# EscapeChar ~
# Tunnel no
# TunnelDevice any:any
# PermitLocalCommand no
# VisualHostKey no
# ProxyCommand ssh -q -W %h:%p gateway.example.com
#
#
Host *
Port 22
希望对下一个人有帮助。
根据接受的答案,通过使用命令来初始化:
ssh-host-config
您也可以/etc/ssh_config
在Cygwin中创建空白,其作用相同。
将/etc/ssh_config
通过建立ssh-host-config
也与空出来线的所有评论。
要完成配置,您可以完成编辑/etc/ssh_config
而无需重新启动服务。