不同区域中的虚拟机无法访问第三个区域中的存储
我在两个不同的区域有两个虚拟机;美国和英国。 我们还有在另一个区域创建的 Azure Blob 存储;澳大利亚。
Blob 存储只能从选定的网络访问(不可公共访问)。当我尝试添加现有网络时,它显然无法找到它们,因为它们都位于不同的区域。
有人知道我可以做什么来为两个虚拟机提供对存储的访问吗?
I have two virtual machines in two different regions; US and UK.
We also have Azure Blob Storage that was created in another region; Australia.
The Blob storage is only accessible from selected networks (no public access). When I try and add an existing network, it can't obviously find them as they are in different regions all together.
Does anyone have any ideas on what I can do to provide both VMs access to the storage?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以启用存储诊断日志记录版本 2:https://learn.microsoft.com/en-us/azure/storage/common/manage-storage-analytics-logs?tabs=azure-portal
解析日志文件并检查 IP尝试访问存储帐户并被阻止: https://github.com/nunogabrielmonteiro/AzureStorageLogReader
然后您可以在存储防火墙设置中将 IP 列入白名单,并检查您是否能够访问存储帐户:https://learn.microsoft.com/en-us/azure/storage/common/storage-network-security?tabs=azure-portal#managing-ip-network-rules
You can enable storage diagnostic logging version 2 : https://learn.microsoft.com/en-us/azure/storage/common/manage-storage-analytics-logs?tabs=azure-portal
Parse the log file and check the IP that is trying to access the storage account and getting blocked: https://github.com/nunogabrielmonteiro/AzureStorageLogReader
Then you can whitelist the IPs in the storage firewall settings and check if you are able to access the storage account : https://learn.microsoft.com/en-us/azure/storage/common/storage-network-security?tabs=azure-portal#managing-ip-network-rules