访问时自动唤醒NAS

时间:2012-06-06 09:48:19

标签: windows nas ubuntu-server dd-wrt

当用户访问NAS时,我试图让我的NAS服务器从S3睡眠状态唤醒。我想这样做是为了延长服务器的使用寿命,并限制其功耗。我已经看到有人要求提供类似的建议,但我发现没有提供强大的解决方案,大多数线程都没有得到答复。

快速详细解释我的问题: 在我的家里,我有一个定制的,从旧的PC,NAS服务器,运行Ubuntu服务器,主要存储媒体和文件。此服务器当前设置为在预定义的非活动时段后休眠。目前,NAS可以通过WOL魔术包带出S3状态。我想要实现的是当用户从他们的PC访问其中一个共享时,这个魔术包会自动发送到服务器。用户主要运行Windows 7.我不确定这是否完全普遍,但我有一台运行DD-WRT的Linksys WRT54G作为我的家用路由器/ DHCP / DNS。

在我的研究过程中,我遇到了许多文章,这些文章只是在定时循环中自动唤醒服务器,没有真正的情报。下面给出的文章似乎做了我想要的:

http://wdtvhd.com/index.php?showtopic=7908

给出了一个脚本,它尝试通过使用DD-WRT路由器在进行查询时发送wake-on-lan数据包来解决此问题。这似乎是一个很好的方法来解决这个问题,但是我无法让链接中给出的脚本正常运行。

我认为这涵盖了我问题的大多数方面。任何帮助将不胜感激。

3 个答案:

答案 0 :(得分:3)

我想我会将最终的解决方案发布到上述问题上。为了解决这个问题,我写了一个自定义脚本,它在我的dd-wrt路由器上运行的定时cron作业。当此脚本运行时,它将访问文件

\proc\net\arp

在该文件中存储所有当前租用的IP地址和相应的mac地址的记录。因此,我的脚本将存储在该文件中的mac地址与我家庭网络中PC的预定义mac地址列表进行了比较。该列表仅包含我希望能够访问NAS服务器的PC。如果发现其中一台PC具有活动租约,则路由器会发送wake-on-lan魔术数据包。然后唤醒服务器。那时我以为我已经实现了我的目标,因为服务器开启了网络上的任何一台PC,等待时间不长。但是,在完成此操作后,我发现服务器的定时睡眠将每隔30分钟左右启动一次,并且仅在几秒钟后再次唤醒服务器。

所以为了解决这个问题,我只是在我的条件语句中添加了另一个条件,如果所需的PC都没有活动租约,它将睡眠服务器。为此,我使用SSH和DD-WRT的内置dropbear ssh功能来睡眠服务器。以下是脚本

#!/bin/ash

NAS="MA:CA:DD:RE:SS:00"

PC="MA:CA:DD:RE:SS:00"

varP='grep -o $PC /proc/net/arp'

while true
do
    echo 'Entered Loop'
    if ping -c 1 IPADDRESSOFNAS > /dev/null; then
            echo 'NAS is Already ON'

    if [[ "$varP" != "MA:CA:DD:RE:SS:00" ]]; then
                    echo 'All Hosts Offline'
                    echo IPADDRESSOFNAS  ssh-rsa NASPUPLICKEY
                    #HOME=/temp/root/
                    DROPBEAR_PASSWORD='NASPASSWORD' ssh root@IPADDRESSOFNAS pm-suspend &
            fi
            exit
    fi

    if [[ "$varP" == "MA:CA:DD:RE:SS:00" ]]; then
            echo 'waking from lan'
            /usr/sbin/wol -i BROADCASTADDRESSOFNETORK -p 9 MA:CA:DD:RE:SS:00
            /usr/sbin/wol -i BROADCASTADDRESSOFNETORK  -p 9 MA:CA:DD:RE:SS:00
            exit
    fi
    exit
done

DISCLAMER:代码按原样提供。我知道它不漂亮也不是最好的解决方案。但它对我有用,这就是我真正需要的。

希望有人觉得这很有用!

答案 1 :(得分:0)

我向WD推荐了我的NAS,我可以告诉你他们为/ tmp,/ var目录使用了内存驱动器。

所有写入内存和硬盘的日志都没有在线。希望对你有所帮助。

如果有人想要访问硬盘,系统会自动升级你的硬盘。所以你会得到你想要的东西,除了系统总是在线。

答案 2 :(得分:0)

我通过@Rabid对脚本进行了一些更改,以添加对多台PC的支持。

它还检查在ARP中找到的条目是否将其标志设置为0x2(=〜活动),因为对我来说,在PC脱机后,ARP条目将保持列出太长时间。

#!/bin/bash
# This script is made to be run on an DD- / Open-WRT device to automatically wake a NAS 
# server if client PCs are online

# Settings

# Addresses of NAS that gets woken / put to sleep
MACofNAS="MA:CA:DD:RE:SS:00"
IPofNAS="192.168.2.1"
BroadcastAddress="192.168.2.255"
WOLPort=9

# Location of SSH Private Key on WRT (if used for login)
SSHPrivateKeyFile=~/.ssh/id_rsa

# MAC addresses of PCs of which the online status will be checked
PCs=(
    "MA:CA:DD:RE:SS:00" # PC1
    "MA:CA:DD:RE:SS:00" # PC2
    "MA:CA:DD:RE:SS:00" # PC3
    "MA:CA:DD:RE:SS:00" # PC4
)



# Determine if any PCs are on
SomePCisON=false
for index in ${!PCs[@]}; do
    # Try to detect PC's MAC address in ARP

    ## Look for all entries in ARP ...
    # PCFound=$(grep -o "${PCs[index]}" /proc/net/arp)

    # ... OR look only for entries with flag set to 0x2 ( ~ active )
    PCFound=$(grep "0x2" /proc/net/arp | grep -o "${PCs[index]}") 

    # If MAC address is found, the PC must be ON
    if [[ ${PCFound} ]]; then
        echo "PC ${PCs[index]} is ON"
        SomePCisON=true
    else
        echo "PC ${PCs[index]} is OFF"
    fi
done

if [[ "$SomePCisON" == true ]]; then
    echo "Some PCs are turned ON"
else
    echo "All PCs are turned OFF"
fi

# Check if NAS is ON
if ping -c 1 $IPofNAS > /dev/null; then
    echo 'NAS is ON'
    NASisON=true
else
    echo 'NAS is OFF'
    NASisON=false
fi

# If NAS is ON, but all PCs are OFF, put NAS to Sleep
if [[ "$NASisON" == true ]]; then

    # If no PCs are ON, put NAS to sleep
    if [[ "$SomePCisON" == false ]]; then
            echo 'All Hosts Offline'
            echo 'Suspending NAS'

            # Log in with password (as in @Rabid's script, didn't work for me) ...
            DROPBEAR_PASSWORD='NASPASSWORD' ssh root@IPADDRESSOFNAS pm-suspend &

            ## ... OR log in with authentication key
            # ssh -i $SSHPrivateKeyFile root@$IPADDRESSOFNAS pm-suspend &
    fi

# If NAS is OFF and any PCs are ON, wake NAS
elif [[ "$SomePCisON" == true ]]; then

    # Use wol package on DD-WRT ...
    echo 'Waking NAS from LAN, Broadcasting to '$BroadcastAddress\
        'on port '$WOLPort' for '$MACofNAS
    /usr/sbin/wol -i $BroadcastAddress -p $WOLPort $MACofNAS
    /usr/sbin/wol -i $BroadcastAddress -p $WOLPort $MACofNAS;

    ## ... OR use etherwake package on Open-WRT 
    ## ( Install with: opkg update && opkg install etherwake )
    # echo 'Waking NAS from LAN, '$MACofNAS
    # /usr/bin/etherwake $MACofNAS
    # /usr/bin/etherwake $MACofNAS
fi

要使用身份验证密钥登录,请创建一个密钥对并将公钥放在NAS中:〜/ .ssh / authorized_keys:

在WRT上(使用Dropbear):

mkdir -p ~/.ssh

# Generate a private key and store it in ~/.ssh/id_rsa
dropbearkey -t rsa -f ~/.ssh/id_rsa

# Store the public key in ~/.ssh/id_rsa.pub
dropbearkey -t rsa -f ~/.ssh/id_rsa -y | grep ssh > ~/.ssh/id_rsa.pub

# Copy id_rsa.pub from WRT:~/.ssh/ to NAS:~/.ssh/
scp ~/.ssh/id_rsa.pub root@nas:~/.ssh/OpenWRT.pub 

在NAS上(使用OpenSSH):

# Back up the authorized_keys
cp ~/.ssh/authorized_keys ~/.ssh/authorized_keys_Backup

# Add the new public key to authorized_keys
cat ~/.ssh/OpenWRT.pub >> ~/.ssh/authorized_keys