我有一个运行 SSH 的 Amazon Linux 实例作为 SFTP 服务器。客户端登录,并被 chroot 到 NFS 挂载的目录中。用户可以读取、写入和删除文件,但重命名文件失败并出现非特定的“协议错误”。
这是我的sshd_config
文件的副本:
Port 22
Protocol 2
HostKey /etc/ssh/ssh_host_rsa_key
UsePrivilegeSeparation yes
KeyRegenerationInterval 3600
ServerKeyBits 1024
SyslogFacility AUTH
LogLevel INFO
LoginGraceTime 120
PermitRootLogin prohibit-password
StrictModes yes
RSAAuthentication yes
PubkeyAuthentication yes
IgnoreRhosts yes
RhostsRSAAuthentication no
HostbasedAuthentication no
PermitEmptyPasswords no
ChallengeResponseAuthentication no
PasswordAuthentication yes
X11Forwarding yes
X11DisplayOffset 10
PrintMotd no
PrintLastLog yes
TCPKeepAlive yes
#UseLogin no
AcceptEnv LANG LC_*
# Subsystem sftp /usr/lib/openssh/sftp-server -u 0002
Subsystem sftp internal-sftp -l DEBUG -u 002 -d %u
UsePAM yes
Match Group sftpusers
ChrootDirectory /autohome
AllowTCPForwarding no
X11Forwarding no
ForceCommand internal-sftp -l DEBUG -u 002 -d %u
当源和目标位于不同的文件系统上时,我已经看到对 sftp rename 的引用不起作用,但这里不是这种情况。我还看到对 sftp rename 的引用在不支持硬链接的文件系统上不起作用,但我认为我们的 NFS 服务器(AWS 文件存储网关)应该没问题。我很茫然,任何帮助表示赞赏。