Updated the README to provide comprehensive information on the Ansible Proxmox WOL role's features, variables, and usage examples.
28 lines
941 B
YAML
28 lines
941 B
YAML
---
|
|
# ============================================================
|
|
# Bridge interfaces to enable Wake-on-LAN on
|
|
# Can be a string (single bridge) or list (multiple bridges)
|
|
# Supports detection of physical NICs backing bridges
|
|
# ============================================================
|
|
wol_bridges: vmbr0
|
|
|
|
# ============================================================
|
|
# WOL mode options:
|
|
# g = magic packet (most common, highly recommended)
|
|
# d = disable Wake-on-LAN
|
|
# p = physical activity
|
|
# u = unicast frames
|
|
# m = multicast frames
|
|
# b = broadcast frames
|
|
# ============================================================
|
|
wol_mode: "g"
|
|
|
|
# ============================================================
|
|
# Verification settings
|
|
# ============================================================
|
|
# Enable WOL status verification after configuration
|
|
wol_verify: true
|
|
|
|
# Report MAC addresses for WOL packet senders
|
|
wol_report_mac: true
|