Forum Discussion
DevF5_378450
Nimbostratus
Dec 04, 2018Limit access to an uri to a group of IPs
I am new to F5 iRules. We have a need to restrict access to an uri to the limited group of IPs. We have added these IPs to a data group and referenced it in below iRule. Request is still forwarded fr...
wlopez
Cirrocumulus
Dec 04, 2018You could do something like this:
when HTTP_REQUEST {
if { ( [string tolower [HTTP::path]] starts_with "/temp/servlet.do" ) && ( not ([class match [IP::client_addr] equals IPDataGroup]) ) } {
HTTP::redirect "http://test.com/temp/error.aspx"
}
}
Just make sure you include the IP addresses or subnets in data group 'IPDataGroup' for which you want to grant access to.
You could also replace the redirect with other actions like 'reject' or 'drop'.
wlopez
Cirrocumulus
Dec 06, 2018If that's the case, just go ahead and try it.
I've done similar configurations before without any issues.
You may also want to do some tcpdumps to validate which IP addresses are actually hitting the virtual server where you apply the iRule on.
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