diff options
author | Martin Blapp <mbr@FreeBSD.org> | 2009-06-30 18:51:22 +0000 |
---|---|---|
committer | Martin Blapp <mbr@FreeBSD.org> | 2009-06-30 18:51:22 +0000 |
commit | 58c6a70a527beb469f4cf5ba945da36118af1598 (patch) | |
tree | f799cbdc48247d09c02462d67e1d5ec91096883a /usr.sbin/wake/wake.8 | |
parent | fb231f3627703f7e35592db8fb24ffbfb01c3291 (diff) | |
download | src-58c6a70a527beb469f4cf5ba945da36118af1598.tar.gz src-58c6a70a527beb469f4cf5ba945da36118af1598.zip |
Add wake, a tool to send Wake on LAN frames to hosts on a local Ethernet network
Submitted by: Marc Balmer <marc@msys.ch>
Reviewed by: rwatson
Approved by: re
M usr.sbin/Makefile
A usr.sbin/wake
AM usr.sbin/wake/wake.c
AM usr.sbin/wake/Makefile
AM usr.sbin/wake/wake.8
Notes
Notes:
svn path=/head/; revision=195200
Diffstat (limited to 'usr.sbin/wake/wake.8')
-rw-r--r-- | usr.sbin/wake/wake.8 | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/usr.sbin/wake/wake.8 b/usr.sbin/wake/wake.8 new file mode 100644 index 000000000000..03a283b19cc4 --- /dev/null +++ b/usr.sbin/wake/wake.8 @@ -0,0 +1,61 @@ +.\" +.\" $FreeBSD$ +.\" +.\" Copyright (c) 2009 Marc Balmer <marc@msys.ch> +.\" +.\" Permission to use, copy, modify, and distribute this software for any +.\" purpose with or without fee is hereby granted, provided that the above +.\" copyright notice and this permission notice appear in all copies. +.\" +.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +.\" +.Dd June 27 2009 +.Dt WAKE 8 +.Os +.Sh NAME +.Nm wake +.Nd send Wake on LAN frames to hosts on a local Ethernet network +.Sh SYNOPSIS +.Nm +.Ar interface +.Op Ar lladdr ... +.Sh DESCRIPTION +The +.Nm +program is used to send Wake on LAN (WoL) frames over a local +Ethernet network to one or more hosts using their link layer (hardware) +addresses. +WoL functionality is generally enabled in a machine's BIOS +and can be used to power on machines from a remote system without +having physical access to them. +.Pp +.Ar interface +is the network interface of the local machine. +.Ar lladdr +are the link layer addresses of the remote machines +and can be specified as the actual hardware address +(six hexadecimal numbers separated by colons) +or a hostname entry in +.Pa /etc/ethers . +Link layer addresses can be determined and set on +.Fx +machines using +.Xr ifconfig 8 . +.Sh FILES +.Bl -tag -width "/etc/ethers" -compact +.It /etc/ethers +Ethernet host name database. +.El +.Sh SEE ALSO +.Xr ethers 5 , +.Xr ifconfig 8 +.Sh AUTHORS +.Nm +was written by +.Ar Marc Balmer Aq marc@msys.ch . |