Displaying 11 results from an estimated 11 matches for "sshd_acquires_ctty".
2003 May 26
3
Error on Reliant Unix: no controlling terminal
Hi all,
just I tried to upgrade openssh from 3.5p1 to 3.6.1p2 on Reliant Unix 5.45 and run into this error:
root at soltest: tail /var/adm/log/messages
....
May 23 15:45:28 soltest unix: sshd[4013]: Accepted password for root from 10.128.11.72 port 2624 ssh2
May 23 15:45:28 soltest unix: sshd[4101]: error: setsid: Not owner
May 23 15:45:28 soltest unix: sshd[4101]: error: open /dev/tty failed -
2003 Apr 09
10
[Bug 536] no access to tty on Linux 2.0 and 2.4+libc5
http://bugzilla.mindrot.org/show_bug.cgi?id=536
stuge-openssh-unix-dev at cdy.org changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|no access to tty on Linux |no access to tty on Linux
|2.0 |2.0 and 2.4+libc5
------- Additional Comments
2017 Feb 21
1
second ssh connection for the first ssh request
...lt;dtucker at zip.com.au> wrote:
> On Tue, Feb 21, 2017 at 4:19 AM, Sudarshan Soma <sudarshan12s at gmail.com>
> wrote:
> > Hi I changed sshd_config to run script, .profile for user cliuser like
>
> What platform is this on? If it's Solaris, try commenting out
> SSHD_ACQUIRES_CTTY from config.h and recompiling.
>
> --
> Darren Tucker (dtucker at zip.com.au)
> GPG key 11EAA6FA / A86E 3E07 5B19 5880 E860 37F4 9357 ECEF 11EA A6FA (new)
> Good judgement comes with experience. Unfortunately, the experience
> usually comes from bad judgement.
>
2006 Feb 13
4
[Bug 1156] Closes connection after C-c is pressed on QNX
http://bugzilla.mindrot.org/show_bug.cgi?id=1156
Summary: Closes connection after C-c is pressed on QNX
Product: Portable OpenSSH
Version: 4.3p2
Platform: ix86
OS/Version: other
Status: NEW
Severity: normal
Priority: P2
Component: sshd
AssignedTo: bitbucket at mindrot.org
ReportedBy: kraai
2003 May 09
1
[Bug 536] no access to tty on Linux 2.0 and 2.4+libc5
...---
Attachment #285 is|0 |1
obsolete| |
------- Additional Comments From dtucker at zip.com.au 2003-05-10 00:53 -------
Created an attachment (id=286)
--> (http://bugzilla.mindrot.org/attachment.cgi?id=286&action=view)
Set SSHD_ACQUIRES_CTTY unless openpty tests OK (clean up)
Add a Linux-specific openpty/libutil test and leave the original login/libutil
tests alone. Fix some spaces -> tabs.
Tests OK on Redhat 8 and Debian Slink.
This is the final patch unless someone points out a problem.
------- You are receiving this mail b...
2003 May 12
3
[Bug 560] Privsep child continues to run after monitor killed.
http://bugzilla.mindrot.org/show_bug.cgi?id=560
Summary: Privsep child continues to run after monitor killed.
Product: Portable OpenSSH
Version: -current
Platform: ix86
URL: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=164797
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
2004 Dec 27
0
[patch] some buildsystem fixes for crosscompiling
...T(no)
AC_DEFINE(BROKEN_SNPRINTF)
AC_MSG_WARN([****** Your snprintf() function is broken, complain to your vendor])
+ ],
+ [AC_MSG_RESULT(yes)
+ AC_MSG_WARN([Cannot run test when crosscompiling, defaulted to yes.])
]
)
fi
@@ -876,6 +889,10 @@
[
AC_MSG_RESULT(no)
AC_DEFINE(SSHD_ACQUIRES_CTTY)
+ ],
+ [
+ AC_MSG_RESULT(yes)
+ AC_MSG_WARN([Cannot run test when crosscompiling, defaulted to yes.])
]
)
fi
@@ -1011,6 +1028,10 @@
[
AC_MSG_RESULT(not found)
AC_MSG_ERROR(OpenSSL version header not found.)
+ ],
+ [
+ ssl_header_ver="VERSION"
+ AC_MSG_WARN([Cannot r...
2004 Feb 27
3
Change request For OpenSSH 3.8p1
...existence of POSIX threads.
+ AC_CHECK_HEADER(pthread.h, [
+ AC_CHECK_LIB(pthread, pthread_create, [
+ CPPFLAGS="$CPPFLAGS -DUSE_POSIX_THREADS"
+ LIBS="-lpthread $LIBS"
+ ])
+ ])
# Pushing STREAMS modules will cause sshd to acquire a controlling tty.
AC_DEFINE(SSHD_ACQUIRES_CTTY)
external_path_file=/etc/default/login
-----------------------------------------------------------------------
Antoine Verheijen Email: antoine.verheijen at ualberta.ca
CNS Network Services Phone: (780) 492-9312
University of Alberta Fax: (780) 492-...
2017 Feb 20
2
second ssh connection for the first ssh request
Hi I changed sshd_config to run script, .profile for user cliuser like
this:
Match user cliuser
ForceCommand . /home/cliuser/.profile
cat /home/cliuser/.profile
#!/bin/sh
if [[ "$1" == "-c" ]]; then
exit 5
fi
trap 'exit' 1 2 3 4 15
ssh -tt secadmin at 127.0.0.1 -p 2024
exit
Now, with this, i wanted connections to sshd coming on 2025 to go to 2024
for user
2005 Sep 19
1
ssh hangs or gives Segmentation fault
...ISSING_FD_MASK */
/* #undef SMARTCARD */
/* #undef USE_SECTOK */
/* #undef USE_OPENSC */
#define OPENSSL_PRNG_ONLY 1
/* #undef WITH_ABBREV_NO_TTY */
/* #undef SUPERUSER_PATH */
/* #undef PRIVSEP_PATH */
/* #undef DISABLE_FD_PASSING */
#define HAVE_STRICT_MKSTEMP 1
#define HAVE_NANOSLEEP 1
/* #undef SSHD_ACQUIRES_CTTY */
/* #undef BROKEN_CMSG_TYPE */
#define LINK_OPNOTSUPP_ERRNO EPERM
/* #undef LOCKED_PASSWD_STRING */
#define LOCKED_PASSWD_PREFIX "!"
/* #undef LOCKED_PASSWD_SUBSTR */
/* #undef HAVE_GETRRSETBYNAME */
#define HAVE_HEADER_AD 1
/* #undef BIND_8_COMPAT */
#define HAVE_PROC_PID 1
/* #undef A...
2003 Jun 22
16
[Bug 600] compilation of ssh-askpass or ssh-rand-helper fails on NCR MP-RAS v3.02
http://bugzilla.mindrot.org/show_bug.cgi?id=600
Summary: compilation of ssh-askpass or ssh-rand-helper fails on
NCR MP-RAS v3.02
Product: Portable OpenSSH
Version: -current
Platform: ix86
OS/Version: other
Status: NEW
Severity: normal
Priority: P2
Component: Build system