Explanation of Answer C:When configuring SSH, the command-line options take the highest precedence. Any configuration specified directly on the command line will override settings in user-specific (~/.ssh/config) or system-wide configuration files (/etc/ssh/ssh_config).
[Reference:, Oracle Linux 8 Documentation:Oracle Linux Secure Shell Guide, The SSH documentation details the order of precedence for SSH configuration, with command-line options taking priority., Clarification on Incorrect Options:, Option A:/etc/ssh/ssh_configis the system-wide configuration file but has lower precedence than user configuration or command line., Option B:~/.ssh/configis the user-specific configuration file but is overridden by command-line options., Option D:/etc/ssh/sshd_configis the server configuration file forsshdand does not affect the client-side configuration (ssh)., , ]
Submit