Skip to content

Commit 35b0aeb

Browse files
authored
Update bastion-nsg.md
In network security rule 'AH ' is not supported. With this template , the NSG will be created successfully but bastion is not working. Modified the protocol from ah to Tcp is the solution.
1 parent 100a635 commit 35b0aeb

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

articles/bastion/bastion-nsg.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ $rules = @(
105105
SourcePortRange = "*"
106106
DestinationAddressPrefix = "VirtualNetwork"
107107
DestinationPortRange = 8080,5701
108-
Protocol = "Ah"
108+
Protocol = "Tcp"
109109
}
110110
@{
111111
Name = "AllowSshRdpOutbound"
@@ -116,7 +116,7 @@ $rules = @(
116116
SourcePortRange = "*"
117117
DestinationAddressPrefix = "VirtualNetwork"
118118
DestinationPortRange = 22,3389
119-
Protocol = "Ah"
119+
Protocol = "Tcp"
120120
},
121121
@{
122122
Name = "AllowAzureCloudOutbound"
@@ -138,7 +138,7 @@ $rules = @(
138138
SourcePortRange = "*"
139139
DestinationAddressPrefix = "VirtualNetwork"
140140
DestinationPortRange = 8080,5701
141-
Protocol = "Ah"
141+
Protocol = "Tcp"
142142
},
143143
@{
144144
Name = "AllowHttpOutbound"
@@ -149,7 +149,7 @@ $rules = @(
149149
SourcePortRange = "*"
150150
DestinationAddressPrefix = "Internet"
151151
DestinationPortRange = "80"
152-
Protocol = "Ah"
152+
Protocol = "Tcp"
153153
}
154154
)
155155
foreach ($rule in $rules) {

0 commit comments

Comments
 (0)