web-dev-qa-db-ja.com

cygwinでのssh設定

Windows 7にCygwinをインストールしました。デフォルトでインストールしました。 ssh構成ファイル(〜/ .ssh/config)を使用して、ホストと接続オプションを設定したいと思います。

接続しようとしている間、通常のsshコマンドは設定を見つけることができません:ssh Host設定ファイルを明示的に指定した場合、すべて問題ありません:ssh -F〜/ .ssh/config

/ etc/sshのようなsshクライアントを設定するオプションが見つかりません

多分sshは私のホームフォルダがどこにあるのか知りませんか? (ホーム環境変数をホームフォルダーに設定しました)

18
Hubidubi

最初にssh-Host-configを実行する必要があります。 / etc /に「ssh_config」ファイルが生成されます。

18
user127350

sshコマンドは、/ etc/passwdからホームディレクトリの下でその設定ファイルを探します。したがって、HOME変数の設定は機能しません。

多くの方法がありますが、次のようにシンボリックリンクを作成するだけで修正できます。

ln -s〜/ home

1

受け入れられた回答によると、コマンドを使用して初期化します:

ssh-Host-config

Cygwinで空の/etc/ssh_configを作成することもできます。これは同じように機能します。

/etc/ssh_configによるssh-Host-configの作成も、すべてのコメントアウト行で空になります。


新しい設定でSSHをリロードします。

設定を有効にするには、サービスを再起動せずに/etc/ssh_configの編集を完了するだけです。

0
Nick Tsai

Cygwin sshは、設定が/home/$USER。しかし、cygwinのホームディレクトリ「〜」はC:/Users/$USER、 確かに /homeは空です。あなたは両方を持つことができますC:/Users/$USER/.sshおよび/home/$USER/.sshシンボリックリンクを作成して、有効なパスにしてください:

ln -s ~ /home/$USER
0
Mapad

他の答えは私にとってはうまくいきませんでした。 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,[email protected],hmac-ripemd160
#   EscapeChar ~
#   Tunnel no
#   TunnelDevice any:any
#   PermitLocalCommand no
#   VisualHostKey no
#   ProxyCommand ssh -q -W %h:%p gateway.example.com
#
#
Host *
    Port 22

それが次の人を助けることを願っています。

0

現在受け入れられている回答では、問題は解決しませんでした。代わりに、Windowsユーザーアカウントのホームディレクトリから.sshディレクトリをCygwinユーザーのホームディレクトリにシンボリックリンクしました。

ln -s /cygdrive/c/Users/<MY-USER>/.ssh /home/<MY-USER>/.ssh
0
tiguchi