in reply to Re: ActivePerl - Secure FTP - Net::SFTP?
in thread ActivePerl - Secure FTP - Net::SFTP?

Ah, yes, further proof that I am still learning.

The client requests SSL FTP, not "Secure FTP". I was unaware that there was any true difference in the two. In fact, the little documentation the client offers me refers to RFC 2246, which you discussed. I'm currently scanning that now.

Let me clear the air a little...I work for a Health Care billing agency, and, as anyone near the industry knows, we have new federal privacy/security standard we need to implement...aka HIPAA.

HIPAA requires 128bit encryption for all electronic transfers. The client interpertes that to be SSL transfers, so that's what I have to run with.

Hopefully, I'm not the only Perl programmer here in Health Care, and someone can share their knowledge/horror stories of how they are trying to support this stuff.

I guess the question should now read: "I need a way to do FTP transfers over SSL and automate the process." I know there are other GUI clients that you can sort-of-script that can do this (WS-FTP), but we really need something with more flexability that we can control (like Perl). Any help out there, or do I have to goto low-level socket programming?

Thanks,
rusacarr

  • Comment on Re: Re: ActivePerl - Secure FTP - Net::SFTP?

Replies are listed 'Best First'.
Re: Re: Re: ActivePerl - Secure FTP - Net::SFTP?
by iburrell (Chaplain) on Aug 13, 2003 at 19:44 UTC
    Look at http://www.ford-hutchinson.com/~fh-1-pfh/ftps-ext.html for lots of info on FTP-SSL. It has a list of clients that support SSL, includng command-line clients that could be run from Perl.

    Also, you might want to investigate if FTP is the right solution. HTTPS is much simpler and better supported. It isn't ideal for transferring files it can be used for that. SSH and SFTP are also good for transferring and manipulating files securely.

Re: Re: Re: ActivePerl - Secure FTP - Net::SFTP?
by rje (Deacon) on Sep 12, 2003 at 13:21 UTC
    As a matter of fact, I'm in the same boat as you -- I'm in the Healthcare billing world too, and want to use Perl as an automated system to SSL-FTP claim data from the provider's site to our processing center. If you find a solution, let me know please?!

    Currently we're using Java to do all the work. And of course if it ain't broke... But then I think Perl could be a better solution.