No description
Find a file
2023-04-25 15:39:43 +07:00
.github Name fix 2023-01-07 15:39:51 +07:00
assets Notifications 2022-08-25 12:24:10 +07:00
build/ci Binary and Deb 2022-12-29 12:52:46 +07:00
cmd/WatchYourLAN Dockerfile.css 2023-01-07 15:38:45 +07:00
configs Binary and Deb 2022-12-29 12:52:46 +07:00
internal Button to test notifications 2023-01-16 19:55:15 +07:00
.gitignore Conf and models 2022-11-16 22:37:54 +07:00
.version Version on config page 2023-01-06 22:07:27 +07:00
CHANGELOG.md Button to test notifications 2023-01-16 19:55:15 +07:00
docker-compose.yml Button to test notifications 2023-01-16 19:55:15 +07:00
Dockerfile Embed templates 2022-12-28 22:51:32 +07:00
Dockerfile.css Dockerfile.css 2023-01-07 15:38:45 +07:00
go.mod Move to go-1.20 2023-04-25 15:39:43 +07:00
go.sum Move to go-1.20 2023-04-25 15:39:43 +07:00
LICENSE.md Create LICENSE.md 2022-08-23 15:59:53 +07:00
Makefile Move to go-1.20 2023-04-25 15:39:43 +07:00
README.md README upd 2023-02-02 12:14:06 +07:00

WatchYourLAN


Docker Go Report Card Maintainability Docker Image Size (latest semver) Docker Pulls

Lightweight network IP scanner with web GUI https://github.com/aceberg/WatchYourLAN

Screenshot_v0.6

Quick start

Replace $YOURTIMEZONE with correct time zone and $YOURIFACE with network interface you want to scan. Network mode must be host. Set $DOCKERDATAPATH for container to save data:

docker run --name wyl \
	-e "IFACE=$YOURIFACE" \
	-e "TZ=$YOURTIMEZONE" \
	--network="host" \
	-v $DOCKERDATAPATH/wyl:/data \
    aceberg/watchyourlan

Web GUI should be at http://localhost:8840

Config

Configuration can be done through config file or environment variables

Variable Description Default
IFACE Interface to scan. Could be one or more, separated by space. Currently docker0 is not allowed, as arp-scan wouldn't work with it correctly enp1s0
DBPATH Path to Database /data/db.sqlite
GUIIP Address for web GUI localhost (127.0.0.1)
GUIPORT Port for web GUI 8840
TIMEOUT Time between scans (seconds) 60 (1 minute)
SHOUTRRR_URL Url to any notification service supported by Shoutrrr (gotify, email, telegram and others) or Generic Webhook ""
THEME Any theme name from https://bootswatch.com in lowcase solar
IGNOREIP If you want to detect unknown hosts by MAC only, set this wariable to "yes" no

Config file

Config file path is /data/config. All variables could be set there. Example:

IFACE="enp2s0 wg0"
DBPATH="/data/hosts.db"
GUIIP="192.168.2.1"     		# To access from LAN
GUIPORT="8840"
TIMEOUT="300"           		# 5 minutes
SHOUTRRR_URL="gotify://192.168.2.1:8083/AwQqpAae.rrl5Ob/?title=Unknown host detected&DisableTLS=yes"	# Url to notify
THEME="darkly"
IGNOREIP="no"

Options

Key Description Default
-c Path to config file /data/config

Thanks