Displaying 5 results from an estimated 5 matches for "gss_authentication".
2014 Jul 15
3
GSSAPI
If I am trying to build OpenSSH 6.6 with Kerberos GSSAPI support, do I still need to get Simon Wilkinson's patches?
---
Scott Neugroschl | XYPRO Technology Corporation
4100 Guardian Street | Suite 100 |Simi Valley, CA 93063 | Phone 805 583-2874|Fax 805 583-0124 |
2003 Aug 10
9
updated gssapi diff
...TH_GSSAPI_TOKEN, NULL);
+ dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_ERRTOK, NULL);
+ dispatch_set(SSH2_MSG_USERAUTH_GSSAPI_EXCHANGE_COMPLETE, NULL);
+ userauth_finish(authctxt, authenticated, "gssapi");
+}
+
+Authmethod method_gssapi = {
+ "gssapi",
+ userauth_gssapi,
+ &options.gss_authentication
+};
+
+#endif /* GSSAPI */
Index: auth2.c
===================================================================
RCS file: /home/hack/jakob/mycvs/sshgss/auth2.c,v
retrieving revision 1.1.1.2
retrieving revision 1.5
diff -u -r1.1.1.2 -r1.5
--- auth2.c 10 Aug 2003 14:06:43 -0000 1.1.1.2
+++ auth2.c 10 A...
2011 Feb 24
4
[Bug 1868] New: 'ssh -k' should explicitly disable gss auth
...NEW
Severity: normal
Priority: P2
Component: Kerberos support
AssignedTo: unassigned-bugs at mindrot.org
ReportedBy: frank+ssh at linetwo.net
in ssh.c, the option handling for 'k' should disable gss auth. There
should be an explicit
options.gss_authentication = 0;
at ssh.c:362, mirroring the 'K' option handling just below that line.
--
Configure bugmail: https://bugzilla.mindrot.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.
2004 Aug 23
8
[Bug 918] ssh_gssapi_storecreds called to late to be usable by PAM in sesion.c
http://bugzilla.mindrot.org/show_bug.cgi?id=918
Summary: ssh_gssapi_storecreds called to late to be usable by PAM
in sesion.c
Product: Portable OpenSSH
Version: -current
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: PAM support
AssignedTo:
2006 Nov 15
11
OpenSSH Certkey (PKI)
...options->gateway_ports = -1;
options->use_privileged_port = -1;
options->rsa_authentication = -1;
+ options->certkey_authentication = -1;
+ options->ca_key_file = NULL;
options->pubkey_authentication = -1;
options->challenge_response_authentication = -1;
options->gss_authentication = -1;
@@ -1088,6 +1101,10 @@
options->use_privileged_port = 0;
if (options->rsa_authentication == -1)
options->rsa_authentication = 1;
+ if (options->certkey_authentication == -1)
+ options->certkey_authentication = 0;
+ if (options->ca_key_file == NULL)
+ options->ca...