저는 Window 7 컴퓨터에 있으므로 WinSCP와 같은 도구를 사용하여 Ubuntu를 실행하는 원격 서버를 관리해야합니다.
나는 좋은 오래된 명령 줄도 사용하지만 파일 관리에는 일반적으로 WinSCP를 사용합니다 .FTP 클라이언트처럼 작동하지만 SSH 또는 SFTP를 통해 작동한다고 생각되는 멋진 도구입니다.
WinSCP를 통해 파일을 전송할 때 10-20 분 후에 (실제 시간을 알지 못함) 유휴 상태가되면 정말 짜증나고 속도가 느려집니다 .WinSCP를 통해 파일을 전송할 때 다시 연결하는 것을 좋아해야합니다. 프로세스를 수행하고 비밀번호 또는 키 파일을 다시 묻지 않습니다 ...하지만 시간이 초과되거나 특정 지점과의 연결이 끊어진 것 같습니다 ... 재연 결과 같이 실제로 연결이 끊어 졌는지 아닌지 확실하지 않습니다. 지금 당장 좋지만 15-30 초가 걸리므로 성가신 일입니다.
나는 항상 연결되어 있고 한동안 유휴 상태가 된 것처럼 시간이 초과되지 않는 것처럼 항상 빠르고 빠르 게하는 방법을 알고 싶습니다.
그래서 나는 이것이 WinSCP의 설정 또는 문제 일 가능성이 있거나 서버의 설정이라고 생각할 가능성이 더 높은지 묻습니다.
항상 다시 연결하지 않고 로그온 상태를 유지하는 방법에 대한 아이디어가 있습니까?
SSH 구성 파일을 찾을 수있는 곳을 보았으므로 내용 의이 파일 이 아래 sshd_config
에 있음을 발견했습니다 etc/ssh/sshd_config
.
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