An advanced wake-on-lan command line script and library
Project description
wakeonlan
An advanced wake-on-lan command line script and library.
Why another one?
I couldn't find one that worked and did what I need. Specifically I need:
- A command line utility that works on Mac, Windows and Linux.
- Works over both IPv4 and IPv6, including on IPv6-only networks.
- Can use saved configurations rather than force me to remember the MAC addresses of the machines I need to wake.
- Ideally, let me manipulate (create, delete, update, list) saved configurations using the same utility.
- Ideally, be open source so I can see what it is doing and know it doesn't do anything nefarious
None of the existing tools I found satisfied these criteria (even without the last two) so I wrote my own.
Setup
Prerequisites: Python 3.7 or above. No additional packages required.
pip3 install eg.wakeonlan
On Windows, if you get a warning like:
WARNING: The script wakeonlan.exe is installed in
'C:\Users\[username]\AppData\Roaming\Python\Python[VER]\Scripts' which is not on PATH.
You can either add this directory to your PATH or run pip3 install from Administrator command prompt.
The reason for this message is that Python does not add per user scripts directory to PATH on Windows, only the system-wide one. See this Python bug
Usage
Wake up a machine given its MAC address XX:XX:XX:XX:XX:XX
wakeonlan XX:XX:XX:XX:XX:XX [-i InterfaceName] [-p Port]
The -i option allows you to specify the interface to send wake-on-lan packet from.
If not specified, it will be sent from all eligible interfaces (those that are active, not loopback and allow broadcasts/multicasts).
You can see all the eligible interface names by invoking wakeonlan --interfaces.
Both IPv4 and IPv6 interfaces are supported. Because wake-on-lan might be more reliable over IPv4 (depending on destination machine software),
wakeonlan prefers IPv4 when both are available on the same interface.
The -p option allows you to override the destination port (9 if omitted).
Save wake up configuration to be used later
wakeonlan --save Name XX:XX:XX:XX:XX:XX [-i InterfaceName] [-p Port]
Name can be anything. The configuration is saved into $HOME/.wakeonlan file in JSON format.
--save can be abbreviated as -s.
Wake up a machine given saved configuration name
wakeonlan Name
List existing configuration names
wakeonlan --names
--names can be abbreviated as -n.
If you want to see full details about each name, use:
wakeonlan --list
--list can be abbreviated as -l.
Delete a configuration
wakeonlan --delete Name
--delete can be abbreviated as -d.
List available interfaces
wakeonlan --interfaces
This will print out a list of interface names usable with the -i flag.
Transferring configurations to another machine
Saved configurations are stored in $HOME/.wakeonlan file (%USERPROFILE%\.wakeonlan for Windows users).
Copy this file to another machine into the equivalent location to transfer all the configurations.
Set up shell autocomplete
Autocomplete is supported for bash, zsh and powershell.
Bash
Add the following to your ~/.bashrc:
source `wakeonlan --autocomplete-source`
Zsh
Add the following to your ~/.zshrc (make sure it is after the call to compinit):
source `wakeonlan --autocomplete-source`
Powershell
- If you haven't already done so, you will need to enable script execution on your machine.
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
- Remove "mark of the web" from the auto-complete script:
Unblock-File -Path $(wakeonlan --autocomplete-source)
- Find the location of your profile file:
echo $profile
- If it doesn't exist, create it. Then add the following to its content:
. $(wakeonlan --autocomplete-source)
Backward compatibility
wakeonlan fully supports configurations created by older versions and the now-deprecated -a switch.
If you have a configuration with a non-default -a setting, it continues to function as before. A default -a
(255.255.255.255) in the saved configuration behaves as if no switches were specified - the wake-on-lan packet
is sent on all eligible interfaces, including IPv6 ones.
(On older versions it would be sent only on the default IPv4 interface).
Using the -a switch on the command line now produces a deprecation warning but continues to function exactly as before.
Specifically, using -a 255.255.255.255 on the command line continues to send a single IPv4 broadcast to that address.
Programmatic access
import wakeonlan
# wake a given MAC using all the defaults
wakeonlan.wake(wakeonlan.HostRecord((1,2,3,4,5,6)))
# or specify some options
wakeonlan.wake(wakeonlan.HostRecord((1,2,3,4,5,6), interface='eth0', port=9))
# save a record in user's configuration
wakeonlan.save_name("my-machine", wakeonlan.HostRecord((1,2,3,4,5,6)))
# get it back
rec = wakeonlan.get_name_record("my-machine")
# get all records
for name, rec in wakeonlan.get_names().items():
print(name, rec.mac_str())
# delete a record
wakeonlan.delete_name("my-machine")
See the sources for more details.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file eg_wakeonlan-2.0.tar.gz.
File metadata
- Download URL: eg_wakeonlan-2.0.tar.gz
- Upload date:
- Size: 16.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
84c3d55a25709b955aface0f8b0ed38fe9a8dfd07344d1845128b400c3bc6bc3
|
|
| MD5 |
e7ebe831ac170b3e60ccab7ae6174df5
|
|
| BLAKE2b-256 |
3d3e5119cb9ea4f1bc97aa02bef87385a59360e5a343f75e3894a4c906f138b9
|
File details
Details for the file eg_wakeonlan-2.0-py3-none-any.whl.
File metadata
- Download URL: eg_wakeonlan-2.0-py3-none-any.whl
- Upload date:
- Size: 16.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c01b84f7430e89aa5d4fd1449d17618cd8402ee85e04959d8501b4cfd52303a4
|
|
| MD5 |
968bf5082f9fedb587cfb0cd57ecae4b
|
|
| BLAKE2b-256 |
babc2b2f9ff84ba51dabd03fb500b40b47123cb48c1bd62ca11676efb82068da
|