Which of the following Secure Shell (SSH) remote access practices is MOST suited for scripted functions?
Which of the following Secure Shell (SSH) remote access practices is MOST suited for scripted functions?
Using public key-based authentication method is best suited for scripted functions in SSH environments. This method allows for automated, passwordless access to remote systems, which is crucial for scripts that need to run without human intervention. Public key authentication involves placing the public key on the server and using the corresponding private key on the client-side, eliminating the need for manual password entry and enhancing security and efficiency.
D is correct
D. Once the app ID's public key is on the target server, the script just runs.
D. Using public key-based authentication method. Public key-based authentication is particularly well-suited for scripted functions because it allows for automated, passwordless access to remote systems. With this method, a public key is generated and stored on the server, and a corresponding private key is used on the client-side for authentication. Since there are no passwords involved, scripted processes can use the private key to authenticate securely without manual password entry.
Answer D) Using public key-based authentication method. https://nvlpubs.nist.gov/nistpubs/ir/2015/nist.ir.7966.pdf
PKI is what you want here.