Skip to content

Setting up your ssh config file

Ilaria edited this page May 7, 2020 · 2 revisions

Edit your config file ~/.ssh/config as follows, where aa00 should be replaced with your eecs username:

  Host frank
    HostName frank.eecs.qmul.ac.uk
    User aa00
    IdentityFile ~/.ssh/id_rsa
  Host epstein
    HostName epstein.eecs.qmul.ac.uk
    User aa00
    IdentityFile ~/.ssh/id_rsa
    ProxyCommand ssh -q -W %h:%p frank
  Host hepworth
    HostName hepworth.eecs.qmul.ac.uk
    User aa00
    IdentityFile ~/.ssh/id_rsa
    ProxyCommand ssh -q -W %h:%p frank
  Host kapoor
    HostName kapoor.eecs.qmul.ac.uk
    User aa00
    IdentityFile ~/.ssh/id_rsa
    ProxyCommand ssh -q -W %h:%p frank
  Host sandle
    HostName sandle.eecs.qmul.ac.uk
    User aa00
    IdentityFile ~/.ssh/id_rsa
    ProxyCommand ssh -q -W %h:%p frank
  Host buxton 
    HostName buxton.eecs.qmul.ac.uk
    User aa00
    IdentityFile ~/.ssh/id_rsa
    ProxyCommand ssh -q -W %h:%p frank
Clone this wiki locally