Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
$ sudo dpkg -i linux-computer-client-client-1.0.0-x86_64.deb

SSH Login

If you want to enable 2FA on SSH login, then you need to enable challenge/response on SSHD:and also enable keyboard-interactive.

For Ubuntu 18 and 20

Code Block
languagebash
$ sudo vi /etc/ssh/sshd_config

ChallengeResponseAuthentication yes
AuthenticationMethods keyboard-interactive

For Ubuntu 22

Code Block
$ sudo vi /etc/ssh/sshd_config

KbdInteractiveAuthentication yes


Restart SSHD service after the above change:

...