# Example of how to add Teach cluster login information to your computer's
# ~/.ssh/config file (if it doesn't exist, create one and change its permission
# such that only you can read or write. On the command line type: 
# chmod go-rwx ~/.ssh/config

# Teach host options (replace NNNN with the given number of your account):
HOST teach
    HOSTNAME teach.scinet.utoronto.ca
    User lcl_uothpc163sNNNN
    # Uncomment the following line if you decide to use ssh keys:
    #IdentityFile ~/.ssh/Your_Private_Identity_Filename

# Generic host options:
Host *
    ServerAliveCountMax 4
    ServerAliveInterval 15
    ForwardAgent no
    ForwardX11 no

# The options above allow you to access the teach cluster by just typing
# on your local terminal (or MobaXterm): 
#
# ssh teach
#
# instead of the usual command:
#
# ssh lcl_uothpc163sNNNN@teach.scinet.utoronto.ca 
#
# If your ssh session needs a graphical interface to plot the result of the
# simulation, for example, then add the -Y ssh option to forward the graphical
# X11 connections:
#
# ssh -Y teach
#
# For security reasons, be deliberate when using this option.