Overview
LanGuard can make use of public key SSH authentication when scanning Unix based computers. This procedure describes the following steps that are necessary to use this authentication method:
- Create an RSA key pair on the Unix computer
id_rsa = private key; id_rsa.pub = public key
- Configure the Unix computer to allow SSH connections via the generated RSA key pair.
- Configure LanGuard to use the private key to connect to the Unix computer.
Process
- Connect to the Unix computer as the user:
root
- Run the command:
ssh-keygen -t rsa
. - Confirm the default output file: /root/.ssh/id_rsa
- Do not enter a passphrase; press enter to indicate No Passphrase.
- Press enter again to confirm.
- Type
cd /root/.ssh
to change into the directory.- NOTE: There is a period in the directory name.
- Type
ls
and press enter.- NOTE: You should see the id_rsa and id_rsa.pub keys in the .ssh directory.
- Type
cp authorized_keys authorized_keys_backup
and press enter.- NOTE: The file authorized_keys holds the public keys of key pairs that are allowed to connect to the SSH server.
- Type
cat id_rsa.pub >> authorized_keys
and press enter.- NOTE: This command appends the public key that was created in the beginning to the authorized_keys file.
- Type
pico id_rsa
and press enter.- NOTE: This opens the private key in a text editor.
- Copy and paste the contents of this file to a notepad on the LanGuard server.
- NOTE: Do not attempt to transcribe the contents by typing it. Once it is copied, press Ctrl+X to quit Pico and choose NO when asked to save the file. Save the notepad file in a safe place on the LanGuard server's desktop. Ensure that it does not have the .txt extension by placing double quotes around the file name. For the purpose of these instructions, we'll call the file id_rsa.
- Open the LanGuard console and access the Scan tab.
- Type in the hostname or IP of the Unix computer.
- Open the credentials' drop-down list and choose A private key file.
- Enter the user name:
root
- Point the key file field to the copied id_rsa private key file.
- Click Scan.
- Check the scan results and errors; make sure the information is collected and that there are no SSH connection errors.
If the connection fails, it can be tested via an SSH client PuTTY:
- Download PuTTY.
- Extract the file to a folder on the LanGuard server.
- Run the command:
PuttyGen.exe
- Go to File > Load Private Key.
- Load the id_rsa file.
- Click Save Private Key.
- NOTE: This saves the private key in a format that PuTTY supports. Name the file id_rsa.ppk with the addition of the extension PPK.
- Close PuttyGen.
- Launch the application:
Putty.exe
- Enter the hostname or IP address of your Unix computer.
- From the left hand side, choose Connection > SSH > AUTH.
- Under Private key file for authentication choose id_rsa.ppk file created with
puttygen.exe
. - Click Open.
- Enter user name:
root
NOTE: The connection should be established without being prompted for a password.
Priyanka Bhotika
Comments