Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Azure SQL Server Firewall IP address range

Tags:

azure

Moving from Azure MySQL to SQL Server I'm required to specify a range of IP addresses that can access the Db.

Will a range of 0.0.0.0 to 255.255.255.255 be OK to enter? Is there a range of IP addresses that will give me an 'Allow All'. Its not practical for me know where requests will be coming from and be constantly updating the Database firewall rules.

like image 287
Pablo Avatar asked Sep 27 '12 16:09

Pablo


1 Answers

Will a range of 0.0.0.0 to 255.255.255.255 be OK to enter? Is there a range of IP addresses that will give me an 'Allow All'. Its not practical for me know where requests will be coming from and be constantly updating the Database firewall rules.

Yes, this will give access to your SQL Azure databases from every IP address though it is certainly not recommended. When you mentioned that you don't know from where you'll receive requests, do you mean requests to your application or the request to connect to the database? If it is requests to your application, you don't really need to specify this range. You can just specify 0.0.0.0 which will allow your application running in Windows Azure to access this database.

like image 78
Gaurav Mantri Avatar answered Oct 25 '22 09:10

Gaurav Mantri