https://github.com/t0mer/Arpspoof-Docker
Adding ability to block internet connection for network devices
https://github.com/t0mer/Arpspoof-Docker
Last synced: 7 days 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 (about 4 years ago)
- Default Branch: main
- Last Pushed: 2025-01-26T22:30:14.000Z (3 months ago)
- Last Synced: 2025-04-15T00:32:44.908Z (9 days ago)
- Language: Python
- Size: 47.9 KB
- Stars: 13
- Watchers: 2
- Forks: 3
- 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.   (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'
```