Zuohl's blog

非主流码农

主要适用于如下情况,关机时间长了无法外网唤醒,只有内网可以唤醒
问题主要出现在arp绑定丢失,小米路由器web后台没有arp绑定功能,只能ssh登陆后绑定arp
前提是需要root路由器,ssh登陆后执行如下操作
1.vi /etc/ethers
增加如下配置 ip mac地址
192.168.1.xxx xxx
2.编辑/etc/rc.local
增加ip neigh add xxxip lladdr xxxmac地址 nud permanent dev br-lan
操作完后关闭电脑,重启路由器,执行arp 查看是否存在arp映射,存在就是ok了

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

Quick Start

Create a new post

1
$ hexo new "My New Post"

More info: Writing

Run server

1
$ hexo server

More info: Server

Generate static files

1
$ hexo generate

More info: Generating

Deploy to remote sites

1
$ hexo deploy

More info: Deployment

测试下新增文章是否可用
dev测试

0%