Forum Discussion
ronniep_79067
Nimbostratus
Nov 17, 2009blocking or dropping particular dns requests
I have a request to see if there is a way that we can block or deny requests to www.example.com. but allow example.com. The request is to actually block anything but example.com.
...
hoolio
Cirrostratus
Nov 17, 2009Citizen's example would check if the requested host is two dotted fields (example.com or co.uk). You could also explicitly check for a requested host of example.com and reject anything else:
when HTTP_REQUEST {
Check if requested host (set to lower case) is example.com
if {[string tolower [HTTP::host]] eq "example.com"}{
Send an HTTP response
HTTP::respond 403
Reset the TCP connection
reject
}
}
Aaron
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)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