Reputation: 557
Right now, i am working on setting a docker on azure. There i stumbled on Static Virtual Public IP Address. I read about it but i still have some doubts.
Context: I have to access the docker using a window client in a company environment where port access can be provided to a particular IP address.
Upvotes: 0
Views: 2158
Reputation: 557
MSN Tutorial says:
Use of reserved IP
You want to ensure that outbound traffic from Azure uses a predictable IP address. You may have your on-premises firewall configured to allow only traffic from specific IP addresses. By reserving an IP, you will know the source IP address and won’t have to update your firewall rules due to an IP change.
Conclusion: It will work.
Upvotes: 1
Reputation: 126
Azure has two deployment models: Classic and ARM (Azure Resource Manager) Note that ARM is the newer and recommended option. IP addresses work differently in these models so its a good idea understand these better specifically in the context of what you are looking for which are public static (or reserved) IPs :
Upvotes: 0