Woodman_42259
Feb 10, 2012Nimbostratus
iRule to block a specific destination IP?
I have a TLM1600 (BIG-IP 10.2.0 Build) and need to block incoming traffic that is destined for a specific public IP address (not domain name). Will the following iRule work? Thanks!
when HTTP_REQUEST {
if {[string match {*[x.x.x.x]*} [HTTP::header host]] }{
discard
}
}