dmanty45 / bots

Automatically exported from code.google.com/p/bots
0 stars 0 forks source link

added: communication protocol FTP with implicit SSL (ftpis) #91

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
FTPS implicit; is not defined in a RFC.
(but is used, eg by inovis)
standard port to connect is port 990.

Original issue reported on code.google.com by hjebb...@gmail.com on 20 Oct 2011 at 11:44

GoogleCodeExporter commented 8 years ago
sftp was broken by commenting out the host key stuff.
I removed hostkey from the connect, this fixes it
        #self.transport.connect(username=self.channeldict['username'],password=self.channeldict['secret'],hostkey=hostkey)
        self.transport.connect(username=self.channeldict['username'],password=self.channeldict['secret'])

Kind Regards,
Mike

Original comment by mjg1964 on 21 Oct 2011 at 3:56

GoogleCodeExporter commented 8 years ago
yes, I see where I made a mistake.
(confused hostkey withhost_keys)
will fix this (and test, I have not added sftp to test set)

Original comment by hjebb...@gmail.com on 21 Oct 2011 at 12:40

GoogleCodeExporter commented 8 years ago
hi mike,

is now fixed, tested the sftp module.

Original comment by hjebb...@gmail.com on 24 Oct 2011 at 9:40

GoogleCodeExporter commented 8 years ago

Original comment by hjebb...@gmail.com on 28 Oct 2011 at 7:11

GoogleCodeExporter commented 8 years ago

Original comment by hjebb...@gmail.com on 10 Sep 2013 at 12:44