Adding your Client IP to the Azure SQL server firewall

1 minute read

One of the first things that need to be done when you create a Azure SQL database is adding the Client IP address to the firewall of the Azure SQL server. By default all traffic between Azure services are allowed but traffic from another machine is disallowed. Connecting to the server with for example SQL Management Studio will result in the following error:

 

Cannot open server [servername] requested by the login. Client with IP address [IP Address] is not allowed to access the server.

 

image

Steps

When you open the Azure SQL Database within Visual Studio it will prompt you the question if you would like to add your Client IP to the firewall in order to access the database.  If you prefer another tool like SQL Server Management studio you will have to configure this within the Azure Portal (as mentioned in the error):

  1. Open the Azure Portal: https://portal.azure.com.
  2. Click on Resource Groups and then the resource group of the SQL server.
  3. In the Resource Group blade click on the SQL server.
  4. Within the “Security” Category click on “Firewall”.
  5. Add your Client IP within this blade.
  6. Click on save to save the settings.

 

Azure SQL Firewall

 

Until today I navigated to the website: https://www.whatismyip.com/ to retrieve my external IP and add it via the steps mentioned above but today I noticed another option (I think it already was there for quite some time). Within the firewall blade you can click on “Add client IP” to add your current client IP.

 

Add Client IP