AZ-500 Secure networking • Set 12
AZ-500 Secure networking Practice Test 12 — 15 questions with explanations. Free, no signup.
Refer to the exhibit. The JSON shows an NSG associated with a subnet. The subnet contains a web server. Users report they cannot access the web server on port 443 (HTTPS). What is the most likely cause?
{
"properties": {
"networkSecurityGroup": {
"id": "/subscriptions/.../resourceGroups/rg1/providers/Microsoft.Network/networkSecurityGroups/nsg-web"
},
"networkSecurityGroupRules": [
{
"name": "AllowHTTP",
"properties": {
"protocol": "Tcp",
"sourcePortRange": "*",
"destinationPortRange": "80",
"sourceAddressPrefix": "Internet",
"destinationAddressPrefix": "*",
"access": "Allow",
"priority": 100,
"direction": "Inbound"
}
},
{
"name": "AllowHTTPS",
"properties": {
"protocol": "Tcp",
"sourcePortRange": "*",
"destinationPortRange": "443",
"sourceAddressPrefix": "Internet",
"destinationAddressPrefix": "*",
"access": "Allow",
"priority": 110,
"direction": "Inbound"
}
},
{
"name": "DenyAll",
"properties": {
"protocol": "*",
"sourcePortRange": "*",
"destinationPortRange": "*",
"sourceAddressPrefix": "*",
"destinationAddressPrefix": "*",
"access": "Deny",
"priority": 200,
"direction": "Inbound"
}
}
]
}
}