From f177538e4852b234381def8d7f88a3018a9e17ee Mon Sep 17 00:00:00 2001 From: Nick Date: Fri, 4 Jun 2021 03:12:16 -0400 Subject: [PATCH 1/3] Create stations.md --- facilities/stations.md | 63 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 facilities/stations.md diff --git a/facilities/stations.md b/facilities/stations.md new file mode 100644 index 00000000..ef0f7fa0 --- /dev/null +++ b/facilities/stations.md @@ -0,0 +1,63 @@ +# Neuropoly Workstations + + + +## 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 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 + From 46ec2c57eba7c210ce1fe70d3f383b2ea6dceb26 Mon Sep 17 00:00:00 2001 From: Nick Date: Fri, 4 Jun 2021 03:17:02 -0400 Subject: [PATCH 2/3] Create accounts.md --- onboarding/accounts.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 onboarding/accounts.md 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`. + +# ... From b3f1c6c8d12aa3d9f5f6a001d1f3721c12ac1eee Mon Sep 17 00:00:00 2001 From: Nick Date: Fri, 4 Jun 2021 03:25:00 -0400 Subject: [PATCH 3/3] Update stations.md --- facilities/stations.md | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/facilities/stations.md b/facilities/stations.md index ef0f7fa0..926bf129 100644 --- a/facilities/stations.md +++ b/facilities/stations.md @@ -1,6 +1,12 @@ -# Neuropoly Workstations +# 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 @@ -14,7 +20,15 @@ First, you need to connect to [the VPN](http://www.polymtl.ca/si/reseaux/acces-s # ... -# ... +# 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