https://github.com/rktr1998/zig-wol
A simple wake-on-lan tool written in Zig
https://github.com/rktr1998/zig-wol
command-line wake-on-lan ziglang
Last synced: 13 days ago
JSON representation
A simple wake-on-lan tool written in Zig
- Host: GitHub
- URL: https://github.com/rktr1998/zig-wol
- Owner: rktr1998
- License: mit
- Created: 2025-02-25T21:39:06.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-05T17:54:47.000Z (over 1 year ago)
- Last Synced: 2025-03-05T18:45:22.575Z (over 1 year ago)
- Topics: command-line, wake-on-lan, ziglang
- Language: Zig
- Homepage:
- Size: 14.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-zig - rktr1998/zig-wol - Wake-on-lan CLI written in Zig. (Network & Web / Network)
README

# zwol
A CLI utility for sending wake-on-lan magic packets to wake up a computer in a LAN given its MAC address. Find [zwol](https://github.com/rito1998/zwol) also on [codeberg](https://codeberg.org/rito/zwol).
## Features
- Broadcast magic packets to wake up devices on the local network.
- Cross-platform support for Windows, macOS and Linux for both x86_64 and aarch64 architectures.
## Installation
Pre-compiled binaries of [zwol](https://github.com/rito1998/zwol) are distributed with [releases](https://github.com/rito1998/zwol/releases). The installation scripts below download the latest release for your processor architecture and **install** the program at `C:\Users\%username%\.zwol` on Windows and `/home/$USER/.zwol` on Linux and macOS. To **uninstall** zwol, simply delete this folder.
### Windows
```pwsh
irm "https://raw.githubusercontent.com/rito1998/zwol/refs/heads/main/install/install-latest-on-windows.ps1" | iex
```
### Linux
```sh
bash <(curl -sSL https://raw.githubusercontent.com/rito1998/zwol/refs/heads/main/install/install-latest-on-linux.sh)
```
### macOS
```sh
bash <(curl -sSL https://raw.githubusercontent.com/rito1998/zwol/refs/heads/main/install/install-latest-on-macos.sh)
```
## Usage
Wake a machine on the LAN by broadcasting a magic packet: replace `` with the target MAC (e.g. `9A-63-A1-FF-8B-4C`).
```sh
zwol wake
```
Create an alias for a MAC address, list all aliases, or remove one.
```sh
zwol alias --broadcast # create an alias and set its broadcast
zwol wake # wake a machine by alias
```
The optional `--broadcast` (e.g. 192.168.0.255:9) is important if there are multiple network interfaces. Setting the correct subnet broadcast address ensures the OS chooses the right network interface. If not specified, 255.255.255.255:9 is used.
Use `zwol ping` to ping all machines by their FQDNs (if defined on alias creation) and display the result.
```sh
🟢 office-server
🔴 workstation-A
🟢 video-server
🟢 workstation-B
🔴 coffee-machine
```
Run `zwol help` to display all subcommands and `zwol --help` to display specific options.
## Build
### Prerequisites
- [Zig](https://ziglang.org/download/)
### 1. Clone the Repository
```sh
git clone https://github.com/rito1998/zwol.git
cd zwol
```
### 2. Build the Application
```sh
zig build
```
This command compiles the source code and places the executable in the `zig-out/bin/` directory.
## As a library
It is possible to use the wake-on-lan functionality of this project as a library.
```sh
zig fetch --save git+https://github.com/rito1998/zwol
```
Add the wol module from the fetched dependency in `build.zig`.
```zig
const wol_module = b.dependency("zwol", .{}).module("wol");
exe.root_module.addImport("wol", wol_module); // e.g. add it to an exe root module
```
Import the module in `main.zig` and broadcast a magic packet.
```zig
const std = @import("std");
const wol = @import("wol");
pub fn main(init: std.process.Init) !void {
try wol.broadcastMagicPacket(init.io, "11-22-33-44-55-66", "255.255.255.255:9", 1);
}
```
## Remote wake-on-lan
Use the subcommand **relay** to make zwol work as a beacon that listens on a port for inbound wake-on-lan magic packets, for example coming from a router, and relays them, usually to the LAN broadcast in order to wake devices.
```sh
zwol relay 192.168.0.10:9999 192.168.0.255:9
```
A realistic example usage, using the command above as a reference, is to have a home LAN comprised of one or more powerful machines that need to be woken remotely and an always-on low-power machine, like a Raspberry Pi, that runs the `zwol relay` repeater.
Enable port-forwarding in the router settings to forward inbound traffic from some specific port of choice to 9999/udp of the Raspberry Pi, then zwol relay service relays the magic packets on the local subnet broadcast allowing to wake the other machines from outside the LAN, provided the router public address is known.

### As a service on Linux
Ensure you have zwol and set net permissions to the binary.
```sh
sudo chmod +x /home/USERNAME/.zwol/zwol
sudo setcap 'cap_net_bind_service=+ep' /home/USERNAME/.zwol/zwol
```
Firewall rules (based on the example above).
```sh
sudo ufw allow in proto udp to any port 9999
sudo ufw allow out proto udp to any port 9
sudo ufw reload
```
Create the service file, set the USERNAME and addresses accordingly.
```sh
sudo tee /etc/systemd/system/zwol.service > /dev/null <