Link to home
Start Free TrialLog in
Avatar of kmgish
kmgish

asked on

Setup SSH key pair authentication, in addition to OS username and password on Linux Ubuntu

My company has setup an Ubuntu 18.04 server, to exchange files with a client, via SFTP.  We need a high level of security.  We're trying to require authentication with SSH key pairs, AND the Linux OS username and password (not the SSH passphrase). We've got the key pairs working, but it doesn't ask for the password. I'm assuming we're just missing something in the sshd_config file. Hopefully we're not trying to do something that's not possible. Any assistance would be much appreciated.

Thanks!
Mark
ASKER CERTIFIED SOLUTION
Avatar of Gary Patterson, CISSP
Gary Patterson, CISSP
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of noci
noci

The passphrase is the unlock password for the private key
So if you make private,public keypairs without password there is no passphrase.. (that is the only setting for passphrases).

The other info has been given by Gary already.
Avatar of kmgish

ASKER

Thanks Gary, That's exactly the answer I was looking for!