Size: 1817
Comment:
|
Size: 1933
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 33: | Line 33: |
{{{#!highlight bash sudo /sbin/ethtool -s eth0 wol g }}} |
{{{ sudo /sbin/ethtool -s eth0 wol g }}} |
Line 36: | Line 35: |
If you are using RHEL / SL / Fedora / CentOS Linux, edit /etc/sysconfig/network-scripts/ifcfg-eth0 and add / modify the following line: | This command has to be run once anytime before the computer is shutdown, there are multiple way to automate this, for example: |
Line 38: | Line 37: |
{{{ ETHTOOL_OPTS="wol g" }}} or {{{ ETHTOOL_OPTS="wol g autoneg off speed 100 duplex full " }}} Save and close the file. If you are using Debian / Ubuntu Linux, edit /etc/network/interfaces and append the following to eth0: |
If you are using Debian / Ubuntu Linux, edit /etc/network/interfaces and append the following to eth0: |
Line 55: | Line 48: |
If you are using RHEL / SL / Fedora / CentOS Linux, edit /etc/sysconfig/network-scripts/ifcfg-eth0 and add / modify the following line: {{{ ETHTOOL_OPTS="wol g" }}} or {{{ ETHTOOL_OPTS="wol g autoneg off speed 100 duplex full " }}} Save and close the file. |
WOL: Remotely power on a notebook / dekstop of IMATH
The idea of this feature is simple, everyone should be able to wake their machine using localinfo. We use the standard Wake on Lan (in short WOL) feature to accomplish this.
The following steps have to be taken:
- 1 Activate WOL on the Device
2 Log in to localinfo > Power On (WOL)
Check if the device is on the list and note that WOL only works over the yellow tagged network.
Activate WOL
Mac OS X
Setup
Open system preferences -> Energy saving options -> wake for network access (or wake for wifi on most notebooks). Use "sleep" instead of Power Off.
BIOS
Enter the BIOS Setup at startup of the machine. Look for the an Option like Power on by PCIE Devices, Powern On by onboard Lan, On Board LAN boot (rom) and set it to enable. It is usually under boot or advanced.
Windows
To enable WOL under Windows:
Right-click Computer, then click Properties > Device Manager.
- Under Network Adapters, double-click the device.
- Tick all the items under the Power Management tab.
Linux
Install ethtools and run the command sudo /sbin/ethtool -s eth0 wol g
This command has to be run once anytime before the computer is shutdown, there are multiple way to automate this, for example:
If you are using Debian / Ubuntu Linux, edit /etc/network/interfaces and append the following to eth0:
auto eth0 iface eth0 inet static address 192.168.1.1 netmask 255.255.255.0 gateway 192.168.1.254 post-up /sbin/ethtool -s eth0 wol g post-down /sbin/ethtool -s eth0 wol g
If you are using RHEL / SL / Fedora / CentOS Linux, edit /etc/sysconfig/network-scripts/ifcfg-eth0 and add / modify the following line:
ETHTOOL_OPTS="wol g"
or
ETHTOOL_OPTS="wol g autoneg off speed 100 duplex full "
Save and close the file.