Subchapter 96.13
references/using-ip-sets-and-geographic-match-rules.mdMarkdown8 KBView on GitHub
Domain expertise for allow and block lists in AWS WAF based on source IP range or country. Covers the IP set scope that must match the web ACL, the fact that a geographic match matches only at the country level (region-level needs a paired label-match rule), the forwarded-IP configuration needed behind a proxy, and keeping a compliance country list current without hand edits.
Does not cover rate-based rules, managed rules, bot, or fraud rule groups; those are separate references. Recovering the real client IP behind a CDN has its own reference that this one points at.
Execute commands using the AWS MCP server when connected (sandboxed execution, audit logging, observability). Fall back to the AWS CLI otherwise.
To add IP set or geographic match rules end to end, follow the procedure exactly. See the Procedure section below.
The procedure covers:
An IP set used with a CloudFront web ACL must be in the Global (CloudFront) scope; a regional web ACL needs a regional IP set in the same Region. A scope mismatch means the web ACL cannot reference the IP set.
Constraints:
A geographic match statement matches by itself only at the country level. Region-level (sub-country) matching requires a geo match rule followed by a label-match rule. Customers try a single rule for a region and it silently does not match.
Constraints:
By default a geo match reads the country from the request origin IP, which is the proxy or load balancer rather than the real client, so the wrong sources are matched.
Constraints:
X-Forwarded-For when the application sits behind a proxyCustomers maintaining a blocked-country list for compliance edit it by hand and it drifts out of date.
Constraints:
The IP set is in the wrong scope. Recreate it in the scope that matches the web ACL (IP set scope must match the web ACL).
A single geo match statement is country-level only. Pair it with a label-match rule (Geographic match is country-level by default).
The rule reads the proxy IP. Enable forwarded-IP configuration (Reading the real client IP behind a proxy).
This procedure creates an IP set in the right scope, adds an IP set or geographic match rule, and surfaces the console link.
ip_set or geo.ip_set): The IP addresses and CIDR ranges.geo): The country codes to match.Allow or Block.Constraints for parameter acquisition:
Constraints:
aws sts get-caller-identityConstraints:
You MUST create the IP set in the matching scope:
aws wafv2 create-ip-set --name {name} --scope {scope} --ip-address-version IPV4 \
--addresses {addresses} --region {region}You MUST treat update-ip-set as a full replacement; pass the complete merged list, not just new
entries
Constraints:
LockToken immediately before update-web-acl and passing the full rule setDefaultAction from the get-web-acl response and pass
it back as {default_action}; do not assume Allow={}, since that would silently open all
unmatched traffic on a web ACL whose default action is BlockConstraints:
You MUST present the web ACL console link and tell the customer to open it and confirm the rule:
https://us-east-1.console.aws.amazon.com/wafv2/homev2/web-acls?region={region}{
"web_acl_name": "example-webacl",
"web_acl_id": "abc",
"scope": "REGIONAL",
"match_type": "geo",
"country_codes": ["KP", "IR"],
"action": "Block",
"forwarded_ip": true
}Added a geo-match Block rule for KP, IR, reading the client IP from X-Forwarded-For.
Open the web ACL and confirm the rule:
https://us-east-1.console.aws.amazon.com/wafv2/homev2/web-acls?region=us-east-1Scope mismatch. Recreate the IP set in the web ACL’s scope (Step 2).
Geo match is country-level. Add a label-match rule (Step 3).
This procedure modifies a security control, so misconfiguration directly weakens the application’s defenses.
wafv2: actions a task needs (for example wafv2:GetWebACL and wafv2:UpdateWebACL) rather than wafv2:* or the AWSWAFFullAccess managed policy.aws sts assume-role) rather than long-lived IAM user access keys when running these WAF CLI commands.wafv2 management events and set CloudWatch alarms on critical web ACL configuration changes (such as DeleteWebACL and UpdateWebACL rule removals) and on the web ACL’s BlockedRequests and CountedRequests metrics, so rule changes and sudden spikes in blocked or counted traffic are detected.x-amzn-waf-* signal forwarded to the origin can be forged inbound. You MUST add the inbound-header-stripping rule whenever a signal or client IP is forwarded (see stripping-inbound-waf-headers-before-trusting-them); without it the origin trusts a spoofable value.