Any College of Engineering student can use the tux labs to access the Engineering Network from off-campus. Follow the links below to specific setup instructions.


Access from Windows

Set up SecureCRT

Set up Xming


Access from Linux or Mac

Set up SSH

Using SCP

Access from Windows

We recommend using SecureCRT and Xming to connect to the tux labs. You can download both programs here.

Set up SecureCRT
  1. Install SecureCRT
  2. Launch SecureCRT and click the Connect button in the icon bar

    Connect button
  3. Right-click the Session folder and select the New Session option

    New Session
  4. Make sure SSH2 is selected and click Next

    ssh2
  5. The hostname you will use is gate.eng.auburn.edu:

    gate.eng.auburn.edu
  6. Enter your username in the provided field.
  7. Click Next, then Finish.

    Finish
  8. You will be back at the Connect screen. Right-click on the session you've just created and select Properties
    properties
  9. Change Ciphers

    Highlight the session and choose Properties. When the window opens click on SSH2 and in the Key exchange window check ecdh-sha2-nistp521.

    Then click Advanced in the left window pane and in the Cipher window check AES-256-CTR.


    SSH-Cipher to add for SecureCRT-1
    SSH-Cipher to add for SecureCRT-2
    SSH-Cipher to add for SecureCRT-3
  10. In the Properties menu, navigate to Connection>Port Forwarding>Remote/X11 and make sure Forward X11 packets is selected, then click OK

    x11 packets
  11. You are finished configuring SecureCRT. Click Connect and enter passwords when prompted to connect to the tux labs.

    connect
  12. You may be prompted to accept a new host key upon first connecting. Click Accept & Save.

    New Host Key
  13. Hit enter when prompted for the name of an Engineering host.
    connect-any
Set up Xming

Xming is an X Server used as a visual interface between Windows and Linux. It uses a Secure SHell program with X11 tunneling (SecureCRT) to send and receive data.

  1. Install Xming using the default settings.
  2. Make sure the Xming icon is visible in your system tray

    System Tray

    Xming System Tray Icon
  3. Log in to SecureCRT and run a visual program--an Xming window will open

    Run Matlab

    Xming Matlab Window

Access from Linux or Mac

To access the tux labs from a Linux or Mac machine, we recommend using the native SSH and SCP applications.

Set up SSH
  1. Open a terminal window
  2. The host you will SSH into is gate.eng.auburn.edu
    ssh -X <AU_ID>@gate.eng.auburn.edu
    
    1. When prompted for a host, hit enter to choose the default.
  3. If you are on a Mac, there is one more step. If you are on a Linux machine, you are done setting up SSH.
    1. On a Mac, download and install XQuartz using the default settings.
  4. You may now run graphical programs from the SSH session.

Using SCP

  1. SCP is used with the following syntax:

    scp <target> <destination>
    

    With your AU filespace identified by '<AU_ID>@scp.eng.auburn.edu:', depending on whether you're connecting from on or off campus. These addresses point to the root of your H: drive.
  2. With that in mind, to copy a file to the root of your H: drive, you would type:

    scp Desktop/myfile.c myid004@hpcc.eng.auburn.edu:
    
  3. And to copy myfile from the root of the H: drive:

    scp myid0004@hpcc.eng.auburn.edu:myfile.c Desktop