Displaying 4 results from an estimated 4 matches for "auth_mask".
Did you mean:
attr_mask
2000 Jan 13
2
sshd doesn't set SSH_AUTH_RHOSTS as supported authentication
Okay...I've got it narrowed down, just don't know why this is happening...
In sshd.c, auth_mask is set to "supported authentication methods":
/* Declare supported authentication types. */
auth_mask = 0;
if (options.rhosts_authentication)
auth_mask |= 1 << SSH_AUTH_RHOSTS;
if (options.rhosts_rsa_authentication)
au...
2000 Aug 27
0
patch for TIS (skey/opie) *and* passwd auth via PAM
...R
#define ETCDIR "/etc"
#endif /* ETCDIR */
diff -urN -x *~ openssh-2.1.1p4/sshd.c openssh-2.1.1p4-hein/sshd.c
--- openssh-2.1.1p4/sshd.c Wed Jul 12 01:45:27 2000
+++ openssh-2.1.1p4-hein/sshd.c Sun Aug 27 15:39:50 2000
@@ -1097,6 +1097,10 @@
if (options.skey_authentication == 1)
auth_mask |= 1 << SSH_AUTH_TIS;
#endif
+#ifdef PAM_TIS
+ if (options.tis_authentication == 1)
+ auth_mask |= 1 << SSH_AUTH_TIS;
+#endif
if (options.password_authentication)
auth_mask |= 1 << SSH_AUTH_PASSWORD;
packet_put_int(auth_mask);
2000 Dec 07
1
[PATCH] tis authserv support
...asswords. */
int use_login; /* If true, login(1) is used */
diff -urN openssh-2.3.0p1/sshd.c openssh-2.3.0p1-tis/sshd.c
--- openssh-2.3.0p1/sshd.c Sat Oct 14 07:23:13 2000
+++ openssh-2.3.0p1-tis/sshd.c Thu Dec 7 18:38:42 2000
@@ -1182,6 +1182,11 @@
if (options.skey_authentication == 1)
auth_mask |= 1 << SSH_AUTH_TIS;
#endif
+#ifdef TIS_AUTH
+ if (options.tis_authentication == 1)
+ auth_mask |= 1 << SSH_AUTH_TIS;
+#endif
+
if (options.password_authentication)
auth_mask |= 1 << SSH_AUTH_PASSWORD;
packet_put_int(auth_mask);
diff -urN openssh-2.3.0p1/tisauth.c openss...
2002 Jan 23
1
Fix AFS and Kerberos interaction
...oken will be transmitted in the clear!");
send_afs_tokens();
}
-#endif /* AFS */
+#endif /* AFS && KRB4 */
return; /* need statement after label */
}
--- sshd.c 2002/01/23 10:41:05 1.1
+++ sshd.c 2002/01/23 12:12:42
@@ -1289,7 +1289,7 @@
if (options.kerberos_tgt_passing)
auth_mask |= 1 << SSH_PASS_KERBEROS_TGT;
#endif
-#ifdef AFS
+#if defined(AFS) && defined(KRB4)
if (options.afs_token_passing)
auth_mask |= 1 << SSH_PASS_AFS_TOKEN;
#endif