2

I'm trying to securely transfer data from Solaris (version 10) to a Windows fileshare so the business users can access it.

The fileshare is mapped as a drive letter in an intermediary Windows Server (Win2003) that has openSSH running as a service.

If I use SFTP or SCP to PUSH the file from Solaris, I expect the transfer will be secure to the intermediary server - but will the transfer to the ultimate destination (the fileshare) be secure or is the final transmission done by Windows without encryption?

Lætitia
  • 2,085
  • 22
  • 33

1 Answers1

1

Windows filesharing between the Windows Server and the clients will be done in the clear, without encryption. If this part of the transfer needs to be secured, some other means needs to be implemented. This can be done by having a VPN between the Windows Server and the clients (but then depending on the network topology) or by having all the files stored on the share being encrypted (for example by a solution like the Symantec File Share Encryption or Winmagic FFE).

See also this other question: Access Windows file share over the internet and some recommendations by Microsoft about EFS (Encrypting File System) and Remote Storage of Encrypted Files Using SMB File Shares and WebDAV.

Lætitia
  • 2,085
  • 22
  • 33