I am using GAE with Python 2.7. I have this dos.yaml file:
blacklist:
- subnet: 202.113.48.130
description: they are doing 1000s of requests for a nonexistent file
I did a appcfg.py update . and I also did appcfg.py update_dos . (although update . said it updated the dos anyway).
The new console doesn't appear to show the blacklist at all, but the old
one does and shows that the above address is blacklisted.
However, the logs right up to this minute show that requests are coming from this IP address and are receiving 404 as reply.
Is there any other step I need to take to make the blacklist work?
Or is there an alternative to stop these constant requests for a nonexistent file?
Thanks.