hpr1856 :: ssh config
Klaatu talks about ssh config.
Hosted by Klaatu on Monday, 2015-09-14 is flagged as Clean and is released under a CC-BY-SA license.
ssh, configuration, tutorial, hints and tips.
3.
The show is available on the Internet Archive at: https://archive.org/details/hpr1856
Listen in ogg,
spx,
or mp3 format. Play now:
Duration: 00:12:27
general.
Put a file called 'config' into ~/.ssh and you can define any option you would normally provide as part of the command as an automatically-detected configuration.
For example:
host foo hostname foo.org identityfile /home/klaatu/.ssh/foo_rsa port 2740 protocol 2
Makes the command 'ssh klaatu@foo' look like this to SSH:
ssh -p2740 -i ~/.ssh/foo_rsa klaatu@foo.org