你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
New-AzureSqlDatabaseServerFirewallRule
在 Azure SQL 数据库 Server 中创建防火墙规则。
注意
本文档中引用的 cmdlet 用于管理使用 Azure Service Manager (ASM) API 的旧式 Azure 资源。 创建新资源时,建议不要使用旧的 PowerShell 模块,因为计划将停用 ASM。 有关详细信息,请参阅 Azure Service Manager 停用。
Az PowerShell 模块是建议用于管理 PowerShell 的 Azure 资源管理器 (ARM) 资源的 PowerShell 模块。
语法
New-AzureSqlDatabaseServerFirewallRule
-ServerName <String>
-RuleName <String>
-StartIpAddress <String>
-EndIpAddress <String>
[-Force]
[-Profile <AzureSMProfile>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
New-AzureSqlDatabaseServerFirewallRule
-ServerName <String>
[-RuleName <String>]
[-AllowAllAzureServices]
[-Force]
[-Profile <AzureSMProfile>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
说明
New-AzureSqlDatabaseServerFirewallRule cmdlet 在当前订阅中Azure SQL 数据库服务器的指定实例中创建防火墙规则。
使用 StartIpAddress 和 EndIpAddress 参数指定此规则允许连接到Azure SQL 数据库服务器的 IP 地址范围。
指定 AllowAllAzureServices 参数以创建允许 Azure 连接到服务器的规则。 规则的起始和结束 IP 地址值为 0.0.0.0。 如果未指定防火墙规则名称,此 cmdlet 将分配默认名称 AllowAllAzureServices。
示例
示例 1:创建防火墙规则
PS C:\>New-AzureSqlDatabaseServerFirewallRule -ServerName "lpqd0zbr8y" -RuleName "FirewallRule24" -StartIpAddress 10.1.1.1 -EndIpAddress 10.1.1.2
此命令在名为 lpqd0zbr8y 的 Azure SQL 数据库 服务器上创建防火墙规则 FirewallRule24。 该命令指定 IP 地址范围。
示例 2:创建允许所有 Azure 服务的规则
PS C:\>New-AzureSqlDatabaseServerFirewallRule -ServerName "lpqd0zbr8y" -AllowAllAzureServices -RuleName "AzureConnections"
此命令在名为 lpqd0zbr8y 的服务器上创建名为 AzureConnections 的防火墙规则,该规则允许 Azure 连接。
示例 3:创建允许使用默认名称的所有 Azure 服务的规则:创建允许使用默认名称的所有 Azure 服务的规则
PS C:\>New-AzureSqlDatabaseServerFirewallRule -ServerName "lpqd0zbr8y" -AllowAllAzureServices
此命令在名为 lpqd0zbr8y 的指定服务器上创建防火墙规则,以允许 Azure 连接。 该命令分配默认规则名称 AllowAllAzureServices。
参数
-AllowAllAzureServices
指示此防火墙规则允许所有 Azure IP 地址访问服务器。
类型: | SwitchParameter |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-Confirm
提示你在运行 cmdlet 之前进行确认。
类型: | SwitchParameter |
别名: | cf |
Position: | Named |
默认值: | False |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-EndIpAddress
指定此规则的 IP 地址范围的结束值。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-Force
强制运行命令而不要求用户确认。
类型: | SwitchParameter |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-Profile
指定此 cmdlet 从中读取的 Azure 配置文件。 如果未指定配置文件,此 cmdlet 将从本地默认配置文件中读取。
类型: | AzureSMProfile |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-RuleName
指定新防火墙规则的名称。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-ServerName
指定服务器的名称。 此 cmdlet 在服务器上创建此 cmdlet 指定的防火墙规则。 指定服务器名称,而不是完全限定的 DNS 名称。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-StartIpAddress
指定防火墙规则的 IP 地址范围的起始值。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-WhatIf
显示运行该 cmdlet 时会发生什么情况。 cmdlet 未运行。
类型: | SwitchParameter |
别名: | wi |
Position: | Named |
默认值: | False |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
输出
Microsoft.WindowsAzure.Commands.SqlDatabase.Model.SqlDatabaseServerFirewallRuleContext