Estou em uma máquina com o Windows 7, por isso estou usando uma ferramenta como o WinSCP para gerenciar meus servidores remotos que executam o Ubuntu.
Eu também uso uma linha de comando bem antiga, mas para o gerenciamento de arquivos geralmente uso o WinSCP, é uma boa ferramenta que funciona como um cliente FTP, mas acredito que seja SSH ou SFTP.
Agora, algo que é realmente irritante e me atrasa se, após 10-20 minutos (não tenho idéia do tempo real) de ficar ocioso, quando vou transferir um arquivo através do WinSCP, ele precisa se reconectar. ; é um processo rápido e não me pede uma senha novamente ou um arquivo de chave ... mas parece que é o tempo limite ou desconecta a um certo ponto ... não tenho certeza se realmente está desconectado ou não desde como se reconecta imediatamente, mas demora uns bons 15 a 30 segundos, o que é irritante.
Eu adoraria descobrir uma maneira de sempre ser rápido e rápido como se eu tivesse acabado de conectar o tempo todo e não o tempo limite, como acontece depois de ficar ocioso por um tempo.
Então, estou perguntando: essa é provavelmente uma configuração ou um problema no WinSCP ou, mais provavelmente, acho que é uma configuração no meu servidor?
Alguma idéia de como estender o tempo que permanece conectado sem que ele se reconecte o tempo todo?
Eu vi um lugar para procurar por um arquivo de configuração do SSH, então encontrei este arquivo sshd_config
em etc/ssh/sshd_config
o conteúdo está abaixo, não vejo nada que se destaque (não estou falando muito) ...
LogLevel INFO
# Authentication:
LoginGraceTime 120
PermitRootLogin yes
StrictModes yes
RSAAuthentication yes
PubkeyAuthentication yes
#AuthorizedKeysFile %h/.ssh/authorized_keys
# Don't read the user's ~/.rhosts and ~/.shosts files
IgnoreRhosts yes
# For this to work you will also need host keys in /etc/ssh_known_hosts
RhostsRSAAuthentication no
# similar for protocol version 2
HostbasedAuthentication no
# Uncomment if you don't trust ~/.ssh/known_hosts for RhostsRSAAuthentication
#IgnoreUserKnownHosts yes
# To enable empty passwords, change to yes (NOT RECOMMENDED)
PermitEmptyPasswords no
# Change to yes to enable challenge-response passwords (beware issues with
# some PAM modules and threads)
ChallengeResponseAuthentication no
# Change to no to disable tunnelled clear text passwords
#PasswordAuthentication yes
# Kerberos options
#KerberosAuthentication no
#KerberosGetAFSToken no
#KerberosOrLocalPasswd yes
#KerberosTicketCleanup yes
# GSSAPI options
#GSSAPIAuthentication no
#GSSAPICleanupCredentials yes
X11Forwarding yes
X11DisplayOffset 10
PrintMotd no
PrintLastLog yes
TCPKeepAlive yes
#UseLogin no
#MaxStartups 10:30:60
#Banner /etc/issue.net
# Allow client to pass locale environment variables
AcceptEnv LANG LC_*
Subsystem sftp /usr/lib/openssh/sftp-server
# Set this to 'yes' to enable PAM authentication, account processing,
# and session processing. If this is enabled, PAM authentication will
# be allowed through the ChallengeResponseAuthentication and
# PasswordAuthentication. Depending on your PAM configuration,
# PAM authentication via ChallengeResponseAuthentication may bypass
# the setting of "PermitRootLogin without-password".
# If you just want the PAM account and session checks to run without
# PAM authentication, then enable this but set PasswordAuthentication
# and ChallengeResponseAuthentication to 'no'.
UsePAM yes