1,885
edits
Changes
no edit summary
== Available Servers ==
=== AArch64 === ==== : aarchie ====
The current [[ARMv8]] AArch64 system known as '''aarchie''' or '''archie'''. This is a system that is currently located inside the [[EHL]]. To connect to this system, you have to go through the EHL gateway on port 2200.
ssh -p 2200 ''username''@ehl.cdot.systems
ssh xerxes.internal.cdot.systems To connect from outside Seneca: ssh -p 2201 ''username''@ehlxerxes.cdot.systems
== Simplified SSH Access ==
If you're using OpenSSH (the ssh client used on most Linux systems and other platforms), you can simplify complex ssh command lines by placing host connection details in the file <code>~/.ssh/config</code>:
Host "bettyaarchie"
hostname "ehl.cdot.systems"
user "YourUserID"
port 2201 Host "betty-internal" hostname "ehl.internal.cdot.systems" user "YourUserId" port 22012200
Host "xerxes"
hostname "ehl.cdot.systems"
user "YourUserId"
Once you have added these lines (inserting your user ID where appropriate) and set the permission on that file (<code>chmod 0600 ~/.ssh/config</code>) you can use these commands to access betty and xerxes from outside of Senecathe servers:
ssh bettyaarchie
ssh xerxes
{{Admon/important|Common SSH Problems|Your ssh private key must be in your <code>~/.ssh</code> directory and have correct permissions (0600). If your SSH public key is not named <code>~/.ssh/id_rsa</code>, your SSH client may not automatically find it. You can specify the identity (private key) file using the <code>-i</code> argument to the SSH command.}}