@mysticalunicorn wrote:
Hello.
We are throttling IP’s like so.frontend testing
bind *:443
mode tcp
acl too_many_uploads_by_user sc0_gpc0_rate() gt 100
acl mark_seen sc0_inc_gpc0 gt 0
stick-table type string size 100k store gpc0_rate(10s)
tcp-request content track-sc0 src
tcp-request connection reject if bad_ip
tcp-request inspect-delay 1000ms
use_backend slow_down if mark_seen too_many_uploads_by_user
default_backend testing_backendbackend testing_backend
mode tcp
balance leastconn
server abc1 1.1.1.1:5443 check maxconn 500
server abc2 1.1.1.2:5443 check maxconn 500backend slow_down
timeout tarpit 2s
http-request tarpitI am looking to log to file all IPs that get throttled to the slow_down backend. Is this possible with configuration ?
thank you for an help.
Posts: 1
Participants: 1