Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Share Folder (SMB) from EC2 Instance on AWS to remote machine

I am trying to migrate an application to Amazon and need client machines to be able to connect in. Realistically it seems as though I'll just need to be able to MAP a folder on the EC2 instance (running Windows Server 2008 R2) to the client machines (running Windows 7) and that will be sufficient.

I've done quite a bit of searching online and came across this entry early on:

https://serverfault.com/questions/228468/unable-to-share-data-between-amazon-ec2-instances-for-windows#comment220635_231318

I have opened the ports on both ends of my test machine and the EC2 server and cannot make a successful connection. The folder is shared, I've checked and rechecked the permissions, the ports, etc, but to no avail. Can anyone help point me in the right direction?

Edit: I've also tried to VPN into the instance, again, to no avail.

like image 588
user2548469 Avatar asked Dec 06 '13 23:12

user2548469


People also ask

How do I transfer files from EC2 instance to Windows?

After you have connected, the left pane of the window will display the file contents of your computer and the right pane displays the contents of your EC2 instance. Drag and drop files from your computer into your EC2 instance to process.


1 Answers

Amazon is not blocking windows shares. As long as you have port 445 open on your security group, you should be able to connect to the windows instance.

Make sure you do not have a client side firewall (either on your local machine or on your local network - it is not unusual for outgoing port 445 to be blocked on corporate networks).

Bear in mind that sharing folders like this is not secure - files are not encrypted over the wire, so someone could see your data.

like image 157
Barak Avatar answered Nov 15 '22 04:11

Barak