Troubleshoot NGINX App Protect WAF
This document describes how to troubleshoot problems when using NGINX Ingress Controller and the NGINX App Protect WAF module version 5.
For general troubleshooting of NGINX Ingress Controller, check the general troubleshooting documentation.
.See Also:
You can find more troubleshooting tips in the NGINX App Protect WAF troubleshooting guide
Potential problems
The table below categorizes some potential problems with NGINX Ingress Controller when App Protect WAF module is enabled. It suggests how to troubleshoot those problems, using one or more methods from the next section.
Problem area | Symptom | Troubleshooting method | Common cause |
---|---|---|---|
Start. | The Ingress Controller fails to start. | Check the logs. | Misconfigured policy bundle. |
Start | The configuration is not applied. | Check if a policy bundle is compiled using version of the compiler running in NGINX Ingress Controller. | Policy bundle is invalid. |
Start | The configuration is not applied. | Check if bundle is present in a volume. | Policy bundle is not present in the mounted volume. |
APLogConf, Policy or Ingress Resource. | The configuration is not applied. | Check the events of the APLogConf, Policy and Ingress Resource, check the logs, replace the policy bundle. | Policy bundle is invalid. |
Troubleshooting methods
Check NGINX Ingress Controller and App Protect logs
App Protect logs are part of NGINX Ingress Controller logs when the module is enabled. To check NGINX Ingress Controller logs, follow the steps of Checking the Ingress Controller Logs of the Troubleshooting guide.
For App Protect specific logs, look for messages starting with APP_PROTECT
, for example:
2020/07/10 11:13:20 [notice] 17#17: APP_PROTECT { "event": "configuration_load_success", "software_version": "2.52.1", "completed_successfully":true,"attack_signatures_package":{"revision_datetime":"2020-06-18T10:11:32Z","version":"2020.06.18"}}
Check Ingress resource events
Read the topic Troubleshooting Ingress resources.
Check APLogConf events
After you create or update an APLogConf, you can immediately check if the NGINX configuration was successfully applied by NGINX:
kubectl describe aplogconf logconf
Name: logconf
Namespace: default
Events:
Type Reason Age From Message
---- ------ ---- ---- -------
Normal AddedOrUpdated 11s nginx-ingress-controller AppProtectLogConfig default/logconf was added or updated
Note that in the events section, we have a Normal
event with the AddedOrUpdated
reason, which informs us that the configuration was successfully applied.
Check APPolicy events
After you create or update an APPolicy, you can immediately check if the NGINX configuration was successfully applied by NGINX:
kubectl describe appolicy dataguard-alarm
Name: dataguard-alarm
Namespace: default
Events:
Type Reason Age From Message
---- ------ ---- ---- -------
Normal AddedOrUpdated 2m25s nginx-ingress-controller AppProtectPolicy default/dataguard-alarm was added or updated
The events section has a Normal event with the AddedOrUpdated reason, indicating the policy was successfully accepted.
Replace the policy
Note:
This method only applies if using external references
If items on the external reference change but the spec of the APPolicy remains unchanged (even when re-applying the policy), Kubernetes will not detect the update. In this case you can force-replace the resource. This will remove the resource and add it again, triggering a reload. For example:
kubectl replace appolicy -f your-policy-manifest.yaml --force
Check the availability of APPolicy external references
Note:
This method only applies if you’re using external references in NGINX App Protect policies.
To check which servers host the external references of a policy:
kubectl get appolicy mypolicy -o jsonpath='{.items[*].spec.policy.*.link}' | tr ' ' '\n'
http://192.168.100.100/resources/headersettings.txt
You can check the total time a http request takes, in multiple ways eg. using curl:
curl -w '%{time_total}' http://192.168.100.100/resources/headersettings.txt
Run App Protect in debug mode
When you set NGINX Ingress Controller to use debug mode, the setting also applies to the App Protect WAF module. See Running NGINX in the Debug Mode for instructions.
Known issues
When using NGINX Ingress Controller with the App Protect WAF module, the following issues have been reported. The occurrence of these issues is commonly related to a higher number of Ingress Resources with App Protect being enabled in a cluster.
When you make a change that requires NGINX to apply a new configuration, NGINX Ingress Controller reloads NGINX automatically. Without the App Protect WAF module enabled, usual reload times are around 150ms. If App Protect WAF module is enabled and is being used by any number of Ingress Resources, these reloads might take a few seconds instead.
NGINX configuration drift
If you are running more than one instance of NGINX Ingress Controller, the extended reload time may cause the NGINX configuration of your instances to be out of sync. This can occur because there is no order imposed on how NGINX Ingress Controller processes the Kubernetes Resources. The configurations will be the same after all instances have completed the reload.
In order to reduce these inconsistencies, we advise that you do not apply changes to multiple resources handled by NGINX Ingress Controller at the same time.
NGINX fails to start or reload
The first time NGINX Ingress Controller starts, or whenever there is a change that requires reloading NGINX, NGINX Ingress Controller will verify if the reload was successful. The timeout for this verification is normally 4 seconds. When App Protect is enabled, this timeout increases to 20 seconds.
This timeout should be more than enough to verify configurations. However, when numerous Ingress resources with App Protect enabled are handled by NGINX Ingress Controller at the same time, you may find that you need to extend the timeout further. Examples of when this might be necessary include:
- You need to apply a large amount of Ingress Resources at once.
- You are running NGINX Ingress Controller for the first time in a cluster where the Ingress resources with App Protect enabled are already present.
You can increase this timeout by setting the nginx-reload-timeout
cli-argument.
When using the User Defined Signature feature, an update to an APUserSig
requires more reload time from NGINX Plus compared with the other AppProtect resources. As a consequence, we recommend increasing the nginx-reload-timeout
to 30 seconds if you’re planning to use this feature.
If you are using external references in your NGINX App Protect policies, verify if the servers hosting the referenced resources are available and that their response time is as short as possible (see the Check the Availability of APPolicy External References section). If the references are not available during NGINX Ingress Controller startup, the pod will fail to start. In case the resources are not available during a reload, the reload will fail, and NGINX Plus will use the previous correct configuration.