Login

Login #

Please make sure that your client PC is connected to OMUNET (e.g. OMUNET-1X, VPN) to login to the OMUI Server.

Let’s login to the server:

$ ssh [username]@172.26.59.40

Change your password #

It is recommended to change the initial password.

If you want to change the password, run the following command on the server:

$ passwd

(Optional) SSH Public Key Authentication #

If you are connecting from a shared PC, do not do the following. It may allow others to login with your credentials.

SSH public key authentication allows you to login to the server without entering your password everytime.

First, create a public/private key pair on the client PC. You will be asked to set a passphrase. If you don’t want to login with your password, leave it blank and press Enter.

$ ssh-keygen

Next, copy the public key to the server.

$ ssh-copy-id [username]@172.26.59.40

Let’s check if it works. Run the following command and confirm that you can login without entering a password.

$ ssh [username]@172.26.59.40