Windows Azure Client with IP address 'XXX.XXX.XXX.XX' is not allowed to access the server

AzureAzure Sql-DatabaseAzure Storage

Azure Problem Overview


I have setup Sever, database and Firewall Setting (Rule) In windows Azure. I Have added The IP In firewall setting which is populating under the Windows Azure Firewall Tab.

When I am trying connect with Database using Manage from Azure Platform I am getting this error message.

Firewall check failed. Cannot open server 'XXXXXXXXX' requested by the login. Client with IP address 'XXXXXXXXX' is not allowed to access the server. To enable access, use the SQL Azure Portal or run sp_set_firewall_rule on the master database to create a firewall rule for this IP address or address range. It may take up to five minutes for this change to take effect.

And I am also Not able to connect via Sql Server Management Studio. Getting Same connection issue Error for My IP Address.

I am not using static IP but my IP haven't change during this process. I have tried lot Example but all are saying To add firewall rule That I had already done.

I have Added Firewall exception for port Number 1433.

But still this is not working Please let me know that what type of setting is still missing.

Thanks in advance.

Azure Solutions


Solution 1 - Azure

with new version of windows azure only go to firewall settings and click on add client IP and you will be okey. see picture bellow

Solution 2 - Azure

If you want to manage SQL Azure from the Azure Portal you have to check the "Allow other Windows Azure Services to connect to this server". That is also required later for your Web/Worker roles deployed to Azure: enter image description here

If you want to connect from your home/work PC, you have to keep the firewall up-to-date with your public IP address! Your public IP Address is in the little popup windows, which pops out when you want to add new firewall rule:

enter image description here

Solution 3 - Azure

As Azure keeps changing, so do the ways to get to the firewall. click SQL Server, then Firewall, then add the range

Click your SQL server (not the database, but the server) -> click firewall -> add the IP range you want to allow.

Dont forget to click save!

Solution 4 - Azure

Azure Configure Firewall

This is simply the visual to what Saurin Vala said. For whatever reason in Azure you have to click Open in Visual Studio first.

Solution 5 - Azure

As you may already know, Microsoft changes things all around the place in the Azure Portal, that's good as it shows they care about the UX/UI, however, it's a bit annoying for us to do things when we need.

So, currently, to edit the firewall rules for a specific SQL database instance, you follow the below steps.

Home > [Your SQL database] > Overview > Set Server firewall

or

Home > All Resources > [Search for Your SQL database] > [Your SQL database] > Overview > Set Server firewall

The image below shows the UI flow.

enter image description here

Solution 6 - Azure

If you find that you have to do this on a regular basis I would suggest installing the Windows Azure Powershell Cmdlets. Once you have those installed I've created an open source project on GitHub which provides a number of scripts of common tasks.

Changing Firewall rules just so happens to be one of those common tasks and the source can be found here: Windows Azure Powershell Extensions

In order to get these Extensions installed you can follow the instructions on my blog post SQL Azure Powershell for Developers on the Run!

In a future update I will be providing additional functionality to provide the publishsettings file instead of needing to create a CSV file of SubscriptionId and Thumbprint's for your Windows Azure Accounts.

Solution 7 - Azure

>Login to azure Portal

>>select your database subscription >>>click on Tools

>>>>> Now there is option 'Open in VisualStudio' (click on it)

>>>>>> You can see "Configure Firewall" click on it.

>>> Add you new IP.

> Done :)

Solution 8 - Azure

Here is what I did to solve this issue. By going to Firewall Settings DB->Overview->Firewall Settingsenter image description here

Solution 9 - Azure

For me it was

Azure Portal (ARM)

Choose SQL databases sub folder on left or find in the more section to add.

Choose your SQL database

click firewall

inter in rule name and IP's

Solution 10 - Azure

Click on your database resource. Go to Firewall settings by clicking on set server firewall. Add the new rule and all set :) enter image description here

Solution 11 - Azure

Odd Wrinkle: I used my Azure admin login to set a firewall rule for each user with their WhatIsMyIP address. Some worked, some did not. Turned out some users saw a different IP address displayed in SSMS when it offered to update the rule for them. That address always worked. I can't explain why there are different IP addresses. I just know I finally had the problem users [all non-techies] install SSMS and use it to give me the correct address.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionPankaj MishraView Question on Stackoverflow
Solution 1 - AzureHussein AlrubayeView Answer on Stackoverflow
Solution 2 - AzureastaykovView Answer on Stackoverflow
Solution 3 - AzurecrthompsonView Answer on Stackoverflow
Solution 4 - AzurebfsView Answer on Stackoverflow
Solution 5 - AzureAlexzView Answer on Stackoverflow
Solution 6 - Azurecory-fowlerView Answer on Stackoverflow
Solution 7 - AzureSaurin ValaView Answer on Stackoverflow
Solution 8 - AzureCesarBView Answer on Stackoverflow
Solution 9 - Azurejust helping outView Answer on Stackoverflow
Solution 10 - AzureDOTView Answer on Stackoverflow
Solution 11 - AzureDebbyView Answer on Stackoverflow