如何在 c# 中为 SQL Azure 启用内部 Azure 服务
Posted
技术标签:
【中文标题】如何在 c# 中为 SQL Azure 启用内部 Azure 服务【英文标题】:How do enable internal Azure Services for SQL Azure in c# 【发布时间】:2015-10-20 10:57:46 【问题描述】:如何启用允许的服务:WINDOWS AZURE SERVICES,如 C# 管理门户中所示?
_client = new SqlManagementClient(GetSubscriptionCredentials());
var result = _client.Servers.CreateAsync(new ServerCreateParameters
AdministratorUserName = _config.ServerUserName,
AdministratorPassword = _config.ServerPassword,
Location = _config.Location,
Version = "12.0"
, CancellationToken.None).Result;
var sqlServerName = result.ServerName;
// This will go away once we can enable the Azure internal firewall settings == Yes
var ipAddress = _firewallManagement.GetPublicIP();
var firewall = _client.FirewallRules.Create(sqlServerName, new FirewallRuleCreateParameters("Server", ipAddress, ipAddress));
【问题讨论】:
【参考方案1】:只需将 0.0.0.0 作为 start_ip_address 和 end_ip_address 像下面的 T-SQL 一样添加到 sys.firewall_rules
exec sp_set_firewall_rule N'MicrosoftServices','0.0.0.0','0.0.0.0'
不要介意 0.0.0.0 范围,SQL Azure 知道它仅适用于订阅中的 Azure IP。
select * from sys.firewall_rules
id name start_ip_address end_ip_address create_date modify_date
7 MicrosoftService 0.0.0.0 0.0.0.0 2015-07-29 13:34:55.790 2015-07-29 13:34:55.790
Azure SQL 数据库防火墙
当来自 Azure 的应用程序尝试连接到您的数据库时 服务器,防火墙会验证是否允许 Azure 连接。一种 开始和结束地址等于 0.0.0.0 的防火墙设置 表示允许这些连接。
https://msdn.microsoft.com/en-us/library/azure/ee621782.aspx#ConnectingFromAzure
以编程方式添加和删除 SQL Azure 防火墙规则
http://www.c-sharpcorner.com/uploadfile/dhananjaycoder/adding-and-deleting-sql-azure-firewall-rules-programmatically/
public void AddFirewallRule(FirewallRule rule)
using (SqlConnection conn = new SqlConnection(this.ConnectionString))
using (SqlCommand cmd = conn.CreateCommand())
conn.Open();
cmd.CommandText = "sp_set_firewall_rule";
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.Add("@name", SqlDbType.NVarChar).Value = rule.Name;
cmd.Parameters.Add("@start_ip_address", SqlDbType.VarChar).Value = rule.startIPAddress.ToString();
cmd.Parameters.Add("@end_ip_address", SqlDbType.VarChar).Value = rule.endIPAdress.ToString();
cmd.ExecuteNonQuery();
【讨论】:
var azureFirewall = _client.FirewallRules.Create(sqlServerName, new FirewallRuleCreateParameters("MicrosoftServices", "0.0.0.0", "0.0.0.0"));
【参考方案2】:
https://azure.microsoft.com/en-gb/documentation/articles/sql-database-client-library/ 有最新的方法
【讨论】:
以上是关于如何在 c# 中为 SQL Azure 启用内部 Azure 服务的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Asp.net c# 中为 GridView 行启用双击和单击
在 Azure Web 应用程序中为 Web API 启用 CORS
如何在 C# 中为 SqlServer 转义简单的 SQL 查询