You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ovn_adoption: fix scp with IPv6 addresses in cluster-to-standalone
The scp command constructed from the SSH command by replacing "ssh"
with "scp" does not account for IPv6 addresses. When the controller
host is an IPv6 address (e.g. 2620:cf:cf:aaaa::70), scp interprets
the colons as the host:path separator, causing it to connect to a
bogus IPv4 address derived from the first octet.
Fix by splitting the SSH command into the scp options and the host,
then wrapping the host in square brackets for the scp remote path.
This is compatible with both IPv4 and IPv6 addresses since brackets
around an IPv4 address are valid in scp.
Update both the test role and the user-facing documentation.
Co-authored-by: Cursor <cursoragent@cursor.com>
0 commit comments