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 on port 80 to tcp connexion coming from a scan tool.
Thanks
- spalande
Nacreous
You 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 } }
- joyride_us
Altostratus
You can redirect the request from port 80 to port 443.
( HTTP::redirect ...)
- Egrebeld
Nimbostratus
This way do not prevent the F5 to answer on port scanning
- joyride_us
Altostratus
Sorry. Wrong question.
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