Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/philipn/django-block-ip

A simple django app to block IP addresses and masks.
https://github.com/philipn/django-block-ip

Last synced: 10 days ago
JSON representation

A simple django app to block IP addresses and masks.

Awesome Lists containing this project

README

        

django-block-ip
---------------

This is a simple application to restrict access by IP address. There's a few other apps that do this out there, but they tend to have other features such as rate limiting. I think it's best to leave rate-limiting to rate-limiting specific apps.

Usage
=====

1. `pip install django-block-ip`
1. Add `block_ip` to your `INSTALLED_APPS`.
1. Add `block_ip.middleware.BlockIPMiddleware` to your `MIDDLEWARE_CLASSES`.
1. Run `syncdb`.
1. Add one or more entries to the `BlockIP` list in the admin.
You can just enter a single IP or use a network mask, like this: 213.67.43.0/24

Acknowledgments
===============

This is based on http://github.com/svetlyak40wt/django-ban, which was based on the Justquick's django snippet (http://www.djangosnippets.org/snippets/725/).