Best Practices for Implementing Azure SFTP Without Opening Access to All Networks

0
1
Asked By CuriousCat74 On

I'm currently working on a project that's implementing Azure SFTP service for a storage account meant for external clients. I want to avoid making the storage account accessible to all networks and minimize the hassle of using a firewall with a bunch of whitelisted IPs. Has anyone had real-world experience setting up SFTP this way? My past setups allowed for open network access, but I'm looking for a more secure approach this time.

3 Answers

Answered By CloudChaser88 On

Have you considered using Couchdrop? It's another option to manage these file transfers more easily without being too tied to Azure.

CuriousCat74 -

Thanks for the suggestion! They prefer to keep things native to Azure, but I’ll look into Couchdrop if we run into issues.

Answered By FileWizard44 On

I tried using Azure SFTP for automated data uploads, but I hit some walls. The biggest issue was that I needed private subdirectories for client uploads, but Azure's solution doesn't have an equivalent to UNIX's chroot to keep users confined to a directory. I ended up having to use a Linux VM instead for that flexibility.

CuriousCat74 -

Thanks for sharing! We're definitely going to test it out first to see if it meets our needs. I'm aware that Azure SFTP lets us create local accounts with specific directory settings.

Answered By TechGuru21 On

I recommend setting up a firewall. It's crucial to restrict access properly, so even if it may feel like extra effort, it's worth it in the long run. You'll want to ensure that only the necessary traffic gets through.

CuriousCat74 -

I appreciate the advice! We have some NVAs already, so we're planning to route external SFTP traffic through those to avoid compromising the storage account.

SecureDev98 -

Alternatively, you might look into using RBAC for access control with SSH keys or complex passwords instead of a firewall. This way, you won't need to deal with public endpoint whitelisting. It's similar to managing a DMZ.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.