Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

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'
```