我有一个安装了绑定的Linux VM,它充当DNS转发器,将请求转发到我的DNS服务器。
acl goodclients {
10.0.0.0/16;
localhost;
localnets;
};
options {
directory "/var/cache/bind";
recursion yes;
allow-recursion { any; };
allow-query { any; };
allow-query-cache { any; };
forwarders {
10.1.0.4;
};
forward only;
dnssec-enable no;
dnssec-validation no;
auth-nxdomain no;
listen-on { any; };
};
此转发器VM不会将EDNS IP发送到我的DNS服务器。
要支持ECS,还需要什么其他配置?