Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/t0mer/Arpspoof-Docker
Adding ability to block internet connection for network devices
https://github.com/t0mer/Arpspoof-Docker
Last synced: about 2 months ago
JSON representation
Adding ability to block internet connection for network devices
- Host: GitHub
- URL: https://github.com/t0mer/Arpspoof-Docker
- Owner: t0mer
- License: apache-2.0
- Created: 2021-02-14T16:01:05.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-06-10T22:30:09.000Z (7 months ago)
- Last Synced: 2024-11-08T08:08:22.607Z (about 2 months ago)
- Language: Python
- Size: 47.9 KB
- Stars: 12
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: License
Awesome Lists containing this project
- awesome-opensource-israel - Arpspoof Docker - Cut internet connection for any device in the network, no agent needed. ![GitHub last commit](https://img.shields.io/github/last-commit/t0mer/Arpspoof-Docker?style=flat-square "GitHub last commit") ![GitHub top language](https://img.shields.io/github/languages/top/t0mer/Arpspoof-Docker?style=flat-square) (Projects by main language / python)
README
# Arpspoof-Docker
Adding ability to block internet connection for local network devices
### [Extensive 'How-to' blog post](https://en.techblog.co.il/home-assistant-cut-internet-connection-using-arpspoof/)
## Docker compose
```yaml
version: "3.7"services:
arpspoof:
image: techblog/arpspoof-docker
# build: https://github.com/t0mer/broadlinkmanager-docker.git
network_mode: host #Network mode must be set to host
container_name: arpspoof
restart: unless-stopped
labels:
- "com.ouroboros.enable=true"
environment:
- ROUTER_IP= #Required Router IP
- INTERFACE_NAME= #Required Interface name, can use this command to get it: ip route get 8.8.8.8 | sed -nr 's/.*dev ([^\ ]+).*/\1/p'
```