isync has asked for the wisdom of the Perl Monks concerning the following question:

Hello Monks,

is there anything I've overseen (on cpan) that would help me build an FTPS capable FTP server based on Net::FTPServer?
Analogue to HTTP::Daemon::SSL...

Replies are listed 'Best First'.
Re: FTPS based on Net::FTPServer?
by igelkott (Priest) on Sep 30, 2008 at 22:03 UTC
    FTPS server

    Never tried it but I'd imagine that IO::Socket::SSL could help you do this.

      Mmmh. So the approach would be to rewrite Net::FTPServer to use IO::Socket::SSL instead of IO::Socket, right?

      Puh! Really no ready-to-use perl/cpan solution out there? Can't believe this...
Re: FTPS based on Net::FTPServer?
by isync (Hermit) on Sep 24, 2008 at 17:09 UTC
    Anyone?