• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Windows file access over the internet...

Hi there,

I'm primarily a web/database developer but am getting into some Win2003 Server administration simply because some of my clients now require didcated hosting.

The issue I'm facing is that I'm not sure of the best way to allow multiple clients to connect to the server to manage their web sites. I've usually done this via SFTP, which IIS does not support, and I'm not comfortable with login information going over regular FTP. Which seems to leave me two options:

- Install a third-party FTP server that can handle SFTP (or SSH tunneling), or:
- Come up with some other way of letting clients access the server -- VPNs?

This problem is hardly unique, so I'm curious: what are the common solutions? SSH tunneling seems straightforward enough, I suppose.

Thanks,
Samuel Knowlton
 
You can look into WebDAV for remote file access. You would create a virtual directory under IIS, and the folder permissions of the target are inherited. The next step is allowing WebDAV to run (under IIS manager as well). If you use SSL it's a pretty secure way transferring files.

EDIT: After re-reading your post, I'm thinking WebDAV isn't going to fit. You are probably better off running a sftp/scp app.
 
WebDav is actually what I have started to do. It doesn't seem as fast as a nice FTP setup, but it works - particularly as there aren't a whole lot of developers that need access to the machine, I'd feel a little silly running a lot of extra services for it.

Just out of curiosity, what are the reasons not to use Webdav?

Thanks for the help--
SK
 
Back
Top