diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2015-05-22 03:50:03 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2015-05-22 03:50:03 +0000 |
commit | 455fc6dd5ea91424947a57d7aa5a894be1335c80 (patch) | |
tree | ef2a20cce600ff7fb3911d9316122020fde2473f /usr.bin/ssh/sshd_config.5 | |
parent | 7f4ef076ce321d1a89e624489073645fe11fa385 (diff) |
add knob to relax GSSAPI host credential check for multihomed hosts
bz#928, patch by Simon Wilkinson; ok dtucker
(kerberos/GSSAPI is not compiled by default on OpenBSD)
Diffstat (limited to 'usr.bin/ssh/sshd_config.5')
-rw-r--r-- | usr.bin/ssh/sshd_config.5 | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/usr.bin/ssh/sshd_config.5 b/usr.bin/ssh/sshd_config.5 index 507a8bf3354..72403e53e8d 100644 --- a/usr.bin/ssh/sshd_config.5 +++ b/usr.bin/ssh/sshd_config.5 @@ -33,8 +33,8 @@ .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" -.\" $OpenBSD: sshd_config.5,v 1.202 2015/05/21 06:43:31 djm Exp $ -.Dd $Mdocdate: May 21 2015 $ +.\" $OpenBSD: sshd_config.5,v 1.203 2015/05/22 03:50:02 djm Exp $ +.Dd $Mdocdate: May 22 2015 $ .Dt SSHD_CONFIG 5 .Os .Sh NAME @@ -623,6 +623,21 @@ on logout. The default is .Dq yes . Note that this option applies to protocol version 2 only. +.It Cm GSSAPIStrictAcceptorCheck +Determines whether to be strict about the identity of the GSSAPI acceptor +a client authenticates against. +If set to +.Dq yes +then the client must authenticate against the +.Pa host +service on the current hostname. +If set to +.Dq no +then the client may authenticate against any service key stored in the +machine's default store. +This facility is provided to assist with operation on multi homed machines. +The default is +.Dq yes . .It Cm HostbasedAcceptedKeyTypes Specifies the key types that will be accepted for hostbased authentication as a comma-separated pattern list. |