Bug 625608

Summary: IPv6 local port forward does not work as described in man-page
Product: [Fedora] Fedora Reporter: Manuel Faux <fedora>
Component: opensshAssignee: Jan F. Chadima <jchadima>
Status: CLOSED UPSTREAM QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: low Docs Contact:
Priority: low    
Version: 13CC: jchadima, mgrepl, tmraz
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2010-09-14 08:40:39 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Manuel Faux 2010-08-19 22:28:06 UTC
Description of problem:
man 1 ssh describes:
> -L [bind_address:]port:host:hostport
>        IPv6 addresses can be specified with an alternative syntax:
>        [bind_address/]port/host/hostport or by enclosing the address in
>        square brackets.

Syntax with slashes - as described - does not work:
mfaux@reykjavik ~ % ssh -L '1234/::1/1234' 1.2.3.4
Bad local forwarding specification '1234/::1/1234'

Version-Release number of selected component (if applicable):
openssh-clients-5.4p1-3.fc13.i686

How reproducible:
Always
  
Actual results:
If executing "ssh -L 1234/::1/1234 server" ssh closes with "Bad local forwarding specification '1234/::1/1234'".

Expected results:
ssh should interpret the syntax as described in the man page.

Additional info:
Workaround: Use "enclosing address in square brackets" method: "ssh -L '1234:[::1]:1234'".

Comment 1 Jan F. Chadima 2010-09-14 08:40:39 UTC
reported upstream as https://bugzilla.mindrot.org/show_bug.cgi?id=1819