Windows10 ProにHyper-VでLinuxを構築したが、WindowsからLinuxに対してのSSH接続の応答が悪い。DNSが悪さをしてそうですのでDNSをOFFにします。以下のsshd設定ファイルを更新します。
/etc/ssh/sshd_config
次のコマンドで編集を行います。
[user1@localvm002 ~]$ sudo vi /etc/ssh/sshd_config
115行目にあります UseDNS yes から UseDNS no に書き換えます
sshdのサービス再起動
sudo systemctl restart sshd.service
以下変更のポイント
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
98 #AllowAgentForwarding yes 99 #AllowTcpForwarding yes 100 #GatewayPorts no 101 X11Forwarding yes 102 #X11DisplayOffset 10 103 #X11UseLocalhost yes 104 #PermitTTY yes 105 #PrintMotd yes 106 #PrintLastLog yes 107 #TCPKeepAlive yes 108 #UseLogin no 109 #UsePrivilegeSeparation sandbox 110 #PermitUserEnvironment no 111 #Compression delayed 112 #ClientAliveInterval 0 113 #ClientAliveCountMax 3 114 #ShowPatchLevel no 115 UseDNS no 116 #PidFile /var/run/sshd.pid 117 #MaxStartups 10:30:100 118 #PermitTunnel no 119 #ChrootDirectory none 120 #VersionAddendum none |