이 질문은 2012 년에 한 것입니다. 이후 SSH가 변경되었고 SSH2 프로토콜이 구현되었습니다.
최신 SSH 버전 (> = 6.2)에서 man sshd_config는 다음을 언급합니다.
AuthenticationMethods
Specifies the authentication methods that must be successfully completed for a user to be
granted access. This option must be followed by one or more comma-separated lists of
authentication method names. Successful authentication requires completion of every method
in at least one of these lists.
For example, an argument of ``publickey,password publickey,keyboard-interactive'' would
require the user to complete public key authentication, followed by either password or key-
board interactive authentication. Only methods that are next in one or more lists are
offered at each stage, so for this example, it would not be possible to attempt password or
keyboard-interactive authentication before public key.
This option is only available for SSH protocol 2 and will yield a fatal error if enabled if
protocol 1 is also enabled. Note that each authentication method listed should also be
explicitly enabled in the configuration. The default is not to require multiple authentica-
tion; successful completion of a single authentication method is sufficient.
이 페이지 ( http://lwn.net/Articles/544640/) 는 공개 키와 PAM 인증을 동시에 사용할 가능성에 대해서도 언급하고 있습니다.