Displaying 20 results from an estimated 1000 matches similar to: "SSH_CHANNEL_UNIX_LISTENER"
2007 Oct 22
15
[Bug 1380] New: incorrect check for strlen(fwd->connect_host) in parse_forward()
https://bugzilla.mindrot.org/show_bug.cgi?id=1380
Summary: incorrect check for strlen(fwd->connect_host) in
parse_forward()
Classification: Unclassified
Product: Portable OpenSSH
Version: 4.7p1
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P3
Component: ssh
2005 Mar 02
1
Port 0 forwarding implemented?
Hello everybody,
I've read the ssh protocol draft
http://www.ietf.org/internet-drafts/draft-ietf-secsh-connect-24.txt
and I wonder if the feature documented in section 7.1, page 15, last
paragraph, is implemented in OpenSSH or not (sshd chooses the first free non
privileged port to forward when the specified port number is 0). I need this
feature and, if it isn't implemented yet, I
2011 Sep 08
1
Dynamic port remote listener - a BUG?
Hello,
Today I tried using "dynamically assigned" port for remote listener, by
requesting listener on port 0. This is supposed to create a listener on a
port choosen by server. Everything seemed OK (the choosen port was sent back
to client), but forwarding was refused. So I checked the source.
in channels.c, function: channel_setup_fwd_listener
/*
*
2017 Mar 14
3
Relaiable ssh tunnel via systemd
We try to run a reliable ssh tunnel vis systemd.
This is the unit configuration file:
{{{
[Unit]
Description=Tunnel For %i
After=network.target
[Service]
User=autossh
ExecStart=/usr/bin/ssh -o "ExitOnForwardFailure yes" -o "ServerAliveInterval 60" -N -R 40443:installserver:40443 -R
8080:installserver:8080
ExecStartPre=-/usr/bin/ssh tunnel@%i "for pid in $$(ps -u
2017 Jun 16
2
[PATCH] allow relative path in streamlocal forwarding
When forwarding a Unix-domain socket, the remote socket path must be
absolute (otherwise the forwarding fails later). However, guessing
absolute path on the remote end is sometimes not straightforward,
because the file system location may vary for many reasons, including
the system installation, the choices of NFS mount points, or the
remote user ID.
To allow ssh clients to request remote socket
2007 Oct 22
2
[Bug 1378] New: incorrect port check in parse_forward()
https://bugzilla.mindrot.org/show_bug.cgi?id=1378
Summary: incorrect port check in parse_forward()
Classification: Unclassified
Product: Portable OpenSSH
Version: 4.7p1
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P3
Component: ssh
AssignedTo: bitbucket at mindrot.org
2002 May 15
0
[Bug 244] New: Remote port forwarding on solaris 8x86 doesn't work
http://bugzilla.mindrot.org/show_bug.cgi?id=244
Summary: Remote port forwarding on solaris 8x86 doesn't work
Product: Portable OpenSSH
Version: 3.1p1
Platform: ix86
OS/Version: Solaris
Status: NEW
Severity: major
Priority: P2
Component: sshd
AssignedTo: openssh-unix-dev at mindrot.org
2003 Nov 22
0
[Bug 762] ssh does not exit if local port could not be bound with options -L and -N
http://bugzilla.mindrot.org/show_bug.cgi?id=762
Summary: ssh does not exit if local port could not be bound with
options -L and -N
Product: Portable OpenSSH
Version: 3.7.1p1
Platform: ix86
OS/Version: Linux
Status: NEW
Severity: enhancement
Priority: P2
Component: ssh
2004 Aug 05
1
LocalForward and RemoteForward bind patch
FINALLY, it's here.
You can now tell SSH which address to bind to for every single port
forwarding option! This patch allows you to pass the following as ssh
command line options:
ssh -L 192.168.1.55:1234:localhost:80 -R ::11:22:aa:bb/80/localhost/80
etc.
Or as normal config file options:
LocalForward ::11:22:33/1234 localhost/80
RemoteForward 1.2.3.4:80 localhost:80
It will also
2004 Sep 01
1
[LLVMdev] Type uint64_t required but not found
Reid,
>Well, if it doesn't break anything else, I'd fix the header file. The
>standard type name is supposed to uint64_t not u_int64_t. I would just
>change the header file to define both of them, something like:
>
>typedef u_int64_t uint64_t;
>
>You could do that in /usr/include/types.h,
I've tried it and it doesn't break anything, but ...
>or we could
2011 Sep 22
0
which sftp protocol is openssh or sftp-server using or support?
Hi,
After reading the source code of openssh and man page of sftp.
In sftp.h it define
27 /*
28 * draft-ietf-secsh-filexfer-01.txt
29 */
30
31 /* version */
32 #define SSH2_FILEXFER_VERSION 3
and In the end of the man page,
T. Ylonen and S. Lehtinen, SSH File Transfer Protocol,
draft-ietf-secsh-filexfer-00.txt, January 2001, work in progress
material.
In wikipedia of "SSH File
2004 Sep 01
0
[LLVMdev] Type uint64_t required but not found
Who takes action on this?
>From: John Criswell <criswell at cs.uiuc.edu>
>Date: Wed, 01 Sep 2004 15:16:53 -0500
>
>Henrik Bach wrote:
>>Reid,
>>
>>>Well, if it doesn't break anything else, I'd fix the header file. The
>>>standard type name is supposed to uint64_t not u_int64_t. I would just
>>>change the header file to define both
2014 Apr 14
2
[Bug 2227] New: Support version 6
https://bugzilla.mindrot.org/show_bug.cgi?id=2227
Bug ID: 2227
Summary: Support version 6
Product: Portable OpenSSH
Version: 6.6p1
Hardware: 68k
OS: Mac OS X
Status: NEW
Severity: enhancement
Priority: P5
Component: sftp-server
Assignee: unassigned-bugs at mindrot.org
2005 May 19
1
ssh-keygen private keys export - new feature
Hello,
I had some difficulties in order to convert private keys between different
implementations of SSH.
So, I wrote the following patch to allow export of SSH2 RSA and DSA private
keys into IETF SECSH format.
Note that I also slightly revised the IETF SECSH key import code.
Usage: use of the "-e" option on a private key file generates an unencrypted
private key file in IETF SECSH
2012 Oct 22
1
[PATCH] Implement remote dynamic TCP forwarding
Hi all,
This is a client side only implementation of reversed dynamic (SOCKS) TCP
forwarding, which means it is compatible with any existing servers
have 'remote forward' capability.
To establish such forward, use "ssh -R [BIND_ADDRESS:]PORT ...".
The server will listen on that port and address and accept SOCKS
traffics.
Hope this will be useful for you.
There was an
2001 Mar 20
1
Kerberos v5 and GSSAPI support in OpenSSH
An updated version of my patch for Kerberos v5 support is now available
from
http://www.sxw.org.uk/computing/patches/openssh-2.5.2p1-krb5.patch
This patch includes updated Kerberos v5 support for protocol version 1,
and also adds GSSAPI support for protocol version 2.
Unlike the Kerberos v5 code (which will still not interoperate with
ssh.com clients and servers), the GSSAPI support is based on
2002 Mar 26
0
[Bug 187] New: ssh-keygen not converting from and to SECSH standard correctly
http://bugzilla.mindrot.org/show_bug.cgi?id=187
Summary: ssh-keygen not converting from and to SECSH standard
correctly
Product: Portable OpenSSH
Version: 3.1p1
Platform: Sparc
OS/Version: Solaris
Status: NEW
Severity: normal
Priority: P2
Component: ssh-keygen
AssignedTo:
2023 Mar 10
1
OpenSSH FIPS support
Hi Joel,
Joel GUITTET wrote:
> Hi,
> We currently work on a project that require SSH server with FIPS and using OpenSSL v3.
There is no way to work with OpenSSL v3 due to many reasons.
If you like to get FIPS capable secsh implementation compatible with OpenSSL FIPS validated modules 1.2 and 2.0 , RedHat ES, or Oracle Solaris you could use PKIX-SSH.
Regards,
Roumen Petrov
--
Advanced
2001 Feb 16
0
Regarding Trademark Dispute.
I received the following e-mail in response to an e-mail I had
sent to SSH communications questioning the wisdom of their
requesting OpenSSH to change it's name. Contained in the message
is that statement that SSH Communications did not exert their
trademark rights earlier becuase it's only recently that
OpenSSH has become more visible.
In the United States, this would invalidate the
2001 Oct 22
2
OpenSSH port to NetWare 6
I'm a software developer at Novell. I have been tasked with porting OpenSSH to the NetWare 6.0 OS. I would like to include my NetWare specific changes,#ifdef'd of course, in the portable releases at some point. Whom should I contact with regard to this? And are there any guidlines I can look at online to minimize any disturbance this may cause to other platforms?
Any assistance that