Link to home
Start Free TrialLog in
Avatar of southray
southray

asked on

Secure FTP without Using an FTP Client

We are in the healthcare industry and have deal with multiple vendors and clients.  We have been using FTP to transfer files but we have been told that it is no longer secure enough.  We need to install an FTP server in our network that has the following requirements:

1.  Must be secure (FTP is not good enough)
2.  We do not want to require everyone to get an FTP client. We want the end user experience to be as easy and elegant as possible.   For example, one of our vendors has an ftp site that is accessed through https web page.
3.  We do not want a web service (like box.net.)

TIA
Avatar of Darryl Allen
Darryl Allen
Flag of United States of America image

Understanding that you don't want to use an FTP client, that really is the best way to go, and there are a zillion free ones out there.  I would recommend Filezilla.

That said, I've seen a couple articles talking about using SSH (which is what secure FTP normally uses) over Internet Explorer.  Most will say you can't do it, but I saw the article below and it might be worth a try:

http://hints.macworld.com/article.php?story=20020906054428870
there is no such beast.
you should probably instead investigate using a webbrowser based upload site (using a java applet or, if the files are small, just native php upload) and enforce use of a https certificate on the site to achieve the security you need.
Avatar of drhamel69
drhamel69

What web server are you running?  You could implement a web based fille upload/download system with an SSL certificate.  I have experience in setting up this one: http://www.element-it.com/asp-net-explorer-browser/online-share/web-file-manager.aspx
SOLUTION
Avatar of drhamel69
drhamel69

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Avatar of kevinhsieh
kevinhsieh
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of southray

ASKER

Thanks for all the options