Network UPS Tools (NUT)
威联通设置
1️⃣威联通使用usb线接入UPS
2️⃣在设置中勾选 “启用网络不间断服务器”,启用 UPS 服务器
3️⃣把需要连入的设备IP加到列表里
如下图所示
配置 linux
以 Ubuntu 为例,其他使用 NUT 自行安装
1️⃣ 安装 NUT
apt install nut
# 启动 NUT 生成默认配置
systemctl restart nut-client.service
2️⃣ 设置NUT为 netclient 模式
vi /etc/nut/nut.conf
#注释 MODE=none 后 在文末添加
MODE=netclient
3️⃣ 修改 NUT监听配置
cat <EOF>> /etc/nut/upsmon.conf
MONITOR [email protected] 1 admin 123456 slave
EOF
# 参数注释:只用修改ip地址,其他保持原样即可,无需更改;其他参数解释请参见后文参考链接
# 重启
systemctl restart nut-client.service
4️⃣ 检查 进程状态
systemctl status nut-monitor.service
期望输出如下
至此已经配置完毕,你可以尝试关闭电源测试效果了。
windows 配置
1️⃣安装 winnut-client
项目地址:https://github.com/gawindx/WinNUT-Client
下载地址:https://github.com/gawindx/WinNUT-Client/releases
2️⃣设置
3️⃣重新连接
效果如图
参考链接
威联通 (QNAP) 使用 UPS 并通知家庭内其他设备关机 · Issue #206 · Bpazy/blog (github.com)
NUT https://networkupstools.org/index.html
标签:联通,windows,NUT,配置,client,nut,linux,UPS From: https://www.cnblogs.com/HeisenbergUncertainty/p/18065831