public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* sshd
@ 2022-02-13  2:25 Ernie Rael
  2022-02-13  5:29 ` sshd Mark Geisert
  0 siblings, 1 reply; 39+ messages in thread
From: Ernie Rael @ 2022-02-13  2:25 UTC (permalink / raw)
  To: cygwin

Hi all,

I set up cygwin several years ago and have only had one system at home. 
I've recently got a 2nd, linux.

I've used ssh locally under cygwin, primarily to get a term for a use 
with admin priv. And I can ssh from cygwin to the linux machine. On 
cygwin I see

    $ ps -ef |grep sshd
    cyg_serv     255     254 ?          Feb  1 /usr/sbin/sshd

But ssh from linux to cygwin hangs (finally times out). Ping works linux 
--> windows.

I must have run ssh-host-config way back when. Can I just run it again?

Suggestions for something else to try and/or triage the problem?

-ernie


^ permalink raw reply	[flat|nested] 39+ messages in thread
* sshd
@ 2010-05-13 20:08 Steven Collins
  2010-05-13 20:12 ` sshd Eric Berge
  2010-05-13 20:17 ` sshd Andrew Dunstan
  0 siblings, 2 replies; 39+ messages in thread
From: Steven Collins @ 2010-05-13 20:08 UTC (permalink / raw)
  To: cygwin

Before 1.7.x came out I had sshd working under cygwin. After upgrading
it stopped working. I investigated and found the hosts.allow file and
made the recommended change there. That got my server working to the
point where I can "ssh localhost" and see the hungry-hungry-hippo. :)
When I try to ssh into the same computer using its real-world IP
number/name it get "ssh: connect to host read.host.name port 22:
Connection refused". Any suggestions on where to go from here?

Regards,
Steven

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 39+ messages in thread
* sshd
@ 2006-04-20 18:49 Steve Kelem
  2006-04-20 19:22 ` sshd René Berber
  0 siblings, 1 reply; 39+ messages in thread
From: Steve Kelem @ 2006-04-20 18:49 UTC (permalink / raw)
  To: Cygwin

The instructions for sshd (/usr/share/doc/openssh/README.privsep) 
include the following:

You should do something like the following to prepare the privsep
preauth environment:

    # mkdir /var/empty
    # chown root:sys /var/empty
    # chmod 755 /var/empty
    # groupadd sshd
    # useradd -g sshd -c 'sshd privsep' -d /var/empty -s /bin/false sshd

I used XP's Manage/User Accounts to add a group called sshd.
When I tried to create a user "sshd", it complained, saying that the 
group already exists.

1. Which package has "useradd" and "groupadd"?
2. Is it possible to create sshd:sshd?

Thanks,
Steve


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 39+ messages in thread
* sshd
@ 2003-10-15 14:52 e-bone
  2003-10-15 15:32 ` sshd Larry Hall
  0 siblings, 1 reply; 39+ messages in thread
From: e-bone @ 2003-10-15 14:52 UTC (permalink / raw)
  To: cygwin

Anyone have any idea why I might be getting the following error when
trying to start up the sshd:

The procedure entry point __getreent could not be located in the dynamic
link library cygwin1.dll

I don't think this is a permissions problem.

It should start automatically at boot as the "Local System" user.
At boot time, or when trying to start it manually, I get this error.

any ideas ?

cheers,
e


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 39+ messages in thread
* RE: sshd
@ 2002-12-18 13:25 Harig, Mark A.
  0 siblings, 0 replies; 39+ messages in thread
From: Harig, Mark A. @ 2002-12-18 13:25 UTC (permalink / raw)
  To: Vince Hoffman, cygwin

[-- Attachment #1: Type: text/plain, Size: 716 bytes --]

See also, /etc/postinstall/passwd-grp.sh.done.
A copy of it has been attached to this message.

> -----Original Message-----
> From: Vince Hoffman [mailto:Vince.Hoffman@uk.circle.com]
> Sent: Wednesday, December 18, 2002 11:20 AM
> To: cygwin@cygwin.com
> Subject: RE: sshd
> 
> 
> Or even 
> "mkpasswd -u <new username> -l >> /etc/passwd"
> (sorry last one on this, but someone would have pointed it 
> out if i didnt.)
> 
> > -----Original Message-----
> > From: Vince Hoffman [mailto:Vince.Hoffman@uk.circle.com]
> > Sent: 18 December 2002 16:15
> > To: cygwin@cygwin.com
> > Subject: RE: sshd
> > 
> > 
> > Opps sory make that "mkpasswd -l > /etc/passwd" 
> > (only one  > not two)
> > 

[-- Attachment #2: passwd-grp.sh.done --]
[-- Type: application/octet-stream, Size: 414 bytes --]

#!/bin/sh

type="-l"

# if USERDOMAIN isn't empty and
#    USERDOMAIN isn't the hostname then we are in a domain
if [ ! -z "$USERDOMAIN" ] && [ "$USERDOMAIN" != "`hostname`" ] ; then
  # domain user
  type="-d"
fi

# Should we append rather than replace?
if [ ! -e /etc/passwd ] ; then
  /bin/mkpasswd ${type} > /etc/passwd
fi
if [ ! -e /etc/group ] ; then
  /bin/mkgroup ${type} > /etc/group
fi

[-- Attachment #3: Type: text/plain, Size: 214 bytes --]

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 39+ messages in thread
* RE: sshd
@ 2002-12-18 10:19 Vince Hoffman
  0 siblings, 0 replies; 39+ messages in thread
From: Vince Hoffman @ 2002-12-18 10:19 UTC (permalink / raw)
  To: cygwin

Or even 
"mkpasswd -u <new username> -l >> /etc/passwd"
(sorry last one on this, but someone would have pointed it out if i didnt.)

> -----Original Message-----
> From: Vince Hoffman [mailto:Vince.Hoffman@uk.circle.com]
> Sent: 18 December 2002 16:15
> To: cygwin@cygwin.com
> Subject: RE: sshd
> 
> 
> Opps sory make that "mkpasswd -l > /etc/passwd" 
> (only one  > not two)
> 
> > -----Original Message-----
> > From: Vince Hoffman [mailto:Vince.Hoffman@uk.circle.com]
> > Sent: 18 December 2002 16:10
> > To: cygwin@cygwin.com
> > Subject: RE: sshd
> > 
> > 
> > Try running Corrina's very useful ssh-host-config script if 
> > you havent.
> > 
> > User management is Handled by Windows. To add a user, either 
> > use the windows
> > management mmc snapin or "net user <username> <password> 
> /add" from a
> > command prompt (WinNT/2k/xp only but you say you're running 2k :)
> > then run mkpasswd -l >> /etc/passwd to update cygwins passwd file.
> > 
> > 
> > > -----Original Message-----
> > > From: Stuardo Rodriguez [mailto:str@strgt.cjb.net]
> > > Sent: 18 December 2002 09:50
> > > To: cygwin@cygwin.com
> > > Subject: sshd
> > > 
> > > 
> > > Hi ... i installed cygwin with the Administrator of Win200   
> > > and run sshd -D  
> > > so i could login from another machine....  It works, because 
> > > it is asking me 
> > > for a password  but i type the win password and it does not 
> > > work... i also 
> > > tryed to change the password with passwd and tryed agai.. but 
> > > still have the 
> > > same error....
> > > 
> > > I also tryed to add a new user .. but did not found the 
> > > useradd or adduser 
> > > bin. How do i add a user?
> > > 
> > > Who could help me with that?  thanks
> > > 
> > > -- 
> > > StR <str@strgt.cjb.net>
> > > -[http://strgt.cjb.net]
> > > 

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 39+ messages in thread
* RE: sshd
@ 2002-12-18  9:21 Vince Hoffman
  0 siblings, 0 replies; 39+ messages in thread
From: Vince Hoffman @ 2002-12-18  9:21 UTC (permalink / raw)
  To: cygwin

Opps sory make that "mkpasswd -l > /etc/passwd" 
(only one  > not two)

> -----Original Message-----
> From: Vince Hoffman [mailto:Vince.Hoffman@uk.circle.com]
> Sent: 18 December 2002 16:10
> To: cygwin@cygwin.com
> Subject: RE: sshd
> 
> 
> Try running Corrina's very useful ssh-host-config script if 
> you havent.
> 
> User management is Handled by Windows. To add a user, either 
> use the windows
> management mmc snapin or "net user <username> <password> /add" from a
> command prompt (WinNT/2k/xp only but you say you're running 2k :)
> then run mkpasswd -l >> /etc/passwd to update cygwins passwd file.
> 
> 
> > -----Original Message-----
> > From: Stuardo Rodriguez [mailto:str@strgt.cjb.net]
> > Sent: 18 December 2002 09:50
> > To: cygwin@cygwin.com
> > Subject: sshd
> > 
> > 
> > Hi ... i installed cygwin with the Administrator of Win200   
> > and run sshd -D  
> > so i could login from another machine....  It works, because 
> > it is asking me 
> > for a password  but i type the win password and it does not 
> > work... i also 
> > tryed to change the password with passwd and tryed agai.. but 
> > still have the 
> > same error....
> > 
> > I also tryed to add a new user .. but did not found the 
> > useradd or adduser 
> > bin. How do i add a user?
> > 
> > Who could help me with that?  thanks
> > 
> > -- 
> > StR <str@strgt.cjb.net>
> > -[http://strgt.cjb.net]
> > 
> > --
> > Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
> > Bug reporting:         http://cygwin.com/bugs.html
> > Documentation:         http://cygwin.com/docs.html
> > FAQ:                   http://cygwin.com/faq/
> > 
> 
> --
> Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
> Bug reporting:         http://cygwin.com/bugs.html
> Documentation:         http://cygwin.com/docs.html
> FAQ:                   http://cygwin.com/faq/
> 

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 39+ messages in thread
* RE: sshd
@ 2002-12-18  9:03 Vince Hoffman
  0 siblings, 0 replies; 39+ messages in thread
From: Vince Hoffman @ 2002-12-18  9:03 UTC (permalink / raw)
  To: cygwin

Try running Corrina's very useful ssh-host-config script if you havent.

User management is Handled by Windows. To add a user, either use the windows
management mmc snapin or "net user <username> <password> /add" from a
command prompt (WinNT/2k/xp only but you say you're running 2k :)
then run mkpasswd -l >> /etc/passwd to update cygwins passwd file.


> -----Original Message-----
> From: Stuardo Rodriguez [mailto:str@strgt.cjb.net]
> Sent: 18 December 2002 09:50
> To: cygwin@cygwin.com
> Subject: sshd
> 
> 
> Hi ... i installed cygwin with the Administrator of Win200   
> and run sshd -D  
> so i could login from another machine....  It works, because 
> it is asking me 
> for a password  but i type the win password and it does not 
> work... i also 
> tryed to change the password with passwd and tryed agai.. but 
> still have the 
> same error....
> 
> I also tryed to add a new user .. but did not found the 
> useradd or adduser 
> bin. How do i add a user?
> 
> Who could help me with that?  thanks
> 
> -- 
> StR <str@strgt.cjb.net>
> -[http://strgt.cjb.net]
> 
> --
> Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
> Bug reporting:         http://cygwin.com/bugs.html
> Documentation:         http://cygwin.com/docs.html
> FAQ:                   http://cygwin.com/faq/
> 

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 39+ messages in thread
* sshd
@ 2002-12-18  8:00 Stuardo Rodriguez
  0 siblings, 0 replies; 39+ messages in thread
From: Stuardo Rodriguez @ 2002-12-18  8:00 UTC (permalink / raw)
  To: cygwin

Hi ... i installed cygwin with the Administrator of Win200   and run sshd -D  
so i could login from another machine....  It works, because it is asking me 
for a password  but i type the win password and it does not work... i also 
tryed to change the password with passwd and tryed agai.. but still have the 
same error....

I also tryed to add a new user .. but did not found the useradd or adduser 
bin. How do i add a user?

Who could help me with that?  thanks

-- 
StR <str@strgt.cjb.net>
-[http://strgt.cjb.net]

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 39+ messages in thread
* sshd
@ 2002-07-02 19:53 Bryan Zimmer
  2002-07-03  1:39 ` sshd Corinna Vinschen
  0 siblings, 1 reply; 39+ messages in thread
From: Bryan Zimmer @ 2002-07-02 19:53 UTC (permalink / raw)
  To: cygwin

Greetings all.

I used to have an sshd that worked passably well. Now it is giving me some
strange messages, viz., "user baz is illegal because /bin/bash is not an
executable.

In this case I can only log in remotely when I remove /bin/bash from the
/etc/passwd file. I find this strange behavior.

Any comments welcome.

Bryan Zimmer
g91@baz-tech.com



--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 39+ messages in thread
* sshd
@ 2002-03-02 13:23 Erik Vigmostad
  2002-03-04  8:37 ` sshd Larry Hall (RFK Partners, Inc)
  0 siblings, 1 reply; 39+ messages in thread
From: Erik Vigmostad @ 2002-03-02 13:23 UTC (permalink / raw)
  To: cygwin

I have run ssh-host-config (trying to run sshd) and when it finishes, it
says "cygrunsrv: not found".  Am I missing something?

Thanks,
Erik Vigmostad



--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

^ permalink raw reply	[flat|nested] 39+ messages in thread
* sshd
@ 2001-05-31  0:46 Warunee Noiarun
  2001-05-31  3:03 ` sshd Corinna Vinschen
  0 siblings, 1 reply; 39+ messages in thread
From: Warunee Noiarun @ 2001-05-31  0:46 UTC (permalink / raw)
  To: cygwin, cygwin-help

I installed sshd on my win2k professional and use cygrunsrv to start sshd
i try with:

$cygrunsrv -I OpenSSH -p /usr/sbin/sshd
it's work
and then
$cygrunsrv -S OpenSSH
it not work  what should i do  when it said
/usr/bin/cygrunsrv: Error starting a service: QueryServiceStatus:  Win32 
error 1
062:
The service has not been started.
/usr/bin/cygrunsrv: Error starting a service: QueryServiceStatus:  Win32 
error 1
062:
The service has not been started.

please give me some comment
Thanks for advance
warunee noiarun

_________________________________________________________________________
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com .


--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 39+ messages in thread
* sshd
@ 2001-03-16 15:07 Bret Jordan
  0 siblings, 0 replies; 39+ messages in thread
From: Bret Jordan @ 2001-03-16 15:07 UTC (permalink / raw)
  To: cygwin

I need to thank you for the changes you have made to sshd.  The new version 
works really well.  I can ssh into the box using sh.exe and then just run 
cmd.exe.  It works great.  You were also able to fix the stdout problems 
with traditional windows command programs.

Thanks much for all your work.

Bret




~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Bret Jordan                       Dean's Office
LAN Manager              College of Engineering
801.585.3765                 University of Utah
              jordan@coe.utah.edu
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


--
Want to unsubscribe from this list?
Check out: http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 39+ messages in thread
* Re: SSHD
@ 1999-04-13 12:10 Gerhardstein, Lawrence H
  1999-04-30 18:32 ` SSHD Gerhardstein, Lawrence H
  0 siblings, 1 reply; 39+ messages in thread
From: Gerhardstein, Lawrence H @ 1999-04-13 12:10 UTC (permalink / raw)
  To: 'jj@digisle.net', 'cygwin@sourceware.cygnus.com'

JJ,

On 16 Dec 1998, you posted your install procedure for SSHD on NT.  I have
attempted to get SSHD on NT running but am experiencing the following
problem(s):

1) I run SSHD on my NT box: /usr/local/sbin/sshd1 -d
2) I then run SSH on a UNIX box: ssh -v -l USERNAME NTHOSTNAME
3) The SSH prompts for password and I enter it.
4) The SSH types out some environment stuff and 2 echo messages that I placed in
the .profile in the NT account.
5) The SSH then displays the prompt string of the command line interpreter on
the NT side: bash-2.02$
6) While this is going on, I can run the task manager on the NT box and see the
bash being executed.
7) After about 1-2 seconds, the bash terminates and on the SSHD side is
displayed the messages:
	Received SIGCHLD
	End if interactive session; stdin 0, stdout (read 249, sent 249), stderr
0 bytes.
	pty_cleanup_called
	chmod /dev/tty0 0666 failed: No such file or directory
	command exited with status 0
8) On the SSH side is displayed
	Connection to NTHOSTNAME closed.
	Exit status 0.

Can you or others make suggestions to help me get this SSHD on NT working?

Larry Gerhardstein -- Larry.Gerhardstein@pnl.gov




--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

^ permalink raw reply	[flat|nested] 39+ messages in thread
[parent not found: <862566DC.00528EDA.00@marker.its.uiowa.edu>]
* sshd
@ 1998-10-13 12:17 Juha Jäykkä
  0 siblings, 0 replies; 39+ messages in thread
From: Juha Jäykkä @ 1998-10-13 12:17 UTC (permalink / raw)
  To: gnu-win32

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 1004 bytes --]

I have a little problem with sshd even AFTER I read all articles published
to the list about sshd. My problem is as follows: when I run sshd in debug
mode (sshd -d) it works as expected (password authentication fails, but I
haven't even tried to fix THAT yet). When I run it "normally" it doesn't
accept connections. I only get "Socket read error: Connection reset by peer"
from my ssh client.
  What could be wrong? /etc and others are all set up and correct.

-- 
                 -----------------------------------------------
                | Juha Jäykkä, juolja@utu.fi                    |
                | home: http://www.utu.fi/~juolja/              |
                | pgp-key: http://www.utu.fi/~juolja/pgp.html   |
                | note: now my pgp key really IS there...       |
                 -----------------------------------------------
-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

^ permalink raw reply	[flat|nested] 39+ messages in thread
* sshd
@ 1998-01-07 14:50 Derek Young
  0 siblings, 0 replies; 39+ messages in thread
From: Derek Young @ 1998-01-07 14:50 UTC (permalink / raw)
  To: gnu-win32

After some struggle, I was able to get ssh and sshd working.  I took the
patches from Patrick J. Fay
( http://www.acl.lanl.gov/~pfay/teraflop/buildssh.txt ) and applied them
directly to the ssh sources.  I could not get the version from
http://gnu-win32.paranoia.ru/ to work.  As Patrick pointed out, it's
always a good idea to compile security software on you own anyways.  I
could not build the software under the windows NT command prompt, but
when building under bash, it worked fine.

When running sshd, I was getting the error message "bad modes for:
/homedirectory".  I guess I didn't have the permissions set right on my
home directory.  To fix this I turned StrictModes off in the
/etc/sshd_conf file.

ssh was reporting that it had no DISPLAY or tty.  This was caused by
CYGWIN_TTY no being set.  Setting it to 1 on the client and server side
fixed that.  You do not need DISPLAY set to use the software.

The version from http://gnu-win32.paranoia.ru/ did not seem to pass the
stdout of the client application back to ssh.  After I recompiled it
myself, this problem went away.

My final problem was that for some reason programs run through ssh were
not able to read from stdin.  for instance "echo hello | ssh host cat"
would report "bad file number" on stdin.  I changed the source of sshd
to use "/winnt/system32/cmd.exe /c command" instead of "/bin/sh -c
command" and this problem cleared up.  A little more investigation into
this may have cleared it up without this hack, but it works OK for me
now.

I have now been using ssh and sshd with CVS and it works great!  Just
set CVSROOT to :ext:user@machine:/yourcvsroot and CVS_RSH to ssh and it
works without any more changes.  This was my goal for using ssh in the
first place.

Thanks again to Patrick for his help.

-- derek


-
For help on using this list (especially unsubscribing), send a message to
"gnu-win32-request@cygnus.com" with one line of text: "help".

^ permalink raw reply	[flat|nested] 39+ messages in thread

end of thread, other threads:[~2022-02-15 17:20 UTC | newest]

Thread overview: 39+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-02-13  2:25 sshd Ernie Rael
2022-02-13  5:29 ` sshd Mark Geisert
2022-02-13  6:30   ` sshd Russell VT
2022-02-13 12:42     ` sshd Ernie Rael
2022-02-13 12:38   ` sshd Ernie Rael
2022-02-13 19:59     ` sshd Erik Soderquist
2022-02-14  6:56     ` sshd Andrey Repin
2022-02-14  7:42       ` sshd Ernie Rael
2022-02-15 17:20         ` sshd Gajanana Shridhar
  -- strict thread matches above, loose matches on Subject: below --
2010-05-13 20:08 sshd Steven Collins
2010-05-13 20:12 ` sshd Eric Berge
2010-05-13 20:18   ` sshd Steven Collins
2010-05-13 20:32     ` sshd Eric Berge
2010-05-13 20:38       ` sshd Steven Collins
2010-05-13 20:17 ` sshd Andrew Dunstan
2010-05-13 20:31   ` sshd Steven Collins
2006-04-20 18:49 sshd Steve Kelem
2006-04-20 19:22 ` sshd René Berber
2003-10-15 14:52 sshd e-bone
2003-10-15 15:32 ` sshd Larry Hall
2002-12-18 13:25 sshd Harig, Mark A.
2002-12-18 10:19 sshd Vince Hoffman
2002-12-18  9:21 sshd Vince Hoffman
2002-12-18  9:03 sshd Vince Hoffman
2002-12-18  8:00 sshd Stuardo Rodriguez
2002-07-02 19:53 sshd Bryan Zimmer
2002-07-03  1:39 ` sshd Corinna Vinschen
2002-07-03  8:01   ` sshd Bryan Zimmer
2002-07-03  8:53     ` sshd Corinna Vinschen
2002-03-02 13:23 sshd Erik Vigmostad
2002-03-04  8:37 ` sshd Larry Hall (RFK Partners, Inc)
2001-05-31  0:46 sshd Warunee Noiarun
2001-05-31  3:03 ` sshd Corinna Vinschen
2001-03-16 15:07 sshd Bret Jordan
1999-04-13 12:10 SSHD Gerhardstein, Lawrence H
1999-04-30 18:32 ` SSHD Gerhardstein, Lawrence H
     [not found] <862566DC.00528EDA.00@marker.its.uiowa.edu>
1998-12-16 16:28 ` SSHD JJ Streicher-Bremer
1998-10-13 12:17 sshd Juha Jäykkä
1998-01-07 14:50 sshd Derek Young

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).