前言
由于我们的是hei群晖,若更新系统,则很可能无法正常使用。要想阻止群晖自动更新,关键是得让update.synology.com
无法获得其真实的更新源ip地址。方法有很多,下面提供常用的两种。
第一种:通过修改hosts文件(推荐)
连接终端
@lenovo ➜ ~ ssh root@192.168.111.4
root@192.168.111.4's password:
root@DS3617xs:~# cd /
root@DS3617xs:/# ls
1 etc lib32 opt sbin var volumeUSB1
bin etc.defaults lib64 proc sys var.defaults
config initrd lost+found root tmp volume1
dev lib mnt run usr volume2
root@DS3617xs:/# vim /etc/hosts
在末尾添加一条映射即可
# Any manual change will be lost if the host name is changed or system upgrades.
127.0.0.1 localhost
::1 localhost
127.0.0.1 DS3617xs
::1 DS3617xs
192.168.111.4 update.synology.com
第二种:通过DNS Server服务
创建 Master 区域
填群晖主机ip即可,下同
对其编辑并添加一条A记录
连接使用
让群晖主机连接我们设置好的DNS Server服务
细心的你应该发现,上面填了备用的DNS服务器(一般是你家的路由器管理页面ip),目的是为了使群晖的其它应用能正常联网。如果不填,也可以在DNS Server上使用解析服务
中的转发器来代替它。
评论区