Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

Get-AzSqlServerFirewallRule

Module:
Az.Sql Module

Gets firewall rules for a SQL Database server.

Syntax

Default (Default)

Get-AzSqlServerFirewallRule
 [[-FirewallRuleName] <String>]
 [-ServerName] <String>
 [-ResourceGroupName] <String>
 [-DefaultProfile <IAzureContextContainer>]
 [-WhatIf]
 [-Confirm]
 [<CommonParameters>]

Description

The Get-AzSqlServerFirewallRule cmdlet gets firewall rules for an Azure SQL Database server. If you specify the name of a firewall rule, this cmdlet gets information about that specific firewall rule.

Examples

Example 1: Get all rules for a server

Get-AzSqlServerFirewallRule -ResourceGroupName "ResourceGroup01" -ServerName "Server01"
ResourceGroupName : ResourceGroup01
ServerName : server01
StartIpAddress : 0.0.0.0
EndIpAddress : 0.0.0.0
FirewallRuleName : AllowAllWindowsAzureIps

ResourceGroupName : ResourceGroup01
ServerName : Server01
StartIpAddress : 1.2.3.4
EndIpAddress : 4.3.2.1
FirewallRuleName : Rule01

This command gets all the firewall rules for the server named Server01.

Example 2: Get all rules for a server using filtering

Get-AzSqlServerFirewallRule -ResourceGroupName "ResourceGroup01" -ServerName "Server01" -FirewallRuleName "Rule*"
ResourceGroupName : ResourceGroup01
ServerName : server01
StartIpAddress : 0.0.0.0
EndIpAddress : 0.0.0.0
FirewallRuleName : Rule01

ResourceGroupName : ResourceGroup01
ServerName : Server01
StartIpAddress : 1.2.3.4
EndIpAddress : 4.3.2.1
FirewallRuleName : Rule02

This command gets all the firewall rules for the server named Server01 that start with "Rule".

Parameters

-Confirm

Prompts you for confirmation before running the cmdlet.

Parameter properties

Type:SwitchParameter
Default value:False
Supports wildcards:False
DontShow:False
Aliases:cf

Parameter sets

-DefaultProfile

The credentials, account, tenant, and subscription used for communication with azure

Parameter properties

Type:IAzureContextContainer
Default value:None
Supports wildcards:False
DontShow:False
Aliases:AzContext, AzureRmContext, AzureCredential

Parameter sets

-FirewallRuleName

Specifies the name of the firewall rule.

Parameter properties

Type:String
Default value:None
Supports wildcards:True
DontShow:False
Aliases:Name

Parameter sets

-ResourceGroupName

Specifies the name of the resource group to which the SQL Server is assigned.

Parameter properties

Type:String
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

-ServerName

Specifies the name of the SQL Server.

Parameter properties

Type:String
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

-WhatIf

Shows what would happen if the cmdlet runs. The cmdlet is not run.

Parameter properties

Type:SwitchParameter
Default value:False
Supports wildcards:False
DontShow:False
Aliases:wi

Parameter sets

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

Inputs

String

Outputs

AzureSqlServerFirewallRuleModel

Related Links


Feedback

Was this page helpful?