summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2020-06-01 13:55:10 +0200
committerChristian Poessinger <christian@poessinger.com>2020-06-01 14:00:40 +0200
commit1dcc45358e93354278daeb3865943de14e727353 (patch)
tree89050336c7425a1b9e7b8d6aaf9829ac90d7b36e
parentf671b4ed2ca7b2f73223bf87d4b77a2634d574db (diff)
downloadvyos-1x-1dcc45358e93354278daeb3865943de14e727353.tar.gz
vyos-1x-1dcc45358e93354278daeb3865943de14e727353.zip
wake-on-lan: op-mode: T2526: add CLI implementation
Wake up host vyos@vyos:~$ wake-on-lan interface eth0.201 host a:b:c:d:e:f Wake up invalid host vyos@vyos:~$ wake-on-lan interface eth0.201 host a:b:c:d:e:f:f etherwake: The Magic Packet host address must be specified as - a station address, 00:11:22:33:44:55, or - a hostname with a known 'ethers' entry. (cherry picked from commit a21f57dd78cf30838769311706397f1b2077056b)
-rw-r--r--debian/control1
-rw-r--r--op-mode-definitions/wake-on-lan.xml26
2 files changed, 27 insertions, 0 deletions
diff --git a/debian/control b/debian/control
index f239ec463..fb180241e 100644
--- a/debian/control
+++ b/debian/control
@@ -30,6 +30,7 @@ Depends: python3,
python3-vici (>= 5.7.2),
python3-bottle,
python3-zmq,
+ etherwake,
ipaddrcheck,
tcpdump,
tshark,
diff --git a/op-mode-definitions/wake-on-lan.xml b/op-mode-definitions/wake-on-lan.xml
new file mode 100644
index 000000000..1a9b88596
--- /dev/null
+++ b/op-mode-definitions/wake-on-lan.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0"?>
+<interfaceDefinition>
+ <node name="wake-on-lan">
+ <properties>
+ <help>Send Wake-On-LAN (WOL) Magic Packet</help>
+ </properties>
+ <children>
+ <tagNode name="interface">
+ <properties>
+ <help>Interface where the station is connected</help>
+ <completionHelp>
+ <script>${vyos_completion_dir}/list_interfaces.py</script>
+ </completionHelp>
+ </properties>
+ <children>
+ <tagNode name="host">
+ <properties>
+ <help>Station (MAC) address to wake up</help>
+ </properties>
+ <command>sudo /usr/sbin/etherwake -i "$3" "$5"</command>
+ </tagNode>
+ </children>
+ </tagNode>
+ </children>
+ </node>
+</interfaceDefinition>