Skip to content

renedierking/LANdalf

πŸ§™β€β™‚οΈ LANdalf

"You Shall Not Sleep!"

A Modern Wake-on-LAN Management Platform

Latest Release Build and Test .NET Version Blazor License: MIT Docker

Features β€’ Quick Start β€’ Docs β€’ Contributing


πŸ“– About

LANdalf is a web-based Wake-on-LAN management platform built with .NET 10.0, Blazor WebAssembly, and MudBlazor. It lets you manage network devices and wake them remotely β€” deployable in seconds via Docker Compose.

✨ Features

  • Device Management β€” Add, edit, and organize network devices with MAC address storage
  • Wake-on-LAN β€” Send magic packets to wake sleeping devices remotely
  • RESTful API β€” Versioned API with OpenAPI documentation (API Guide)
  • Docker Ready β€” One-command deployment, cross-platform (Windows, Linux, macOS)

Interface Preview

LANdalf Home Interface

πŸš€ Quick Start

Create a docker-compose.yaml:

services:
  api:
    image: ghcr.io/renedierking/landalf-api:latest
    container_name: landalf-api
    network_mode: host
    environment:
      - ASPNETCORE_URLS=http://+:5000
      - Cors__FrontendUrl=http://localhost # Adjust if NGINX_PORT != 80, e.g. http://localhost:8080
      # Docker Desktop (Windows/macOS): Uncomment and set your LAN broadcast for WoL to work.
      # - WOL_BROADCASTS=192.168.178.255
      - Serilog__MinimumLevel__Default=Information
      - Serilog__MinimumLevel__Override__Microsoft.AspNetCore=Warning
      - Serilog__MinimumLevel__Override__Microsoft.EntityFrameworkCore=Warning
    volumes:
      - api-data:/app/LANdalf_Data
      - api-logs:/app/logs
    restart: unless-stopped

  ui:
    image: ghcr.io/renedierking/landalf-ui:latest
    container_name: landalf-ui
    network_mode: host
    environment:
      - NGINX_PORT=80 # Change to any free port, then update Cors__FrontendUrl above
    depends_on:
      - api
    restart: unless-stopped
volumes:
  api-data:
  api-logs:
docker compose up -d

Custom UI port: Set NGINX_PORT (e.g. 8080) and update Cors__FrontendUrl accordingly (e.g. http://localhost:8080).

Docker Desktop (Windows/macOS): WoL magic packets won't reach your LAN by default. Uncomment WOL_BROADCASTS in the compose file and set it to your LAN broadcast address (e.g. 192.168.178.255). See the WoL Setup Guide for details.

For manual setup, platform-specific instructions, and troubleshooting, see the Installation Guide.

πŸ“š Documentation

Guide Description
πŸš€ Installation & Setup Docker & manual installation, configuration, troubleshooting
πŸ”§ Wake-on-LAN Setup Device configuration, network setup, testing WoL
πŸ“‘ API Usage Guide API reference, examples, error handling
πŸ—οΈ Architecture System design, tech stack, data flow, database schema
πŸ—ΊοΈ Roadmap Planned features and enhancements

πŸ› οΈ Development

dotnet build LANdalf.slnx   # Build
dotnet test                  # Test
docker compose build         # Docker images

See CONTRIBUTING.md for prerequisites, project structure, and development guidelines.

🀝 Contributing

Contributions are welcome! Please read the Contributing Guide for the workflow and guidelines.

πŸ“„ License

MIT β€” see LICENSE for details.

πŸ“ž Support


Made with ❀️ by renedierking

If you find LANdalf helpful, please consider giving it a ⭐!

About

A Modern Wake-on-LAN Management Platform

Topics

Resources

License

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Packages

 
 
 

Contributors