mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
Implement TCP support in the `ans11` Python-based DNS server. Implement a control command channel in `ans11` to support an optional silent mode of operation, which, when enabled, will ignore incoming queries. In the added check, make the `ans11` the NS server of "a.root-servers.nil." for `ns3`, so it uses `ans11` (in silent mode) for the regular (non-forwarded) name resolutions. This will trigger the "hung fetch" scenario, which was causing `named` to crash.
24 lines
737 B
Bash
24 lines
737 B
Bash
# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
|
#
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, you can obtain one at https://mozilla.org/MPL/2.0/.
|
|
#
|
|
# See the COPYRIGHT file distributed with this work for additional
|
|
# information regarding copyright ownership.
|
|
|
|
#
|
|
# Clean up after forward tests.
|
|
#
|
|
rm -f ./dig.out.*
|
|
rm -f ./*/named.conf
|
|
rm -f ./*/named.memstats
|
|
rm -f ./*/named.run ./*/named.run.prev ./*/ans.run
|
|
rm -f ./*/named_dump.db
|
|
rm -f ./ns*/named.lock
|
|
rm -f ./ns*/managed-keys.bind*
|
|
rm -f ./ns1/root.db ./ns1/root.db.signed
|
|
rm -f ./ns*/trusted.conf
|
|
rm -f ./ns1/K* ./ns1/dsset-*
|