我正在尝试使用 SSH-RSA 公钥通过 ssh 复制一些文件。我已经接受了服务器中的主机密钥,反之亦然,因此密钥是同步的。现在我尝试通过 SSH 连接到主机并成功,但如果我在某些文件夹中调用“ls”,它会冻结。我也尝试按如下方式执行 scp 请求:
scp -v username@host_ip:/folder/folder1/file.txt /home/user/Desktop
我得到了这个答案:
OpenSSH_5.3p1, OpenSSL 1.0.0-fips 29 Mar 2010
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug2: ssh_connect: needpriv 0
debug1: Connecting to <ip_host> [<ip_host>] port 22.
debug1: Connection established.
debug1: permanently_set_uid: 0/0
debug1: Host '<ip_host>' is known and matches the RSA host key.
debug1: ssh_rsa_verify: signature correct
debug1: Authentication succeeded (publickey).
debug1: channel 0: new [client-session]
debug1: Entering interactive session.
debug1: Sending environment.
debug1: Sending env LANG = fr_FR.UTF-8
debug1: Sending command: scp -v -f /folder/folder1/file.txt
Sending file modes: C0664 3352 file.txt
Sink: C0664 3352 file.txt
file.txt 0% 0 0.0KB/s --:-- ETA^
file.txt 0% 0 0.0KB/s - stalled -^
我已经搜索并尝试将 MTU 从 1500 更改为 1492,但没有任何改变。有没有人知道会发生什么?非常感谢。
通过将 MTU 从我界面中的默认值 1500 降低到低于 1470 的值解决了这个问题。
在 RHEL 环境(我的环境)中修复 MTU:
编辑 /etc/sysconfig/network-scripts/ifcfg-eth0:
添加MTU,设置:
保存并关闭文件。重启网络: