diff --git a/facilities/stations.md b/facilities/stations.md new file mode 100644 index 00000000..926bf129 --- /dev/null +++ b/facilities/stations.md @@ -0,0 +1,77 @@ +# Neuropoly Computers + + + +## Polygrames + +To access most in-house computers, whether on-campus or remote, you must have an [active polygrames account](../onboarding/accounts.md#polygrames). + +## + +## Connecting to Neuropoly Remotely + +### VPN + +First, you need to connect to [the VPN](http://www.polymtl.ca/si/reseaux/acces-securise-rvp-ou-vpn). + +* Windows: ... +* Mac: ... +* Linux: `openconnect ...` + +# ... + +# SSH + +``` +ssh username@STATION.neuro.polymtl.ca +``` + +For Windows: (WSL? PuTTY?) + +You can use ssh even while on campus to connect to other machines and transfer files, etc. + +# SSH Shortcut + +Add this to your `~/.ssh/config` file to allow you to just type `ssh joplin` or any other host and be connected to the right place with the right username: + +``` +Host joplin +HostName joplin.neuro.polymtl.ca + +Host ferguson +HostName ferguson.neuro.polymtl.ca + +Host abbey +HostName abbey.neuro.polymtl.ca + +Host bireli +HostName bireli.neuro.polymtl.ca + +Host rosenberg +HostName rosenberg.neuro.polymtl.ca + +Host romane +HostName romane.neuro.polymtl.ca + +Host tristano +HostName tristano.neuro.polymtl.ca + +Host data +HostName data.neuro.polymtl.ca +User git + +Match host *.neuro.polymtl.ca +User +``` + +Add this to your `~/.ssh/config` to make multiple ssh connections faster and without retyping your password: + +``` +Host * +ControlMaster auto +ControlPath ~/.ssh/%r@%h:%p +ControlPersist 3s +``` + +## Computing Stations + diff --git a/onboarding/accounts.md b/onboarding/accounts.md new file mode 100644 index 00000000..f51c6c5a --- /dev/null +++ b/onboarding/accounts.md @@ -0,0 +1,14 @@ +# Accounts + +# ... + +## polygrames + +Polygrames is an ActiveDirectory server which grants access to various computation resources available in the laboratory. + +Please follow this [link](http://www.grames.polymtl.ca/facilities/servers-information/create_account) to request a polygrames network account. +Provide your Polytechnique ID number and specify: Prof. Cohen-Adad, Program - Biomedical engineering. + +Your polygrames username will look like `P000000` or `u000000`. + +# ...