|
Size: 1905
Comment:
|
Size: 2729
Comment:
|
| Deletions are marked like this. | Additions are marked like this. |
| Line 10: | Line 10: |
| 1. 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. |
1. Log in to localinfo: http://www.math.uzh.ch > LI > Remote Power On (WOL) * Check if the device is on the list 1. WOL only works over the yellow tagged network (LAN). WOL over WIFI is not supported. |
| Line 16: | Line 16: |
| == Mac OS X == | == BIOS: Linux / Windows == |
| Line 18: | Line 18: |
| Open system preferences -> Energy saving options -> wake for network access (or wake for wifi on most notebooks). Use "sleep" instead of Power Off. | Enter the BIOS Setup at startup of the machine. Look for the an Option like `Power on by PCIE Devices`, `Power On by onboard Lan`, `On Board LAN boot (rom)` (!) and set it to enable. It is usually under `Boot` or `Advanced`. |
| Line 20: | Line 20: |
| == BIOS == | '''Note that newer Machines may only allow Boot On LAN in Sleep Mode because of Power Certificates.''' |
| Line 22: | Line 22: |
| Enter the BIOS Setup at startup of the machine. Look for the an Option like Power on by PCIE Devices, Power On by onboard Lan, On Board LAN boot (rom) and set it to enable. It is usually under boot or advanced. | |
| Line 24: | Line 23: |
| == Windows == | == OS: Mac OS X == * Open system preferences -> Energy saving options -> wake for network access (or wake for wifi on most notebooks). * General: if you leave your office, use '''sleep''' instead of '''Power Off'''. Note: Some Mac Mini (10.9) don't support WOL. == OS: Windows == |
| Line 27: | Line 33: |
| 1. Right-click Computer, then click Properties > Device Manager. 2. Under Network Adapters, double-click the device. 3. Tick all the items under the Power Management tab. |
*. Right-click Computer > Properties > Device Manager. * Under Network Adapters, double-click the device. * Switch to the Advanced Tab and set WOL Magic Packet to enabled {{attachment:enable-wol.png}} * Tick all the items under the Power Management tab. {{attachment:wol_windows.png}} * Use Windowskey + R and type: `shell:::{67718415-c450-4f3c-bf8a-b487642dc39b}` and turn Simple TCPIP Services on {{attachment:windows1.png}} * Open UDP Port 9 in the Windows Firewall go to Control Panel\All Control Panel Items\Windows Firewall, click 'Advanced Settings' on the left, and create a new Inbound Rule to open the required port. {{attachment:irule.png}} * Restart Windows |
| Line 31: | Line 46: |
| == Linux == | == OS: Linux == |
| Line 33: | Line 48: |
| Install ethtools and run the command {{{ sudo /sbin/ethtool -s eth0 wol g }}} |
* Install ethtools `sudo apt-get install ethtool` * Run the command (necessary after each boot) {{{ sudo /sbin/ethtool -s eth0 wol g }}} * Auto activation during boot: |
| Line 36: | Line 53: |
| This command has to be run once anytime before the computer is shutdown, there are multiple way to automate this, for example: For Debian / Ubuntu Linux, edit /etc/network/interfaces and append the following to eth0: {{{ |
* For Debian / Ubuntu Linux (without network manager) edit /etc/network/interfaces and append the following to eth0: {{{ |
| Line 50: | Line 63: |
| For RHEL / SL / Fedora / CentOS Linux, edit /etc/sysconfig/network-scripts/ifcfg-eth0 and add / modify the following line: {{{ ETHTOOL_OPTS="wol g" }}} |
* For 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 " }}} |
| Line 54: | Line 68: |
| or {{{ ETHTOOL_OPTS="wol g autoneg off speed 100 duplex full " }}} Save and close the file. |
Remotely power on a notebook / desktop of IMATH
Contents
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:
- Activate WOL on the Device
Log in to localinfo: http://www.math.uzh.ch > LI > Remote Power On (WOL)
- Check if the device is on the list
- WOL only works over the yellow tagged network (LAN). WOL over WIFI is not supported.
Activate WOL
BIOS: Linux / Windows
Enter the BIOS Setup at startup of the machine. Look for the an Option like Power on by PCIE Devices, Power On by onboard Lan, On Board LAN boot (rom)
and set it to enable. It is usually under Boot or Advanced.
Note that newer Machines may only allow Boot On LAN in Sleep Mode because of Power Certificates.
OS: Mac OS X
Open system preferences -> Energy saving options -> wake for network access (or wake for wifi on most notebooks).
General: if you leave your office, use sleep instead of Power Off.
Note: Some Mac Mini (10.9) don't support WOL.
OS: Windows
To enable WOL under Windows:
. Right-click Computer > Properties > Device Manager.
- Under Network Adapters, double-click the device.
- Switch to the Advanced Tab and set WOL Magic Packet to enabled
- Tick all the items under the Power Management tab.
Use Windowskey + R and type: shell:::{67718415-c450-4f3c-bf8a-b487642dc39b} and turn Simple TCPIP Services on
- Open UDP Port 9 in the Windows Firewall
- go to Control Panel\All Control Panel Items\Windows Firewall, click 'Advanced Settings' on the left, and create a new Inbound Rule to open the required port.
- go to Control Panel\All Control Panel Items\Windows Firewall, click 'Advanced Settings' on the left, and create a new Inbound Rule to open the required port.
- Restart Windows
OS: Linux
Install ethtools sudo apt-get install ethtool
Run the command (necessary after each boot)
sudo /sbin/ethtool -s eth0 wol g
- Auto activation during boot:
For Debian / Ubuntu Linux (without network manager) 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 gFor 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 "
