Microsoft announces public preview of Azure Bastion

Microsoft recently announced public preview of Azure Bastion, a managed PaaS service which provides RDP and SSH connectivity through a browser to access Azure VMs.  This eliminates the need of a public IP address assign to the VM.  It is deployed in the Virtual Network and provides RDP/SSH provision for all the VMs in the same Virtual Network. Source - Microsoft Docs What is needed Azure VM Subnet in the Virtual Network using the name value “AzureBastionSubnet” Microsoft…

Continue ReadingMicrosoft announces public preview of Azure Bastion

Restrict IP Address in ASP.NET Web API

There are several ways to restrict access to a Web server based on the requestor’s IP address.  We can do that from IIS or using inbound Firewall rules. But If you want to restrict access to one of the applications deployed in the server based on the IP Address then you have to achieve that programmatically.  In this post, we will see how to restrict IP addresses in ASP.NET Web API. Check this Post for…

Continue ReadingRestrict IP Address in ASP.NET Web API