Reputation: 25
I would like to configure the timeout for the ssh client that comes default in Windows 10 powershell? I know in ubuntu/WSL, it is /etc/ssh/ssh_config and it does work in WSL on the same PC but the timeout for my powershell is still low. Where do I configure it?
Reference for Ubuntu ssh config file: https://unix.stackexchange.com/a/261905/379247
Upvotes: 1
Views: 2004
Reputation: 13588
Per user config:
$env:USERPROFILE\.ssh\config
Global config:
$env:ProgramData\ssh\ssh_config
Upvotes: 2