I'm having problem with logging into my local-network-linux (server) ssh with Putty (and with Linux terminal, too)
When my server shows me request to insert username, I insert "root" and I do press enter.
I am waiting about seven seconds before it requests my password!
I also looked at this question
and tried accepted answer, also with command
/etc/init.d/ssh restart
It didn't work. My friend told me that I should have to use another SSH deamon, but I don't know which. What could I do now?
my current /etc/ssh/ssh_config config:
# 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
# ForwardX11Trusted yes
# RhostsRSAAuthentication no
# RSAAuthentication yes
# PasswordAuthentication yes
# HostbasedAuthentication no
GSSAPIAuthentication no
GSSAPIDelegateCredentials no
GSSAPIKeyExchange no
# GSSAPITrustDNS 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
SendEnv LANG LC_*
HashKnownHosts yes
localhostavoids a number of checks, I believe. And yes, this is all assuming OpenSSH on Linux; I can't help with debugging via PuTTY or Cygwin's OpenSSH, beyond possibly the Sysinternals Process Monitor. – geekosaur Jul 12 '11 at 19:14ssh, notsshd. Editing. – geekosaur Jul 12 '11 at 19:16sshdrunning and start another one on a different port:sshd -ddd -p 2222– Gilles 'SO- stop being evil' Jul 12 '11 at 20:32