Forum Discussion
AbuAhmad
Aug 05, 2021Nimbostratus
Dropping connections after a specific part of URI
Hi There, I need help to write an iRule that will drop the request for any request after this uri: /xyz/web/apx/ pass this request but anything after that uri need to drop the request ( drop ...
- Aug 05, 2021
Hi AbuAhmad,
I missed something sorry. Could you please try below one:
when HTTP_REQUEST { if { [HTTP::uri] starts_with "/xyz/web/apx/" && not ([HTTP::uri] equals "/xyz/web/apx/") } { drop } }
oguzy
Aug 05, 2021Cirrostratus
Hi AbuAhmad,
If the uri starts with /xyz/web/apx then you can use the following irule:
when HTTP_REQUEST {
if { [HTTP::uri] starts_with "/xyz/web/apx/" } {
drop
}
}
Otherwise your irule is almost correct. Just remove the asteriks at the end of the uri.
Have a nice day.
Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects