client_loop: send disconnect: Broken pipe
If you encounter the above issue while ssh to a remote host, you should try to add following options to the /etc/ssh/ssh_config
.
Host *
IPQoS=throughput
client_loop: send disconnect: Broken pipe
If you encounter the above issue while ssh to a remote host, you should try to add following options to the /etc/ssh/ssh_config
.
Host *
IPQoS=throughput
Do you guys have any other suggestion to fix this issue please?
I tried both IPQos=throughoput as well as following as suggested by https://linuxhandbook.com/ssh-broken-pipe-error/
Host *
ServerAliveInterval 600
Any other links or help that I could look into please?
I did this in my ~/.ssh/config
Host *
IPQoS throughput
(no = sign)
and was successful.
Another syntax that does not use ~/.ssh/config
but does use ssh -o
does require the = sign
ssh -o IPQoS=throughput [email protected]
didn't work