SET YOUR: ssh config FOR FASTER: ssh & scp
source: stackexchange
for faster SSH & SCP :
Edit: ~/.ssh/config (or create it)
1
2
3
4 Host happy
Hostname my.remote.server.com
User bob
Port 12345
Then:
1 | ssh happy |
or
1 2 | scp happy:~/tmp/myfiles /local/path/to/file scp /local/path/file happy:/remote/path/file |