https://bugzilla.mindrot.org/show_bug.cgi?id=2016 openssh at ml.breakpoint.cc changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |openssh at ml.breakpoint.cc --- Comment #5 from openssh at ml.breakpoint.cc --- The link local address (fe80::) require the interface which should be used to reach the address. On linux you use % operator for this: |bin/ssh -M fe80::111:41ff:fec1:1a81%br0 -p 65535 -z |Last login: Sun Aug 18 16:16:56 2013 from ip6-localhost where I use br0 to reach fe80::111:41ff:fec1:1a81. This is not sctp specific. -- You are receiving this mail because: You are watching the assignee of the bug.
https://bugzilla.mindrot.org/show_bug.cgi?id=2016 --- Comment #6 from openssh at ml.breakpoint.cc --- Created attachment 2329 --> https://bugzilla.mindrot.org/attachment.cgi?id=2329&action=edit update patch against CVS as of today This is an update version with the following changes to the original patch: - s/xfree/free - clash in command args parse fixup - configure.ac: check for sctp support if enabled. This avoids passing the configure script and having later errors at compile time errors due to missing headers or libs. - uset setsockopt() for SCTP instead of getsockopt() a second time in set_nodelay() - update man pages for scp.1, ssh.1, ssh_config.5, sshd_config.5 - use strcasecmp() for option checking so "SCTP" can be specified as well as "sctp" -- You are receiving this mail because: You are watching the assignee of the bug.
https://bugzilla.mindrot.org/show_bug.cgi?id=2016 --- Comment #7 from proler at gmail.com --- /usr/local/bin/ssh -z 2002:1111:1111::1 #Read from socket failed: Software caused connection abort /usr/local/bin/ssh -z -6 2002:1111:1111::1 #ok, all v4 and v6 addrs in netstat -nW -p sctp xx.yy.net have A and AAAA=2002:1111:1111::1 /usr/local/bin/ssh -z xx.yy.net #only v4 in Foreign Address /usr/local/bin/ssh -z -6 xx.yy.net #ok, all v4 and v6 addrs in netstat -nW -p sctp -- You are receiving this mail because: You are watching the assignee of the bug.
https://bugzilla.mindrot.org/show_bug.cgi?id=2016 --- Comment #8 from openssh at ml.breakpoint.cc --- (In reply to proler from comment #7)> /usr/local/bin/ssh -z 2002:1111:1111::1 > #Read from socket failed: Software caused connection abort./ssh 2001:470::de5a -p 65535 -z works on Linux. I doubt that this is 6to4 specific or might it be?. Could it be a Freebsd issue?> /usr/local/bin/ssh -z -6 2002:1111:1111::1 > #ok, all v4 and v6 addrs in netstat -nW -p sctpSo forcing works. I guess you don't have this problems with TCP, or do you?> xx.yy.net have A and AAAA=2002:1111:1111::1 > > /usr/local/bin/ssh -z xx.yy.net > #only v4 in Foreign Addressthat means you connect to 17.17.17.17 instead? This doesn't make sense since :1 is missing.> > /usr/local/bin/ssh -z -6 xx.yy.net > #ok, all v4 and v6 addrs in netstat -nW -p sctp-- You are receiving this mail because: You are watching the assignee of the bug.
https://bugzilla.mindrot.org/show_bug.cgi?id=2016 Florian Schmaus <flo at freakempire.de> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |flo at freakempire.de -- You are receiving this mail because: You are watching the assignee of the bug.