Git Product home page Git Product logo

Comments (9)

yantaocool avatar yantaocool commented on July 23, 2024

支持

from mixbox-archive.

Nick-Hopps avatar Nick-Hopps commented on July 23, 2024

同求

from mixbox-archive.

caliban511 avatar caliban511 commented on July 23, 2024

这个工具箱支持AX3600吗?599块钱的AX3600,居然连个wol功能都没用,别的牌子几十块的都可以啊。

from mixbox-archive.

wangrui1573 avatar wangrui1573 commented on July 23, 2024

同求

from mixbox-archive.

xxl-cc avatar xxl-cc commented on July 23, 2024

支持

from mixbox-archive.

cdbvv avatar cdbvv commented on July 23, 2024

想要

from mixbox-archive.

tsiens avatar tsiens commented on July 23, 2024

同求

from mixbox-archive.

adfnekc avatar adfnekc commented on July 23, 2024

应该实现不了,这要改固件吧

from mixbox-archive.

hohaiuhsx avatar hohaiuhsx commented on July 23, 2024

我是这么搞的
opkg install etherwake 然后 自己写个脚本就能实现了。
/etc/wol.sh

#!/bin/sh

echo "主机列表:"
# 这里填你要唤醒的主机列表 主要是执行脚本时 提示用,随便填
echo "1 [192.168.31.4]"
echo "2 [192.168.31.5]"

weak(){
    read -p "请选择需要唤醒的主机[默认1]:" mac
    [ -z $mac ] && mac=1
    case "$mac" in
        # 这里填你要唤醒的主机对应的网卡MAC地址
        1) mac="00:00:00:00:00:00" ;;
        2) mac="00:00:00:00:00:00" ;;
        *) mac="" ;;
    esac
    
    if [ -z $mac ]         
    then
        echo "请选择正确的主机编号"
        weak
    else
        echo "即将唤醒主机MAC地址 "$mac
        etherwake -b -D -i br-lan $mac
    fi
}

weak

然后 chmod +x /etc/wol.sh
需要唤醒的时候 就 ssh到路由上 执行 /etc/wol.sh 按提示输入需要唤醒的主机编写就行了
至于 怎么远程ssh到路由器就不多说了(frp、openvpn、ddns等等 都可以)

from mixbox-archive.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.