Azure File Share over VPN

azureazure-networkingfile-sharingnetwork-share

I currently have a folder inside a VM in Azure that is shared among several users using SMB and connecting using a VPN to this VM and them mounting the virtual folder on Windows (like \10.0.0.1\folder).

Now, as I don't want to maintain this server 24/7, I transferred those files to a Azure File Share.

Problem is: I can't connect to the Azure File Share as my company blocks port 445 to public IPs.

So, I need a way to access Azure File Share by some VPN. Is there any way I can connect my storage account to a virtual network and has its private IP?

Thanks in advance.

Best Answer

So, I need a way to access Azure File Share by some VPN.

Yes, you could.

You could setup Windows Azure (Server 2012) as an SSTP and L2TP VPN Provider, your client PC connects to this VPN. I test it in my lab, it works for me. I could mount file share even though ISP block 445 Port. More information about how to setup Azure Windows as a VPN provider, please refer to the article.

Also, you could refer to this link which is the same with you.

Related Topic