Displaying 3 results from an estimated 3 matches for "karlm30".
2001 Apr 25
6
Updated partial auth patch against CVS
Here is a new version of my partial auth patch against the April 24, 2001
CVS image. It fixes a couple of things (thanks to Karl M
<karlm30 at hotmail.com>), and includes support for hostbased auth. It's still
not pretty, but it works. 2 things Karl mentioned aren't fixed:
- auth methods are still hard-coded into servconf.c. Fixing this would
require a lot of work, and all the auth methods are hard-coded there as
options...
2001 Jun 13
0
[PATCH]: Add features to Cygwin's ssh-host-config script
Hi,
I have added two features to the ssh-host-config script which is used
in Cygwin installations to prepare the host based OpenSSH configuration.
Now it cares for a /var/log/lastlog file if it's not already installed
(Thanks to "Karl M" <karlm30 at hotmail.com> for that patch) and it now
asks the user if s/he wants to install sshd as a NT service and, if so,
installs it.
Index: ssh-host-config
===================================================================
RCS file: /cvs/openssh_cvs/contrib/cygwin/ssh-host-config,v
retrieving revis...
2001 Mar 28
5
Initial patch to implement partial auth with SSH2
Attached is a patch which adds a new config option, AuthOrder2, to
sshd_config.c. The syntax is:
AuthOrder2 AuthMethod1[:SubAuthMethod1[:SubAuthMethod2...]][,AuthMethod2...]
An example, requiring users to enter a public key _and_ a password, in that
order:
AuthOrder2 publickey:password
The current default behaviour:
AuthOrder2 password,publickey,keyboard-interactive
Require a public key,