diff options
-rw-r--r-- | dotfiles/.ssh/config | 48 |
1 files changed, 36 insertions, 12 deletions
diff --git a/dotfiles/.ssh/config b/dotfiles/.ssh/config index 98c6f19..9cd0152 100644 --- a/dotfiles/.ssh/config +++ b/dotfiles/.ssh/config @@ -13,59 +13,83 @@ Host takemi Host aws-prod HostName virginia-bastion.maestro.vhlcentral.com ForwardAgent yes + User dthompson Host aws-staging HostName bastion.ms.vhlcentral.com ForwardAgent yes - -Host aws-dev - HostName bastion.dev.vhlcentral.com - ForwardAgent yes + User dthompson Host aws-mumbai-dev HostName mumbai-bastion.dev.vhlcentral.com ForwardAgent yes + User dthompson Host aws-dev HostName bastion.dev.vhlcentral.com ForwardAgent yes + User dthompson Host aws-qa HostName bastion.qa.vhlcentral.com ForwardAgent yes + User dthompson Host aws-store HostName store-bastion.ci.vistahigherlearning.com ForwardAgent yes + User dthompson Host aws-susa HostName bastion2.santillanausa.com ForwardAgent yes + User dthompson Host *.dev.vhlcentral.internal ProxyCommand ssh aws-dev -W %h:22 ForwardAgent yes + User dthompson Host *.production.vhlcentral.internal - ProxyCommand ssh aws-prod -W %h:22 - ForwardAgent yes + ProxyCommand ssh aws-prod -W %h:22 + ForwardAgent yes + User dthompson Host 10.50.* ProxyCommand ssh aws-staging -W %h:22 + User dthompson + +Host aws-prod + HostName virginia-bastion.maestro.vhlcentral.com + ForwardAgent yes + User dthompson Host 10.30.* - ProxyCommand ssh aws-prod -W %h:22 + ProxyCommand ssh aws-prod -W %h:22 + ForwardAgent yes + User dthompson Host 10.31.* - ProxyCommand ssh aws-susa -W %h:22 + ProxyCommand ssh aws-susa -W %h:22 + ForwardAgent yes + User dthompson Host 10.60.* - ProxyCommand ssh aws-dev -W %h:22 - ForwardAgent yes + ProxyCommand ssh aws-dev -W %h:22 + ForwardAgent yes + User dthompson Host 10.61.* - ProxyCommand ssh aws-mumbai-dev -W %h:22 - ForwardAgent yes + ProxyCommand ssh aws-mumbai-dev -W %h:22 + ForwardAgent yes + User dthompson + +Host 10.63.* + ProxyCommand ssh aws-qa -W %h:22 + ForwardAgent yes + User dthompson Host 10.41.* ProxyCommand ssh aws-store -W %h:22 + ForwardAgent yes + User dthompson |