我目前有 2001:1973:2303::/48 分配给我,我将分配 /64 给客户
我想为 /48 设置 1 个区域文件,我可以在其中将查询指向/重定向到不同的名称服务器。
示例(预期效果)
2001:1973:2303:1234::/64 -> ns1.example.com, ns2.example.com
2001:1973:2303:2345::/64 -> ns99.example2.com, ns100.example2.com
2001:1973:2303:4321::/64 -> ns1.cust1.com, ns2.cust1.com
Run Code Online (Sandbox Code Playgroud)
当前的 /48 区域文件
$TTL 3h
$ORIGIN 3.0.3.2.3.7.9.1.1.0.0.2.ip6.arpa.
@ IN SOA ns3.example.ca. ns4.example.ca. (
2011071030 ; serial
3h ; refresh after 3 hours
1h ; retry after 1 hour
1w ; expire after 1 week
1h ) ; negative caching TTL of 1 hour
IN NS ns3.example.ca.
IN NS ns4.example.ca.
1234 IN NS ns1.example.com.
NS ns2.example.com.
2345 IN …Run Code Online (Sandbox Code Playgroud)