AZ-500 • Practice Test 30
Free AZ-500 practice test — 15 questions with explanations. Set 30. No signup required.
Refer to the exhibit. You have an Azure Application Gateway WAF policy with the above JSON configuration. A user from IP address 10.1.2.3 reports they cannot access the web application. What is the most likely cause?
{
"properties": {
"format": "Json",
"rules": [
{
"name": "BlockHighRiskIPs",
"priority": 100,
"ruleType": "MatchRule",
"matchConditions": [
{
"matchVariables": [
{
"variableName": "RemoteAddr"
}
],
"operator": "IPMatch",
"negationCondition": false,
"matchValues": [
"10.0.0.0/8",
"172.16.0.0/12",
"192.168.0.0/16"
]
}
],
"action": "Block"
}
]
}
}