Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Host hee-build-aws
    Hostname aws.jump.tis.nhs.uk
    port 22
    User bastion
#RabbitMQ STAGE
LocalForward 25672 10.160.0.147:15672
#Neo4J HTTP, then BOLT
LocalForward 27687 10.160.0.150:7687
LocalForward 27474 10.160.0.150:7474
    ForwardAgent yes
    PubKeyAuthentication yes
    IdentityFile ~/.ssh/id_rsa

#Build Env

Host 10.140.0.*
    User heetis
    ProxyCommand ssh hee-build-aws nc %h %p
    ForwardAgent yes
    StrictHostKeyChecking no

#Stage Env
Host 10.160.0.*
    User heetis
    ProxyCommand ssh hee-build-aws nc %h %p
    ForwardAgent yes
    StrictHostKeyChecking no

#Prod Env
Host 10.170.0.*
    User heetis
    ProxyCommand ssh hee-build-aws nc %h %p
    ForwardAgent yes
    StrictHostKeyChecking noHost 10.200.0.*
    User heetis
    ForwardAgent yes
    StrictHostKeyChecking no

#NIMDTA Env

Host 10.254.*.*
    User heetis
    ProxyCommand ssh hee-build-aws nc %h %p
    ForwardAgent yes
    StrictHostKeyChecking no

#Bastion Env

Host 10.99.0.*
    User bastion
    ProxyCommand ssh hee-build-aws nc %h %p
    ForwardAgent yes
    StrictHostKeyChecking no

Host github.com
    Hostname ssh.github.com
    Port 443

...