after upgrade to current(25-06-2012), can not login ssh

2012-06-25 Thread johnw
I attached the server side error message (photo) please help, thank you. ssh - 192.168.168.1 OpenSSH_6.0p1 Debian-2, OpenSSL 1.0.1c 10 May 2012 debug1: Reading configuration data /home/john/.ssh/config debug1: /home/john/.ssh/config line 1: Applying options for 192.168.168.1 debug1: Reading co

Re: after upgrade to current(25-06-2012), can not login ssh

2012-06-25 Thread johnw
I upload the photo to here http://www1.picturepush.com/photo/a/8571544/640/8571544.jpg 2012/6/25 johnw > I attached the server side error message (photo) > please help, thank you. > > ssh - 192.168.168.1 > OpenSSH_6.0p1 Debian-2, OpenSSL 1.0.1c 10 May 2012 > debug1: Reading configuration dat

Re: after upgrade to current(25-06-2012), can not login ssh

2012-06-25 Thread johnw
The sshd_config like this: ListenAddress 192.168.168.1 PermitRootLogin yes PubkeyAuthentication yes AuthorizedKeysFile .ssh/authorized_keys PasswordAuthentication yes UsePrivilegeSeparation sandbox Subsystem sftp /usr/libexec/sftp-server 2012/6/25 johnw > I attached the server side error message

Re: after upgrade to current(25-06-2012), can not login ssh

2012-06-25 Thread johnw
I change "UsePrivilegeSeparation sandbox" to "UsePrivilegeSeparation yes", then i can login now. maybe the sandbox feature has something broken. thank you. 2012/6/25 Fred Crowson > On 25 June 2012 10:03, johnw wrote: > > The sshd_config like this: > > ListenAddress 192.168.168.1 > > PermitRootL

Re: after upgrade to current(25-06-2012), can not login ssh

2012-06-25 Thread Fred Crowson
On 25 June 2012 12:41, johnw wrote: > I change "UsePrivilegeSeparation sandbox" to "UsePrivilegeSeparation yes", > then i can login now. > maybe the sandbox feature has something broken. > thank you. The following article gives some more information on the sandbox function: http://www.undeadly.o

Re: after upgrade to current(25-06-2012), can not login ssh

2012-06-26 Thread johnw
HI, i found sandbox-systrace.c need the mquery() to work with "UsePrivilegeSeparation sandbox" below change maybe related, http://www.openbsd.org/cgi-bin/cvsweb/src/lib/libc/stdlib/malloc.c.diff?r1=1.143;r2=1.144;sortby=date anyway, add mquery() to sandbox-systrace.c work on my system. thank you.

Re: after upgrade to current(25-06-2012), can not login ssh

2012-06-26 Thread Darren Tucker
On Tue, Jun 26, 2012 at 04:54:16PM +0800, johnw wrote: > HI, i found sandbox-systrace.c need the mquery() to work with > "UsePrivilegeSeparation sandbox" > > below change maybe related, > http://www.openbsd.org/cgi-bin/cvsweb/src/lib/libc/stdlib/malloc.c.diff?r1=1.143;r2=1.144;sortby=date > > any