HOST_LIST = [["10.10.10.04", "user", "pasword"]] #ftp4
self.cnopts = pysftp.CnOpts()
self.cnopts.hostkeys = None
def get_r_portable(self, sftp, remotedir, localdir, preserve_mtime=False):
for entry in sftp.listdir(remotedir):
remotepath = remotedir + "/" + entry
localpath = os.path.join(localdir, entry)
mode = sftp.stat(remotepath).st_mode
if S_ISREG(mode):
if self.PATHFILTER.strip() != "":
if str(remotepath).lower().find(self.PATHFILTER.lower()) > -1:
sftp.get(remotepath, localpath, preserve_mtime=preserve_mtime)
for host in self.HOST_LIST:
with pysftp.Connection(host[0], username=host[1], password=host[2], cnopts=self.cnopts) as sftp:
try:
for dirs in self.FOL_LIST:
currdir = REMOTEFOLDER + dirs + ""
try:
self.get_r_portable(sftp, currdir, self.LOCALFOLDER, True)
except Exception as e:
self.logger.error("Exception in dir exploration" + str(e))
except Exception as e:
print('error')
[ 2020-03-08 15:05:03,574 ] [ ][ WARNING ] Please note that this utility does not use hostkeys to verify the hosts. If this is insecure for your setup, then kindly update the code or submit a feature request.
\pysftp-0.2.9-py3.7.egg\pysftp\__init__.py:61: UserWarning: Failed to load HostKeys from \.ssh\known_hosts.
You will need to explicitly load HostKeys (cnopts.hostkeys.load(filename)) or disableHostKey checking (cnopts.hostkeys = None).
[ 2020-03-08 15:05:03,577 ] [ ][ INFO ] Attempting connection to 10.10.10.04
--状态:连接到10.10.10.04:21...
状态:连接已建立,正在等待欢迎消息...
状态:正在初始化TLS...
状态:正在验证证书...
状态:TLS连接已建立。
状态:已登录
状态:正在检索目录列表...
状态:“/”的目录列表成功
我遇到了一种奇怪的情况,第一次需要连接到SFTP服务器,但似乎找不到访问该服务器已知主机条目的方法。如果我说: 但显然这让你容易受到中间人的攻击。因此,我尝试连接: 我会收到各种各样的错误信息。最近的一次是: 我运气不好吗?我是不是应该绕过钥匙检查?
我使用Sabre DAV在PHP中实现了一个webdav目录,用于我的网站(Application Server Webinterface)。 对于这个网站,我现在使用C#编写了一个TCP套接字,它运行在另一个服务器上(实际上它在同一个数据中心,但从理论上讲,它在另一个半球上)。 我想连接我的网络Dav到我的套接字的FTP服务器,这意味着文件监听,下载,上传。用户只能连接到一个服务。想象一下,我的
我尝试使用Apache commons库中的FTP连接到远程服务器。但我无法连接到此服务器..我遇到了一个例外: java.net.ConnectException:连接超时:连接在java.net.DualStackPlainSockeTimpl.Connect0(本机方法)在java.net.DualStackPlainSockeTimpl.connect(DualStackPlainSock
null
问题内容: 我处于一种奇怪的情况下,我需要第一次连接到SFTP服务器,但似乎找不到找到访问该服务器的已知主机条目的方法。如果我可以连接很好说: 但显然,这会让您在中间攻击时对男人敞开怀抱。所以我尝试连接: 而且我得到各种错误消息。最近的是: paramiko.hostkeys.InvalidHostKey 问题是我没有主机密钥,因为我是第一次连接。我试图从其他连接中获取密钥。我使用WinSCP,但
我一直在使用spring integration,我想连接多个ftp服务器来从远程位置检索文件,谁能给我一个好的例子,如何使用spring integration连接多个ftp服务器 先谢谢你,Udeshika