Forum Discussion
Block Source IP using a blocklist hosted on a webserver
Hi,
this list can be uploaded as an ifile. You can also do a lookup using sideband connections in irules
- Yann_DesmarestJul 27, 2016
Cirrus
You can create an ifile using the following command :
tmsh create sys file ifile blacklist source-path http://hostname.com/uriand then update it using the following command :
tmsh modify sys file ifile blacklist source-path http://hostname.com/uriThe filesize for a single iFile was raised to 32Mb in 12.1.0. Prior versions limited the size to 4Mb.
- Yann_DesmarestJul 27, 2016
Cirrus
Here a nice article on sideband connection that can help you design a lookup using HTTP API :
Advanced iRules: Sideband Connections
- Yann_DesmarestJul 27, 2016
Cirrus
Here a small Proof of Concept.
when HTTP_REQUEST { set file [ifile get domains] log local0. "$file" set domain "amazon.co.uk.security-check.ga" if { [string match "*$domain*" $file] } { log local0. "succeeded" HTTP::respond 200 content "ok" } else { log local0. "failed" } }Note : should test performance impact, memory consumption and stuff like that before switching something in production
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)Recent Discussions
Related Content
* 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
