Displaying 4 results from an estimated 4 matches for "challenge_reponse_authentication".
Did you mean:
challenge_response_authentication
2001 Jul 21
2
ChallengeResponseAuthentication - typos and inconsistancies?
Hi,
It seems from the source code that there are a couple of quirks
with this option:
firstly, in the code it's mis-spelt as
"challenge_reponse_authentication"
and secondly, the default for the client (in readconf.c) seems to be
off, whereas for the server (servconf.c) seems to be on:
readconf.c: if (options->challenge_reponse_authentication == -1)
readconf.c: options->challenge_reponse_authentication = 0;
servconf.c: if (o...
2001 Mar 13
0
[PATCH] openssh 2.5.1p2 TIS authserv support
...ror(gaierr));
+ for (ai = aitop; ai->ai_next; ai = ai->ai_next)
+ ;
+ ai->ai_next = options->authserv_addrs;
+ options->authserv_addrs = aitop;
+
+}
+#endif
+
/*
* add listen address
*/
@@ -551,6 +588,12 @@
case sChallengeResponseAuthentication:
intptr = &options->challenge_reponse_authentication;
goto parse_flag;
+
+#ifdef TIS_AUTH
+ case sAuthservAddress:
+ add_authserv_addr(options, &cp);
+ break;
+#endif
case sPrintMotd:
intptr = &options->print_motd;
diff -urN openssh-2.5.1p2/servconf.h openssh-2.5.1p2-tis/servconf.h
--- openssh-2.5.1p2/servconf.h Thu Feb 1...
2001 Mar 02
0
Patch for system-wide default environment
...nia, San Diego | fax +1 858 534 7018
--- cut here ---
diff -r -c openssh-2.5.1p1/servconf.c openssh-2.5.1p1-1/servconf.c
*** openssh-2.5.1p1/servconf.c Wed Feb 14 19:08:27 2001
--- openssh-2.5.1p1-1/servconf.c Thu Mar 1 15:45:03 2001
***************
*** 81,86 ****
--- 81,87 ----
options->challenge_reponse_authentication = -1;
options->permit_empty_passwd = -1;
options->use_login = -1;
+ options->sys_environment_file = NULL;
options->allow_tcp_forwarding = -1;
options->num_allow_users = 0;
options->num_deny_users = 0;
***************
*** 210,216 ****
sPasswordAuthentication, sKb...
2001 Mar 14
1
/etc/default/login patch?
Would anybody happen to have or know of a patch to make /etc/default/login
PATH and SUPATH the default openssh path? We have customized paths for each
school of engineering (each have their own customized site bin). This is
easily controled with /etc/default/login. The --with-default-path option
is too rigid. This is Solaris I am talking about.
--mike