Wolfgang Tichy


Access to the git repos of the FAU NR group via the bastion host

The git repo server (quark.physics.fau.edu) is behind a firewall and can be accessed via a bastion host (bast.hpc.fau.edu). To make this work you need to add the following to your .ssh/config :
Host bast-giter
   Hostname bast.hpc.fau.edu
   User giter
   IdentityFile  path_to_private_key_on_local_client

Host quark.physics.fau.edu
   IdentityFile  path_to_private_key_on_local_client
   User giter
   ProxyCommand ssh -W %h:%p  giter@bast-giter