Created
July 27, 2015 20:55
-
-
Save dsalazar-carecloud/6af2e83b269cb7195484 to your computer and use it in GitHub Desktop.
~/.ssh/config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Host <10.?>.*.* | |
User <User> | |
StrictHostKeyChecking no | |
UserKnownHostsFile /dev/null | |
IdentityFile <Production Identity File> | |
ProxyCommand ssh -W %h:%p <Bastion-Jump-Host-Name> | |
Host <Bastion-Jump-Host-Name> | |
HostName <Public-IP> | |
User <User> | |
StrictHostKeyChecking no | |
UserKnownHostsFile /dev/null | |
IdentityFile <Bastion Identity File> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment