diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-06-08 14:16:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-08 14:16:01 +0200 |
commit | 600eedd550d902310b8623b44c0590750330a4a3 (patch) | |
tree | 3e11b118a9b9e980e111edca366e595ab1d7befa | |
parent | bdba331cb0501cc2db6aeaa486d7763e184133ce (diff) | |
parent | 5bf0f7d818b353c0ad583e5c1d0835d510132958 (diff) | |
download | vyos-1x-600eedd550d902310b8623b44c0590750330a4a3.tar.gz vyos-1x-600eedd550d902310b8623b44c0590750330a4a3.zip |
Merge pull request #867 from erkin/current
T3563: Add support for IPv6 source addresses in SSH connections
-rw-r--r-- | python/vyos/remote.py | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/python/vyos/remote.py b/python/vyos/remote.py index 0bc2ee7f8..81ea23c71 100644 --- a/python/vyos/remote.py +++ b/python/vyos/remote.py @@ -24,11 +24,11 @@ import urllib.parse import urllib.request as urlreq from vyos.util import cmd, ask_yes_no +from vyos.validate import is_ipv6 from vyos.version import get_version from paramiko import SSHClient, SSHException, MissingHostKeyPolicy - # This is a hardcoded path and no environment variable can change it. KNOWN_HOSTS_FILE = os.path.expanduser('~/.ssh/known_hosts') CHUNK_SIZE = 8192 @@ -42,7 +42,8 @@ class InteractivePolicy(MissingHostKeyPolicy): print_error(f"Host '{hostname}' not found in known hosts.") print_error('Fingerprint: ' + key.get_fingerprint().hex()) if ask_yes_no('Do you wish to continue?'): - if client._host_keys_filename and ask_yes_no('Do you wish to permanently add this host/key pair to known hosts?'): + if client._host_keys_filename\ + and ask_yes_no('Do you wish to permanently add this host/key pair to known hosts?'): client._host_keys.add(hostname, key.get_name(), key) client.save_host_keys(client._host_keys_filename) else: @@ -180,7 +181,9 @@ def transfer_sftp(mode, local_path, hostname, remote_path,\ source=None, progressbar=False): sock = None if source: - sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) + # Check if the given string is an IPv6 address. + address_family = socket.AF_INET6 if is_ipv6(source) else socket.AF_INET + sock = socket.socket(address_family, socket.SOCK_STREAM) sock.bind((source, 0)) sock.connect((hostname, port)) callback = make_progressbar() if progressbar else None @@ -284,7 +287,7 @@ def get_http_file_size(urlstring, username=None, password=None): raise ValueError('Failed to receive file size from HTTP server.') -# Dynamic dispatchers +## Dynamic dispatchers def download(local_path, urlstring, source=None, progressbar=False): """ Dispatch the appropriate download function for the given `urlstring` and save to `local_path`. @@ -365,7 +368,6 @@ def get_remote_config(urlstring, source=None): <interface> <IP address> """ - url = urllib.parse.urlparse(urlstring) temp = tempfile.NamedTemporaryFile(delete=False).name try: download(temp, urlstring, source) |