Connecting to the Workstation

The workstation is accessed using SSH.

1 Connection details

Item Value
Hostname mod-linux-ws01
Protocol SSH
Port 22

2 Connect from Linux or macOS

Open a terminal and run:

ssh username@mod-linux-ws01

Replace username with your own username.

3 Connect from Windows Terminal or PowerShell

Recent versions of Windows include an SSH client.

ssh username@mod-linux-ws01

4 Connect using PuTTY

Open PuTTY and enter:

Field Value
Host Name mod-linux-ws01
Port 22
Connection type SSH

Click Open and log in with your username and password.

5 Connect using MobaXterm

MobaXterm is useful because it provides SSH, file browsing, and terminal access in one program.

Create a new SSH session:

Field Value
Remote host mod-linux-ws01
Username your workstation username
Port 22

6 Connect using VS Code Remote SSH

VS Code Remote SSH is useful for editing scripts directly on the workstation.

Example SSH config entry:

Host maemod-workstation
    HostName mod-linux-ws01
    User username

Then connect to maemod-workstation from VS Code.

7 Disconnect

To log out:

exit