ubuntu 用 ss-tproxy的内置 DNS 前挂上 AdGuardHome,AdGuardHome实现的DHCP和DNS 去广告-目的:

使用 AdGuardHome 可以方便的查看 dns 日志、block 不想要的域名、以及广告过滤。

AdGuardHome 的配置和用法就不介绍了,这里只说下如何接入 ss-tproxy,挂到 chinadns-ng 前面:

# 让 AdGuardHome 监听 53 端口
dns_mainport='53'

# chinadns 作为 AdGuardHome 的上游,监听非 53 端口
chinadns_bind_port='54'

pre_start() {
    # 设置所属 group、setgid 权限位 (只需执行一次)
    set_dns_group /path/to/AdGuardHome

    # 启动 AdGuardHome,以 systemd 为例
    systemctl start AdGuardHome
}

post_stop() {
    # 停止 AdGuardHome,以 systemd 为例
    systemctl stop AdGuardHome
}

上一篇:若依前后分离版集成积木报表进行token传递


下一篇:将 Ubuntu 系统中的 **swap** 空间从 2GB 扩展到 16GB