Using a Cubbli workstation on a home computer

These instructions explain how to connect a home computer to the university’s Cubbli computer duuni.laitos.helsinki.fi.

If you do not need a connection for a specific computer (e.g. for files only on that particular computer), you can use Cubbli with a remote desktop .

    Using Cubbli on a Linux home computer

    The user must have a university username, a Linux computer at home and a Cubbli computer at work (duuni.laitos.helsinki.fi). Usually, the university’s firewall prevents users from accessing work computers from home using a direct ssh connection. For this reason, a computer with an open ssh port is needed in between. Using pangolin.it.helsinki.fi with the university username serves this purpose.

    If you only need an ssh connection, the command

    ssh -t universityusername@pangolin.it.helsinki.fi ssh

    universityusername@duuni.laitos.helsinki.fi


    opens an ssh connection to the work computer, and you only need to enter your password once.

    If you need X windowing, the command is

    ssh -X -t universityusername@pangolin.it.helsinki.fi ssh -X

    universityusername@duuni.laitos.helsinki.fi

    If you also need to copy files between your home and work computers, create a text file in your home directory ~/.ssh and name it as config. The file should contain the following rows:

    Host pangtunnel  

    Hostname pangolin.it.helsinki.fi  

    LocalForward 1111 duuni.laitos.helsinki.fi:22  

    User universityusername

         

    Host duuni  

    Hostname localhost  

    Port 1111  

    Forwardx11 yes  

    User universityusername

    Open the ssh tunnel with the command ssh -f -N -q pangtunnel (the password is the password for your user account)

    Now you can access your work computer with the following command (alternatively, you can use X windowing and the password for your user account):

    ssh duuni

    Use the following command to copy files between your home and work computers:

    scp homefile duuni:

    and

    scp duuni:workfile

    (Also in this case, the password is the password for your user account)

    You can also transfer files using the gftp graphic program and the following settings:

    Host: duuni Port: 1111 User:  universityusername Pass: AD password Protocol SSH2

    Gftp can also be used on a terminal with an open ssh tunnel using the command ssh -f -N -q pangtunnel

    Using Cubbli on a Mac home computer

    The above instructions also apply to Macs.

    Mac users can also transfer their files with graphic software Fugu (http://sourceforge.net/projects/fugussh/), selecting the following settings:

    Connect to: localhost Username: university username Port: 1111

    when the ssh tunnel has been opened in the Terminal program with the command.

    Using Cubbli on a home Windows PC

    Windows 10 users need a Putty terminal (page in Finnish). Open the ssh tunnel in the command window with the following command:

    "C:\Program Files\Putty\PLINK.EXE" -L 1111:duuni.laitos.helsinki.fi:22 username@pangolin.it.helsinki.fi -N

    Leave the window open. Now you can access your work computer using a ssh connection via the Putty program by selecting localhost as Connect to and 1111 as the port. Use the same settings to transfer files between your home and work computers with the WinSCP program (page in Finnish). X windowing can be done with Xming (page in Finnish).

    Give feedback

    The instructions site of the University of Helsinki's IT Helpdesk helps you with IT-related issues related to your work. Let us know how we can improve our instructions. We greatly appreciate your feedback!

    How would you improve these instructions?
    Back to top