我有一个 RHEL8 系统,bind9 服务在 chroot 环境中运行。我配置了两个域区域,并为域 1 和域 2 启用了 DNSSEC。当我从站点分析 xxx.in 域的 DNSSEC 问题时。我收到“对 ns2.xxx.com 的所有查询 xxx.in/DNSKEY 超时或失败”和“对 ns1.xxx.com 的所有查询 xxx.in/DNSKEY 超时或失败”错误(附有屏幕截图),但在分析 abc.com 域(附有屏幕截图)时没有显示任何错误,该区域在同一台服务器上管理。我还观察到每秒有一些随机查询进入服务器(附有屏幕截图),但不知道如何缓解此问题。请有人帮助我缓解这个问题。直到昨天它都很好。

细节:
Domain1=xxx.in
Domain2=abc.com
Nameserver1=ns1.xxxxx.com (Authoritative Name Server for xxx.in & abc.com)
Nameserver2=ns2.xxxxx.com (Authoritative Name Server for xxx.in & abc.com)

重新启动服务并在named.conf文件中配置速率限制。

$(function() {
$(“.js-gps-inline-related-questions .spacer”).on(“click”, function () {
fireRelatedEvent($(this).index() + 1, $(this).data(‘question-id’));
});

function fireRelatedEvent(position, questionId) {
StackExchange.using(“gps”, function() {
StackExchange.gps.track(‘related_questions.click’,
{
position: position,
originQuestionId: 78905798,
relatedQuestionId: +questionId,
location: ‘inline’,
source: ‘Baseline_Fallback’
});
});
}
});

function toggleInlineRelated(showMore) {
var inlineRelatedLess = document.getElementById(“inline_related_var_a_less”);
var inlineRelatedMore = document.getElementById(“inline_related_var_a_more”);

var inlineRelatedSeeMore = document.getElementById(“inline_related_see_more”);
var inlineRelatedSeeLess = document.getElementById(“inline_related_see_less”);

if (showMore) {
inlineRelatedLess.classList.add(“d-none”);
inlineRelatedSeeMore.classList.add(“d-none”);

inlineRelatedMore.classList.remove(“d-none”);
inlineRelatedSeeLess.classList.remove(“d-none”);
}
else {
inlineRelatedMore.classList.add(“d-none”);
inlineRelatedSeeLess.classList.add(“d-none”);

inlineRelatedLess.classList.remove(“d-none”);
inlineRelatedSeeMore.classList.remove(“d-none”);
}
}

0