diff --git a/articles/bastion/bastion-nsg.md b/articles/bastion/bastion-nsg.md index 0f024fa7f309c..5655d303950ae 100644 --- a/articles/bastion/bastion-nsg.md +++ b/articles/bastion/bastion-nsg.md @@ -105,7 +105,7 @@ $rules = @( SourcePortRange = "*" DestinationAddressPrefix = "VirtualNetwork" DestinationPortRange = 8080,5701 - Protocol = "Ah" + Protocol = "Any" } @{ Name = "AllowSshRdpOutbound" @@ -116,7 +116,7 @@ $rules = @( SourcePortRange = "*" DestinationAddressPrefix = "VirtualNetwork" DestinationPortRange = 22,3389 - Protocol = "Ah" + Protocol = "Any" }, @{ Name = "AllowAzureCloudOutbound" @@ -138,7 +138,7 @@ $rules = @( SourcePortRange = "*" DestinationAddressPrefix = "VirtualNetwork" DestinationPortRange = 8080,5701 - Protocol = "Ah" + Protocol = "Any" }, @{ Name = "AllowHttpOutbound" @@ -149,7 +149,7 @@ $rules = @( SourcePortRange = "*" DestinationAddressPrefix = "Internet" DestinationPortRange = "80" - Protocol = "Ah" + Protocol = "Any" } ) foreach ($rule in $rules) {