Fundraising/tech/ssh config: Difference between revisions 372 BYTES ADDED
, 3 YEARS AGO
more basic explanation
In order to access frack hosts (such as frdev1001) you must have a proper [https://en.wikipedia.org/wiki/Secure_Shell ssh] ssh config. ToThis editinvolves itmaking ina OSX,[https://en.wikipedia.org/wiki/Hidden_file_and_hidden_directoryopenhidden adirectory] terminalinside andyourtype:
[https://en.wikipedia.org/wiki/Home_directory home directory]:
mkdir -p ~/.ssh
Next make a new [https://en.wikipedia.org/wiki/Computer_file file] in the new directory:
touch ~/.ssh/config
Open the file in your preferred [https://en.wikipedia.org/wiki/Text_editor text editor]:
open -a TextEdit ~/.ssh/config
The file should look more or less like this:
Host frbast.wikimedia.org
User your_username_here
IdentityFile ~/.ssh/id_rsa
ProxyCommand ssh -a -W %h:%p frbast.wikimedia.org
Make it so, and save. The name of "id_rsa" may vary.
Wikitech