From 92a974ac0685c8d4ac3452bfa0ab13c1b5c49ab6 Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Fri, 19 Feb 2021 19:59:36 +0200 Subject: [PATCH] wol: add page (#5280) --- pages/linux/wol.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/linux/wol.md diff --git a/pages/linux/wol.md b/pages/linux/wol.md new file mode 100644 index 000000000..ae133abe1 --- /dev/null +++ b/pages/linux/wol.md @@ -0,0 +1,28 @@ +# wol + +> Client for sending Wake-on-LAN magic packets. +> More information: . + +- Send a WoL packet to a device: + +`wol {{mac_address}}` + +- Send a WoL packet to a device in another subnet based on its IP: + +`wol --ipaddr={{ip_address}} {{mac_address}}` + +- Send a WoL packet to a device in another subnet based on its hostname: + +`wol --host={{hostname}} {{mac_address}}` + +- Send a WoL packet to a specific port on a host: + +`wol --port={{port_number}} {{mac_address}}` + +- Read hardware addresses, IP addresses/hostnames, optional ports and SecureON passwords from a file: + +`wol --file={{path/to/file}}` + +- Turn on verbose output: + +`wol --verbose {{mac_address}}`