Putty 在家中凍結,但在辦公室工作正常

Putty 在家中凍結,但在辦公室工作正常

我有一個有趣的問題。

透過 Putty 從 Windows 7 連接到 Ubuntu Server 16.04 在我的家庭網路上凍結。 “ls -l”顯示幾行並凍結。開啟 vi 會使螢幕空白。此後它再也不會回來了。

任何 Linux shell 指令的 strace 也會凍結。我嘗試重新啟動 Windows 和 Linux。試試了不同版本的 Putty。沒有任何幫助我。

我的辦公室網路同樣可以正常運作,沒有任何問題。我嘗試重新啟動 Windows 和 Linux。試試了不同版本的 Putty。沒有任何幫助我。

   ubuntu@5x:~$ strace ifconfig
   execve("/sbin/ifconfig", ["ifconfig"], [/* 20 vars */]) = 0
   brk(NULL)                               = 0xd0b000
   access("/etc/ld.so.nohwcap", F_OK)      = -1 ENOENT (No such file or directory)
   access("/etc/ld.so.preload", R_OK)      = -1 ENOENT (No such file or directory)
   open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
   fstat(3, {st_mode=S_IFREG|0644, st_size=27822, ...}) = 0
   mmap(NULL, 27822, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7feb7de1a000
   close(3)                                = 0
   access("/etc/ld.so.nohwcap", F_OK

Putty凍結截圖

答案1

同樣的問題在這裡:透過 OpenVPN 從家裡存取 Ubuntu 伺服器導致ls -l某些目錄和許多其他命令凍結。當列出某些目錄時,WinSCP 也會凍結。

減少 VPN 連線上的 MTU 對我有用:

netsh interface ipv4 set subinterface "Local Area Connection* 2" mtu=1430 store=persistent
netsh interface ipv4 set subinterface "Ethernet 2" mtu=1430 store=persistent

謝謝,@bizna!

相關內容