Forum Discussion
Egrebeld
Nimbostratus
Apr 20, 2021BIG IP 13.X How to prevent an answer on port scanning
Hi, Actually, I have one 2 VS. One listening on port 80 with an LTM policy to redirect the traffic on the second VS listening on port 443. I'm looking for a solution to prevent the F5 to answer...
spalande
Nacreous
Apr 20, 2021You can attach iRule to HTTP VIP to reject the traffic coming from the scanning tool.
Using data-group
when CLIENT_ACCEPTED {
if { [class match [IP::client_addr] equals scanner_ip] } {
reject
} else {
return
}
}Using IP-address within the iRule
when CLIENT_ACCEPTED {
if { [IP::addr [IP::client_addr] equals <scannerip> ] } {
reject
} else {
return
}
}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
