如何在多跳 ssh 情况下列出目录?或者还有其他方法可以获取我的目标文件?
def file_lookup():
for file in os.listdir('/var/log/rsyslog/firewall-a/'):
if fnmatch.fnmatch(file, 'syslog-'+date+'-\d{10}\.gz'):
global log_file
log_file = file
def copy_from_log_server_to_bastion():
ssh_client = paramiko.SSHClient()
ssh_client.load_host_keys('/home/vagrant/.ssh/known_hosts/')
ssh_client.connect(bastion_ip, bastion_port, username, password)
stdin, stdout, stderr = ssh_client.exec_command('scp ' + username + '@' + log_server_ip + ':' + logs_directory + log_file + ' ./')
stdin.write(password)
def copy_from_bastion_to_local():
# some codes here
我希望我的脚本从远程服务器 -> 堡垒主机 -> 本地复制文件,但是我遇到了这个多跳 ssh 的问题。
抱歉,我没有足够的声誉在帖子中附加图片。