S sekoitus macrumors member Original poster Sep 16, 2025 #1 Can someone please copy the default macOS Tahoe SSH configuration file for me? It should be located at: ~/.ssh/config To do this, open Terminal and run: cat ~/.ssh/config Then paste the output here. Thank you, I accidentally messed up my file.
Can someone please copy the default macOS Tahoe SSH configuration file for me? It should be located at: ~/.ssh/config To do this, open Terminal and run: cat ~/.ssh/config Then paste the output here. Thank you, I accidentally messed up my file.
Bigwaff Contributor Sep 16, 2025 #3 sekoitus said: Can someone please copy the default macOS Tahoe SSH configuration file for me? It should be located at: ~/.ssh/config To do this, open Terminal and run: cat ~/.ssh/config Then paste the output here. Thank you, I accidentally messed up my file. Click to expand... man ssh_config is your friend
sekoitus said: Can someone please copy the default macOS Tahoe SSH configuration file for me? It should be located at: ~/.ssh/config To do this, open Terminal and run: cat ~/.ssh/config Then paste the output here. Thank you, I accidentally messed up my file. Click to expand... man ssh_config is your friend
adrianlondon macrumors 604 Sep 16, 2025 #4 It's unique to every person, as it contains details of the hosts they wish to use SSH to connect to. It only exists once someone has added an entry - most Mac users won't have this file.
It's unique to every person, as it contains details of the hosts they wish to use SSH to connect to. It only exists once someone has added an entry - most Mac users won't have this file.
steinmb macrumors member Sep 16, 2025 #5 Agree with everything above, though, putting something like this at the top of the config file used to make sure the Keychain integration worked correctly in MacOS 15.x. Make sure you alter the `IdentityFile` to what ever ssh key you have generated. Code: Host * UseKeychain yes AddKeysToAgent yes IdentityFile ~/.ssh/id_ecdsa
Agree with everything above, though, putting something like this at the top of the config file used to make sure the Keychain integration worked correctly in MacOS 15.x. Make sure you alter the `IdentityFile` to what ever ssh key you have generated. Code: Host * UseKeychain yes AddKeysToAgent yes IdentityFile ~/.ssh/id_ecdsa