Skip to main content

Posts

Showing posts with the label LPI-2 Certification

LPIC 2 - SSH Test

SSH Practice Exam Questions Exam questions and answers explained for the following topics:  Standard SSH Authentication What Is SSH Key-Based Authentication? Implementation Steps Implementing key-based authentication Generate a Key Pair A public/private key pair is a mathematically related set of keys that can uniquely identify a user or computer  Copy Public Key The ssh-copy-id command copies the user's public key to the remote server  Enforce Key-Based Authentication Key-based authentication for SSH certainly improves your organization's security posture. To enforce this method, update the /etc/ssh/sshd_config file on the remote servers to require key-based authentication and refuse password-based connection attempts. Inspired from this CompTIA Blog: https://www.comptia.org/blog/3-steps-to-implement-ssh-key-based-authentication   Which of the following is a standard SSH authentication method? a) PAM  b) LDAP  c) Kerberos  d) Password Explaination: T...