warp-tech / warpgate

Smart SSH, HTTPS and MySQL bastion that requires no additional client-side software
Apache License 2.0
3.93k stars 122 forks source link

lost connection #1100

Closed Phillipip closed 1 month ago

Phillipip commented 1 month ago

Is there a way to set the time that an SSH connection is kept open? Unfortunately, I lose the connection pretty quickly...

budachst commented 1 month ago

You should be able to tackle that by setting this ssh option on your ssh client:

ServerAliveInterval 10

This will ping the server every 10 seconds, keeping the connection alive.

Phillipip commented 1 month ago

Ah great, thank you very much. I will test it.