From 3bb66854c86d1646ff5a131e1b3dd8c0d0fe721f Mon Sep 17 00:00:00 2001 From: Samuel Williams Date: Sun, 14 Jul 2024 12:27:31 +1200 Subject: [PATCH] Modernize gem. --- .editorconfig | 4 + .github/workflows/documentation-coverage.yaml | 25 + .github/workflows/documentation.yaml | 58 + .github/workflows/documentation.yml | 32 - .github/workflows/test-coverage.yaml | 57 + .github/workflows/test-external.yaml | 36 + .../workflows/{development.yml => test.yaml} | 21 +- .gitignore | 13 +- .mailmap | 2 + .rspec | 3 - async-dns.gemspec | 19 +- .../resolver_performance.rb | 32 +- .../server/bind9/generate-local.rb | 4 + .../dns => benchmark}/server/bind9/local.zone | 0 ...erverPerformanceSpec-Bind9ServerDaemon.log | 22184 ++++++++++++++++ benchmark/server/bind9/managed-keys.bind.jnl | Bin 0 -> 2237 bytes .../dns => benchmark}/server/bind9/named.conf | 0 .../dns => benchmark}/server/bind9/named.run | 0 .../async/dns => benchmark}/server/million.rb | 22 +- .../server_performance.rb | 28 +- config/sus.rb | 2 + examples/cloudflare.rb | 4 + gems.rb | 15 +- lib/async/dns.rb | 24 +- lib/async/dns/chunked.rb | 23 +- lib/async/dns/extensions/resolv.rb | 25 +- lib/async/dns/extensions/string.rb | 23 +- lib/async/dns/handler.rb | 24 +- lib/async/dns/message.rb | 23 +- lib/async/dns/replace.rb | 24 +- lib/async/dns/resolver.rb | 25 +- lib/async/dns/server.rb | 27 +- lib/async/dns/system.rb | 23 +- lib/async/dns/transaction.rb | 24 +- lib/async/dns/transport.rb | 23 +- lib/async/dns/version.rb | 24 +- license.md | 29 + README.md => readme.md | 41 +- release.cert | 51 +- spec/async/dns/handler_spec.rb | 60 - spec/async/dns/junk_server_context.rb | 62 - spec/async/dns/message_spec.rb | 56 - spec/async/dns/origin_spec.rb | 106 - spec/async/dns/replace_spec.rb | 44 - spec/async/dns/slow_server_spec.rb | 97 - spec/async/dns/socket_spec.rb | 72 - spec/async/dns/system_spec.rb | 57 - spec/async/dns/transaction_spec.rb | 140 - spec/async/dns/truncation_spec.rb | 61 - spec/spec_helper.rb | 57 - test/async/dns/handler.rb | 47 + {spec => test}/async/dns/hosts.txt | 0 .../ipv6_spec.rb => test/async/dns/ipv6.rb | 31 +- test/async/dns/junk_server_context.rb | 5 + test/async/dns/message.rb | 38 + test/async/dns/origin.rb | 87 + test/async/dns/replace.rb | 25 + .../async/dns/resolver.rb | 88 +- test/async/dns/slow_server.rb | 81 + test/async/dns/socket.rb | 54 + test/async/dns/system.rb | 39 + ...erverPerformanceSpec-AsyncServerDaemon.log | 688 + test/async/dns/transaction.rb | 122 + test/async/dns/truncation.rb | 45 + 64 files changed, 23857 insertions(+), 1299 deletions(-) create mode 100644 .github/workflows/documentation-coverage.yaml create mode 100644 .github/workflows/documentation.yaml delete mode 100644 .github/workflows/documentation.yml create mode 100644 .github/workflows/test-coverage.yaml create mode 100644 .github/workflows/test-external.yaml rename .github/workflows/{development.yml => test.yaml} (77%) create mode 100644 .mailmap delete mode 100644 .rspec rename spec/async/dns/resolver_performance_spec.rb => benchmark/resolver_performance.rb (52%) rename {spec/async/dns => benchmark}/server/bind9/generate-local.rb (84%) rename {spec/async/dns => benchmark}/server/bind9/local.zone (100%) create mode 100644 benchmark/server/bind9/log/Async-DNS-ServerPerformanceSpec-Bind9ServerDaemon.log create mode 100644 benchmark/server/bind9/managed-keys.bind.jnl rename {spec/async/dns => benchmark}/server/bind9/named.conf (100%) rename {spec/async/dns => benchmark}/server/bind9/named.run (100%) rename {spec/async/dns => benchmark}/server/million.rb (55%) rename spec/async/dns/server_performance_spec.rb => benchmark/server_performance.rb (68%) create mode 100644 config/sus.rb create mode 100644 license.md rename README.md => readme.md (73%) delete mode 100644 spec/async/dns/handler_spec.rb delete mode 100644 spec/async/dns/junk_server_context.rb delete mode 100755 spec/async/dns/message_spec.rb delete mode 100644 spec/async/dns/origin_spec.rb delete mode 100644 spec/async/dns/replace_spec.rb delete mode 100755 spec/async/dns/slow_server_spec.rb delete mode 100644 spec/async/dns/socket_spec.rb delete mode 100755 spec/async/dns/system_spec.rb delete mode 100755 spec/async/dns/transaction_spec.rb delete mode 100755 spec/async/dns/truncation_spec.rb delete mode 100644 spec/spec_helper.rb create mode 100644 test/async/dns/handler.rb rename {spec => test}/async/dns/hosts.txt (100%) rename spec/async/dns/ipv6_spec.rb => test/async/dns/ipv6.rb (52%) create mode 100644 test/async/dns/junk_server_context.rb create mode 100755 test/async/dns/message.rb create mode 100644 test/async/dns/origin.rb create mode 100644 test/async/dns/replace.rb rename spec/async/dns/resolver_spec.rb => test/async/dns/resolver.rb (55%) create mode 100755 test/async/dns/slow_server.rb create mode 100644 test/async/dns/socket.rb create mode 100755 test/async/dns/system.rb create mode 100644 test/async/dns/tmp/log/Async-DNS-ServerPerformanceSpec-AsyncServerDaemon.log create mode 100755 test/async/dns/transaction.rb create mode 100755 test/async/dns/truncation.rb diff --git a/.editorconfig b/.editorconfig index 538ba2b..a6e7d26 100644 --- a/.editorconfig +++ b/.editorconfig @@ -3,3 +3,7 @@ root = true [*] indent_style = tab indent_size = 2 + +[*.{yml,yaml}] +indent_style = space +indent_size = 2 diff --git a/.github/workflows/documentation-coverage.yaml b/.github/workflows/documentation-coverage.yaml new file mode 100644 index 0000000..b3bac9a --- /dev/null +++ b/.github/workflows/documentation-coverage.yaml @@ -0,0 +1,25 @@ +name: Documentation Coverage + +on: [push, pull_request] + +permissions: + contents: read + +env: + CONSOLE_OUTPUT: XTerm + COVERAGE: PartialSummary + +jobs: + validate: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - uses: ruby/setup-ruby@v1 + with: + ruby-version: "3.3" + bundler-cache: true + + - name: Validate coverage + timeout-minutes: 5 + run: bundle exec bake decode:index:coverage lib diff --git a/.github/workflows/documentation.yaml b/.github/workflows/documentation.yaml new file mode 100644 index 0000000..f5f553a --- /dev/null +++ b/.github/workflows/documentation.yaml @@ -0,0 +1,58 @@ +name: Documentation + +on: + push: + branches: + - main + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages: +permissions: + contents: read + pages: write + id-token: write + +# Allow one concurrent deployment: +concurrency: + group: "pages" + cancel-in-progress: true + +env: + CONSOLE_OUTPUT: XTerm + BUNDLE_WITH: maintenance + +jobs: + generate: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - uses: ruby/setup-ruby@v1 + with: + ruby-version: "3.3" + bundler-cache: true + + - name: Installing packages + run: sudo apt-get install wget + + - name: Generate documentation + timeout-minutes: 5 + run: bundle exec bake utopia:project:static --force no + + - name: Upload documentation artifact + uses: actions/upload-pages-artifact@v3 + with: + path: docs + + deploy: + runs-on: ubuntu-latest + + environment: + name: github-pages + url: ${{steps.deployment.outputs.page_url}} + + needs: generate + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml deleted file mode 100644 index 61956e9..0000000 --- a/.github/workflows/documentation.yml +++ /dev/null @@ -1,32 +0,0 @@ -name: Documentation - -on: - push: - branches: - - main - -jobs: - deploy: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - uses: ruby/setup-ruby@v1 - env: - BUNDLE_WITH: maintenance - with: - ruby-version: 3.0 - bundler-cache: true - - - name: Installing packages - run: sudo apt-get install wget - - - name: Generate documentation - timeout-minutes: 5 - run: bundle exec bake utopia:project:static - - - name: Deploy documentation - uses: JamesIves/github-pages-deploy-action@4.0.0 - with: - branch: docs - folder: docs diff --git a/.github/workflows/test-coverage.yaml b/.github/workflows/test-coverage.yaml new file mode 100644 index 0000000..d7e5b24 --- /dev/null +++ b/.github/workflows/test-coverage.yaml @@ -0,0 +1,57 @@ +name: Test Coverage + +on: [push, pull_request] + +permissions: + contents: read + +env: + CONSOLE_OUTPUT: XTerm + COVERAGE: PartialSummary + +jobs: + test: + name: ${{matrix.ruby}} on ${{matrix.os}} + runs-on: ${{matrix.os}}-latest + + strategy: + matrix: + os: + - ubuntu + - macos + + ruby: + - "3.3" + + steps: + - uses: actions/checkout@v4 + - uses: ruby/setup-ruby@v1 + with: + ruby-version: ${{matrix.ruby}} + bundler-cache: true + + - name: Run tests + timeout-minutes: 5 + run: bundle exec bake test + + - uses: actions/upload-artifact@v3 + with: + name: coverage-${{matrix.os}}-${{matrix.ruby}} + path: .covered.db + + validate: + needs: test + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - uses: ruby/setup-ruby@v1 + with: + ruby-version: "3.3" + bundler-cache: true + + - uses: actions/download-artifact@v3 + + - name: Validate coverage + timeout-minutes: 5 + run: bundle exec bake covered:validate --paths */.covered.db \; diff --git a/.github/workflows/test-external.yaml b/.github/workflows/test-external.yaml new file mode 100644 index 0000000..21898f5 --- /dev/null +++ b/.github/workflows/test-external.yaml @@ -0,0 +1,36 @@ +name: Test External + +on: [push, pull_request] + +permissions: + contents: read + +env: + CONSOLE_OUTPUT: XTerm + +jobs: + test: + name: ${{matrix.ruby}} on ${{matrix.os}} + runs-on: ${{matrix.os}}-latest + + strategy: + matrix: + os: + - ubuntu + - macos + + ruby: + - "3.1" + - "3.2" + - "3.3" + + steps: + - uses: actions/checkout@v4 + - uses: ruby/setup-ruby@v1 + with: + ruby-version: ${{matrix.ruby}} + bundler-cache: true + + - name: Run tests + timeout-minutes: 10 + run: bundle exec bake test:external diff --git a/.github/workflows/development.yml b/.github/workflows/test.yaml similarity index 77% rename from .github/workflows/development.yml rename to .github/workflows/test.yaml index 0b1a9ba..0769a98 100644 --- a/.github/workflows/development.yml +++ b/.github/workflows/test.yaml @@ -1,7 +1,13 @@ -name: Development +name: Test on: [push, pull_request] +permissions: + contents: read + +env: + CONSOLE_OUTPUT: XTerm + jobs: test: name: ${{matrix.ruby}} on ${{matrix.os}} @@ -15,12 +21,11 @@ jobs: - macos ruby: - - "2.6" - - "2.7" - - "3.0" + - "3.1" + - "3.2" + - "3.3" experimental: [false] - env: [""] include: - os: ubuntu @@ -34,12 +39,12 @@ jobs: experimental: true steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{matrix.ruby}} bundler-cache: true - name: Run tests - timeout-minutes: 5 - run: ${{matrix.env}} bundle exec rspec + timeout-minutes: 10 + run: bundle exec bake test diff --git a/.gitignore b/.gitignore index 043a0b8..09683ae 100644 --- a/.gitignore +++ b/.gitignore @@ -1,14 +1,7 @@ /.bundle/ -/.yardoc -/gems.locked -/_yardoc/ -/coverage/ -/doc/ /pkg/ -/spec/reports/ -/tmp/ +/gems.locked +/.covered.db +/external /spec/**/log/ - -# rspec failure tracking -.rspec_status diff --git a/.mailmap b/.mailmap new file mode 100644 index 0000000..c433fa1 --- /dev/null +++ b/.mailmap @@ -0,0 +1,2 @@ +Hal Brodigan +Hendrik Beskow diff --git a/.rspec b/.rspec deleted file mode 100644 index 8fbe32d..0000000 --- a/.rspec +++ /dev/null @@ -1,3 +0,0 @@ ---format documentation ---warnings ---require spec_helper \ No newline at end of file diff --git a/async-dns.gemspec b/async-dns.gemspec index 615611f..512f00d 100644 --- a/async-dns.gemspec +++ b/async-dns.gemspec @@ -1,3 +1,4 @@ +# frozen_string_literal: true require_relative "lib/async/dns/version" @@ -6,7 +7,7 @@ Gem::Specification.new do |spec| spec.version = Async::DNS::VERSION spec.summary = "An easy to use DNS client resolver and server for Ruby." - spec.authors = ["Samuel Williams"] + spec.authors = ["Samuel Williams", "Tony Arcieri", "Olle Jonsson", "Greg Thornton", "Hal Brodigan", "Hendrik Beskow", "Mike Perham", "Sean Dilda", "Stefan Wrobel"] spec.license = "MIT" spec.cert_chain = ['release.cert'] @@ -14,15 +15,13 @@ Gem::Specification.new do |spec| spec.homepage = "https://github.com/socketry/async-dns" - spec.files = Dir.glob('{lib}/**/*', File::FNM_DOTMATCH, base: __dir__) + spec.metadata = { + "source_code_uri" => "https://github.com/socketry/async-dns.git", + } - spec.add_dependency "async-io", "~> 1.15" + spec.files = Dir.glob(['{lib}/**/*', '*.md'], File::FNM_DOTMATCH, base: __dir__) + + spec.required_ruby_version = ">= 3.1" - spec.add_development_dependency "async-rspec", "~> 1.0" - spec.add_development_dependency "bundler" - spec.add_development_dependency "covered" - spec.add_development_dependency "process-daemon", "~> 1.0" - spec.add_development_dependency "rspec", "~> 3.0" - spec.add_development_dependency "rspec-files", "~> 1.0" - spec.add_development_dependency "rspec-memory", "~> 1.0" + spec.add_dependency "async-io", "~> 1.15" end diff --git a/spec/async/dns/resolver_performance_spec.rb b/benchmark/resolver_performance.rb similarity index 52% rename from spec/async/dns/resolver_performance_spec.rb rename to benchmark/resolver_performance.rb index d5e3ce7..19ada1d 100755 --- a/spec/async/dns/resolver_performance_spec.rb +++ b/benchmark/resolver_performance.rb @@ -1,28 +1,14 @@ #!/usr/bin/env ruby +# frozen_string_literal: true -# Copyright, 2012, by Samuel G. D. Williams. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. +# Released under the MIT License. +# Copyright, 2015-2024, by Samuel Williams. require 'async/dns' -RSpec.describe Async::DNS::Resolver , timeout: 30 do +require 'benchmark' + +describe Async::DNS::Resolver , timeout: 30 do context 'benchmark' do domains = %W{ Facebook.com @@ -75,12 +61,8 @@ Mail.ru Jimdo.com } - - before do - require 'benchmark' - end - include_context Async::RSpec::Reactor + include Sus::Fixtures::Async::ReactorContext it 'should be faster than native resolver' do Benchmark.bm(30) do |x| diff --git a/spec/async/dns/server/bind9/generate-local.rb b/benchmark/server/bind9/generate-local.rb similarity index 84% rename from spec/async/dns/server/bind9/generate-local.rb rename to benchmark/server/bind9/generate-local.rb index db050fc..fc05fd6 100755 --- a/spec/async/dns/server/bind9/generate-local.rb +++ b/benchmark/server/bind9/generate-local.rb @@ -1,4 +1,8 @@ #!/usr/bin/env ruby +# frozen_string_literal: true + +# Released under the MIT License. +# Copyright, 2015-2024, by Samuel Williams. File.open("local.zone", "w") do |f| f.write(DATA.read) diff --git a/spec/async/dns/server/bind9/local.zone b/benchmark/server/bind9/local.zone similarity index 100% rename from spec/async/dns/server/bind9/local.zone rename to benchmark/server/bind9/local.zone diff --git a/benchmark/server/bind9/log/Async-DNS-ServerPerformanceSpec-Bind9ServerDaemon.log b/benchmark/server/bind9/log/Async-DNS-ServerPerformanceSpec-Bind9ServerDaemon.log new file mode 100644 index 0000000..0f274fa --- /dev/null +++ b/benchmark/server/bind9/log/Async-DNS-ServerPerformanceSpec-Bind9ServerDaemon.log @@ -0,0 +1,22184 @@ +=== Log Marked @ 2017-04-01 01:54:05 +1300 [47596] === +01-Apr-2017 01:54:05.134 starting BIND 9.11.0-P3 +01-Apr-2017 01:54:05.135 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +01-Apr-2017 01:54:05.135 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +01-Apr-2017 01:54:05.135 running as: named -c named.conf -f -p 5400 -g +01-Apr-2017 01:54:05.135 ---------------------------------------------------- +01-Apr-2017 01:54:05.135 BIND 9 is maintained by Internet Systems Consortium, +01-Apr-2017 01:54:05.135 Inc. (ISC), a non-profit 501(c)(3) public-benefit +01-Apr-2017 01:54:05.135 corporation. Support and training for BIND 9 are +01-Apr-2017 01:54:05.135 available at https://www.isc.org/support +01-Apr-2017 01:54:05.135 ---------------------------------------------------- +01-Apr-2017 01:54:05.135 found 8 CPUs, using 8 worker threads +01-Apr-2017 01:54:05.135 using 7 UDP listeners per interface +01-Apr-2017 01:54:05.136 using up to 4096 sockets +01-Apr-2017 01:54:05.154 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +01-Apr-2017 01:54:05.155 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +01-Apr-2017 01:54:05.155 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +01-Apr-2017 01:54:05.156 using default UDP/IPv4 port range: [49152, 65535] +01-Apr-2017 01:54:05.156 using default UDP/IPv6 port range: [49152, 65535] +01-Apr-2017 01:54:05.157 listening on IPv4 interface lo0, 127.0.0.1#5400 +01-Apr-2017 01:54:05.159 generating session key for dynamic DNS +01-Apr-2017 01:54:05.159 could not open file '/opt/local/var/run/named/session.key': Permission denied +01-Apr-2017 01:54:05.159 could not create /opt/local/var/run/named/session.key +01-Apr-2017 01:54:05.159 failed to generate session key for dynamic DNS: permission denied +01-Apr-2017 01:54:05.160 sizing zone task pool based on 1 zones +01-Apr-2017 01:54:05.162 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +01-Apr-2017 01:54:05.168 set up managed keys zone for view _default, file 'managed-keys.bind' +01-Apr-2017 01:54:05.168 automatic empty zone: 10.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 16.172.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 17.172.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 18.172.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 19.172.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 20.172.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 21.172.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 22.172.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 23.172.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 24.172.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 25.172.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 26.172.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 27.172.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 28.172.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 29.172.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 30.172.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 31.172.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 168.192.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 64.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 65.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 66.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 67.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 68.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 69.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 70.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 71.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 72.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 73.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 74.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 75.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 76.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 77.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 78.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 79.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 80.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 81.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 82.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 83.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 84.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 85.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 86.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 87.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 88.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 89.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 90.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 91.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 92.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 93.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 94.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.168 automatic empty zone: 95.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 96.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 97.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 98.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 99.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 100.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 101.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 102.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 103.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 104.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 105.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 106.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 107.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 108.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 109.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 110.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 111.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 112.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 113.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 114.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 115.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 116.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 117.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 118.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 119.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 120.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 121.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 122.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 123.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 124.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 125.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 126.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 127.100.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 0.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 127.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 254.169.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 2.0.192.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 100.51.198.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 113.0.203.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: D.F.IP6.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 8.E.F.IP6.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 9.E.F.IP6.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: A.E.F.IP6.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: B.E.F.IP6.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +01-Apr-2017 01:54:05.169 automatic empty zone: EMPTY.AS112.ARPA +01-Apr-2017 01:54:05.169 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +01-Apr-2017 01:54:05.173 configuring command channel from '/opt/local/etc/rndc.key' +01-Apr-2017 01:54:05.173 couldn't add command channel 127.0.0.1#953: file not found +01-Apr-2017 01:54:05.173 configuring command channel from '/opt/local/etc/rndc.key' +01-Apr-2017 01:54:05.173 couldn't add command channel ::1#953: file not found +01-Apr-2017 01:54:05.173 not using config file logging statement for logging due to -g option +01-Apr-2017 01:54:05.173 managed-keys-zone: loaded serial 0 +01-Apr-2017 01:54:05.207 zone local/IN: loaded serial 2 +01-Apr-2017 01:54:05.207 all zones loaded +01-Apr-2017 01:54:05.207 running +01-Apr-2017 01:54:05.216 shutting down +01-Apr-2017 01:54:05.216 no longer listening on 127.0.0.1#5400 +01-Apr-2017 01:54:05.300 exiting +=== Log Marked @ 2017-04-01 02:05:12 +1300 [47688] === +01-Apr-2017 02:05:12.771 starting BIND 9.11.0-P3 +01-Apr-2017 02:05:12.771 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +01-Apr-2017 02:05:12.771 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +01-Apr-2017 02:05:12.771 running as: named -c named.conf -f -p 5400 -g +01-Apr-2017 02:05:12.771 ---------------------------------------------------- +01-Apr-2017 02:05:12.771 BIND 9 is maintained by Internet Systems Consortium, +01-Apr-2017 02:05:12.771 Inc. (ISC), a non-profit 501(c)(3) public-benefit +01-Apr-2017 02:05:12.771 corporation. Support and training for BIND 9 are +01-Apr-2017 02:05:12.771 available at https://www.isc.org/support +01-Apr-2017 02:05:12.771 ---------------------------------------------------- +01-Apr-2017 02:05:12.771 found 8 CPUs, using 8 worker threads +01-Apr-2017 02:05:12.771 using 7 UDP listeners per interface +01-Apr-2017 02:05:12.772 using up to 4096 sockets +01-Apr-2017 02:05:12.775 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +01-Apr-2017 02:05:12.776 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +01-Apr-2017 02:05:12.776 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +01-Apr-2017 02:05:12.776 using default UDP/IPv4 port range: [49152, 65535] +01-Apr-2017 02:05:12.776 using default UDP/IPv6 port range: [49152, 65535] +01-Apr-2017 02:05:12.777 listening on IPv4 interface lo0, 127.0.0.1#5400 +01-Apr-2017 02:05:12.778 generating session key for dynamic DNS +01-Apr-2017 02:05:12.779 could not open file '/opt/local/var/run/named/session.key': Permission denied +01-Apr-2017 02:05:12.779 could not create /opt/local/var/run/named/session.key +01-Apr-2017 02:05:12.779 failed to generate session key for dynamic DNS: permission denied +01-Apr-2017 02:05:12.779 sizing zone task pool based on 1 zones +01-Apr-2017 02:05:12.779 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +01-Apr-2017 02:05:12.781 set up managed keys zone for view _default, file 'managed-keys.bind' +01-Apr-2017 02:05:12.781 automatic empty zone: 10.IN-ADDR.ARPA +01-Apr-2017 02:05:12.781 automatic empty zone: 16.172.IN-ADDR.ARPA +01-Apr-2017 02:05:12.781 automatic empty zone: 17.172.IN-ADDR.ARPA +01-Apr-2017 02:05:12.781 automatic empty zone: 18.172.IN-ADDR.ARPA +01-Apr-2017 02:05:12.781 automatic empty zone: 19.172.IN-ADDR.ARPA +01-Apr-2017 02:05:12.781 automatic empty zone: 20.172.IN-ADDR.ARPA +01-Apr-2017 02:05:12.781 automatic empty zone: 21.172.IN-ADDR.ARPA +01-Apr-2017 02:05:12.781 automatic empty zone: 22.172.IN-ADDR.ARPA +01-Apr-2017 02:05:12.781 automatic empty zone: 23.172.IN-ADDR.ARPA +01-Apr-2017 02:05:12.781 automatic empty zone: 24.172.IN-ADDR.ARPA +01-Apr-2017 02:05:12.781 automatic empty zone: 25.172.IN-ADDR.ARPA +01-Apr-2017 02:05:12.781 automatic empty zone: 26.172.IN-ADDR.ARPA +01-Apr-2017 02:05:12.781 automatic empty zone: 27.172.IN-ADDR.ARPA +01-Apr-2017 02:05:12.781 automatic empty zone: 28.172.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 29.172.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 30.172.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 31.172.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 168.192.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 64.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 65.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 66.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 67.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 68.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 69.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 70.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 71.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 72.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 73.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 74.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 75.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 76.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 77.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 78.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 79.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 80.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 81.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 82.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 83.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 84.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 85.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 86.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 87.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 88.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 89.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 90.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 91.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 92.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 93.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 94.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 95.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 96.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 97.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 98.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 99.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 100.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 101.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 102.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 103.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 104.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 105.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 106.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 107.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 108.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 109.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 110.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 111.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 112.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 113.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 114.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 115.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 116.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 117.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 118.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 119.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 120.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 121.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 122.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 123.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 124.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 125.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 126.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 127.100.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 0.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 127.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 254.169.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 2.0.192.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 100.51.198.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 113.0.203.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: D.F.IP6.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 8.E.F.IP6.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 9.E.F.IP6.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: A.E.F.IP6.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: B.E.F.IP6.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +01-Apr-2017 02:05:12.782 automatic empty zone: EMPTY.AS112.ARPA +01-Apr-2017 02:05:12.783 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +01-Apr-2017 02:05:12.785 configuring command channel from '/opt/local/etc/rndc.key' +01-Apr-2017 02:05:12.785 couldn't add command channel 127.0.0.1#953: file not found +01-Apr-2017 02:05:12.785 configuring command channel from '/opt/local/etc/rndc.key' +01-Apr-2017 02:05:12.785 couldn't add command channel ::1#953: file not found +01-Apr-2017 02:05:12.785 not using config file logging statement for logging due to -g option +01-Apr-2017 02:05:12.785 managed-keys-zone: loaded serial 0 +01-Apr-2017 02:05:12.812 zone local/IN: loaded serial 2 +01-Apr-2017 02:05:12.812 all zones loaded +01-Apr-2017 02:05:12.812 running +01-Apr-2017 02:05:12.974 shutting down +01-Apr-2017 02:05:12.975 no longer listening on 127.0.0.1#5400 +01-Apr-2017 02:05:13.040 exiting +=== Log Marked @ 2017-04-01 02:06:03 +1300 [47701] === +01-Apr-2017 02:06:03.062 starting BIND 9.11.0-P3 +01-Apr-2017 02:06:03.062 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +01-Apr-2017 02:06:03.062 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +01-Apr-2017 02:06:03.062 running as: named -c named.conf -f -p 5400 -g +01-Apr-2017 02:06:03.062 ---------------------------------------------------- +01-Apr-2017 02:06:03.062 BIND 9 is maintained by Internet Systems Consortium, +01-Apr-2017 02:06:03.062 Inc. (ISC), a non-profit 501(c)(3) public-benefit +01-Apr-2017 02:06:03.062 corporation. Support and training for BIND 9 are +01-Apr-2017 02:06:03.062 available at https://www.isc.org/support +01-Apr-2017 02:06:03.062 ---------------------------------------------------- +01-Apr-2017 02:06:03.062 found 8 CPUs, using 8 worker threads +01-Apr-2017 02:06:03.062 using 7 UDP listeners per interface +01-Apr-2017 02:06:03.062 using up to 4096 sockets +01-Apr-2017 02:06:03.066 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +01-Apr-2017 02:06:03.066 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +01-Apr-2017 02:06:03.066 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +01-Apr-2017 02:06:03.066 using default UDP/IPv4 port range: [49152, 65535] +01-Apr-2017 02:06:03.066 using default UDP/IPv6 port range: [49152, 65535] +01-Apr-2017 02:06:03.067 listening on IPv4 interface lo0, 127.0.0.1#5400 +01-Apr-2017 02:06:03.069 generating session key for dynamic DNS +01-Apr-2017 02:06:03.069 could not open file '/opt/local/var/run/named/session.key': Permission denied +01-Apr-2017 02:06:03.069 could not create /opt/local/var/run/named/session.key +01-Apr-2017 02:06:03.069 failed to generate session key for dynamic DNS: permission denied +01-Apr-2017 02:06:03.069 sizing zone task pool based on 1 zones +01-Apr-2017 02:06:03.070 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +01-Apr-2017 02:06:03.072 set up managed keys zone for view _default, file 'managed-keys.bind' +01-Apr-2017 02:06:03.072 automatic empty zone: 10.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 16.172.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 17.172.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 18.172.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 19.172.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 20.172.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 21.172.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 22.172.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 23.172.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 24.172.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 25.172.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 26.172.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 27.172.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 28.172.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 29.172.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 30.172.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 31.172.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 168.192.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 64.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 65.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 66.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 67.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 68.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 69.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 70.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 71.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 72.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 73.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 74.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 75.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 76.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 77.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 78.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 79.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 80.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 81.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 82.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 83.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 84.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 85.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 86.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 87.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 88.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 89.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 90.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 91.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 92.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.072 automatic empty zone: 93.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 94.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 95.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 96.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 97.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 98.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 99.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 100.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 101.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 102.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 103.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 104.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 105.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 106.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 107.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 108.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 109.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 110.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 111.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 112.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 113.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 114.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 115.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 116.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 117.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 118.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 119.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 120.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 121.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 122.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 123.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 124.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 125.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 126.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 127.100.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 0.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 127.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 254.169.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 2.0.192.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 100.51.198.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 113.0.203.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: D.F.IP6.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 8.E.F.IP6.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 9.E.F.IP6.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: A.E.F.IP6.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: B.E.F.IP6.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +01-Apr-2017 02:06:03.073 automatic empty zone: EMPTY.AS112.ARPA +01-Apr-2017 02:06:03.073 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +01-Apr-2017 02:06:03.075 configuring command channel from '/opt/local/etc/rndc.key' +01-Apr-2017 02:06:03.075 couldn't add command channel 127.0.0.1#953: file not found +01-Apr-2017 02:06:03.075 configuring command channel from '/opt/local/etc/rndc.key' +01-Apr-2017 02:06:03.075 couldn't add command channel ::1#953: file not found +01-Apr-2017 02:06:03.075 not using config file logging statement for logging due to -g option +01-Apr-2017 02:06:03.076 managed-keys-zone: loaded serial 0 +01-Apr-2017 02:06:03.109 zone local/IN: loaded serial 2 +01-Apr-2017 02:06:03.109 all zones loaded +01-Apr-2017 02:06:03.109 running +01-Apr-2017 02:06:03.273 shutting down +01-Apr-2017 02:06:03.273 no longer listening on 127.0.0.1#5400 +01-Apr-2017 02:06:03.352 exiting +=== Log Marked @ 2017-04-01 02:06:21 +1300 [47713] === +01-Apr-2017 02:06:21.691 starting BIND 9.11.0-P3 +01-Apr-2017 02:06:21.691 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +01-Apr-2017 02:06:21.691 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +01-Apr-2017 02:06:21.691 running as: named -c named.conf -f -p 5400 -g +01-Apr-2017 02:06:21.691 ---------------------------------------------------- +01-Apr-2017 02:06:21.691 BIND 9 is maintained by Internet Systems Consortium, +01-Apr-2017 02:06:21.691 Inc. (ISC), a non-profit 501(c)(3) public-benefit +01-Apr-2017 02:06:21.691 corporation. Support and training for BIND 9 are +01-Apr-2017 02:06:21.691 available at https://www.isc.org/support +01-Apr-2017 02:06:21.691 ---------------------------------------------------- +01-Apr-2017 02:06:21.691 found 8 CPUs, using 8 worker threads +01-Apr-2017 02:06:21.691 using 7 UDP listeners per interface +01-Apr-2017 02:06:21.692 using up to 4096 sockets +01-Apr-2017 02:06:21.696 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +01-Apr-2017 02:06:21.696 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +01-Apr-2017 02:06:21.696 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +01-Apr-2017 02:06:21.696 using default UDP/IPv4 port range: [49152, 65535] +01-Apr-2017 02:06:21.696 using default UDP/IPv6 port range: [49152, 65535] +01-Apr-2017 02:06:21.697 listening on IPv4 interface lo0, 127.0.0.1#5400 +01-Apr-2017 02:06:21.699 generating session key for dynamic DNS +01-Apr-2017 02:06:21.699 could not open file '/opt/local/var/run/named/session.key': Permission denied +01-Apr-2017 02:06:21.699 could not create /opt/local/var/run/named/session.key +01-Apr-2017 02:06:21.699 failed to generate session key for dynamic DNS: permission denied +01-Apr-2017 02:06:21.699 sizing zone task pool based on 1 zones +01-Apr-2017 02:06:21.699 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +01-Apr-2017 02:06:21.702 set up managed keys zone for view _default, file 'managed-keys.bind' +01-Apr-2017 02:06:21.702 automatic empty zone: 10.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 16.172.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 17.172.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 18.172.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 19.172.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 20.172.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 21.172.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 22.172.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 23.172.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 24.172.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 25.172.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 26.172.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 27.172.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 28.172.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 29.172.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 30.172.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 31.172.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 168.192.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 64.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 65.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 66.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 67.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 68.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 69.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 70.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 71.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 72.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 73.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 74.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 75.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 76.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 77.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 78.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 79.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 80.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 81.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 82.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 83.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 84.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 85.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 86.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 87.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 88.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 89.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 90.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 91.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 92.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 93.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 94.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 95.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 96.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 97.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 98.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 99.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 100.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 101.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 102.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 103.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 104.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 105.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 106.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 107.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 108.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 109.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 110.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 111.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 112.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.702 automatic empty zone: 113.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.703 automatic empty zone: 114.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.703 automatic empty zone: 115.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.703 automatic empty zone: 116.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.703 automatic empty zone: 117.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.703 automatic empty zone: 118.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.703 automatic empty zone: 119.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.703 automatic empty zone: 120.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.703 automatic empty zone: 121.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.703 automatic empty zone: 122.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.703 automatic empty zone: 123.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.703 automatic empty zone: 124.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.703 automatic empty zone: 125.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.703 automatic empty zone: 126.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.703 automatic empty zone: 127.100.IN-ADDR.ARPA +01-Apr-2017 02:06:21.703 automatic empty zone: 0.IN-ADDR.ARPA +01-Apr-2017 02:06:21.703 automatic empty zone: 127.IN-ADDR.ARPA +01-Apr-2017 02:06:21.703 automatic empty zone: 254.169.IN-ADDR.ARPA +01-Apr-2017 02:06:21.703 automatic empty zone: 2.0.192.IN-ADDR.ARPA +01-Apr-2017 02:06:21.703 automatic empty zone: 100.51.198.IN-ADDR.ARPA +01-Apr-2017 02:06:21.703 automatic empty zone: 113.0.203.IN-ADDR.ARPA +01-Apr-2017 02:06:21.703 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +01-Apr-2017 02:06:21.703 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +01-Apr-2017 02:06:21.703 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +01-Apr-2017 02:06:21.703 automatic empty zone: D.F.IP6.ARPA +01-Apr-2017 02:06:21.703 automatic empty zone: 8.E.F.IP6.ARPA +01-Apr-2017 02:06:21.703 automatic empty zone: 9.E.F.IP6.ARPA +01-Apr-2017 02:06:21.703 automatic empty zone: A.E.F.IP6.ARPA +01-Apr-2017 02:06:21.703 automatic empty zone: B.E.F.IP6.ARPA +01-Apr-2017 02:06:21.703 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +01-Apr-2017 02:06:21.703 automatic empty zone: EMPTY.AS112.ARPA +01-Apr-2017 02:06:21.703 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +01-Apr-2017 02:06:21.705 configuring command channel from '/opt/local/etc/rndc.key' +01-Apr-2017 02:06:21.705 couldn't add command channel 127.0.0.1#953: file not found +01-Apr-2017 02:06:21.705 configuring command channel from '/opt/local/etc/rndc.key' +01-Apr-2017 02:06:21.705 couldn't add command channel ::1#953: file not found +01-Apr-2017 02:06:21.705 not using config file logging statement for logging due to -g option +01-Apr-2017 02:06:21.706 managed-keys-zone: loaded serial 0 +01-Apr-2017 02:06:21.733 zone local/IN: loaded serial 2 +01-Apr-2017 02:06:21.733 all zones loaded +01-Apr-2017 02:06:21.733 running +01-Apr-2017 02:06:26.905 shutting down +01-Apr-2017 02:06:26.906 no longer listening on 127.0.0.1#5400 +01-Apr-2017 02:06:26.974 exiting +=== Log Marked @ 2017-04-01 02:08:47 +1300 [47756] === +01-Apr-2017 02:08:47.407 starting BIND 9.11.0-P3 +01-Apr-2017 02:08:47.407 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +01-Apr-2017 02:08:47.407 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +01-Apr-2017 02:08:47.407 running as: named -c named.conf -f -p 5400 -g +01-Apr-2017 02:08:47.407 ---------------------------------------------------- +01-Apr-2017 02:08:47.408 BIND 9 is maintained by Internet Systems Consortium, +01-Apr-2017 02:08:47.408 Inc. (ISC), a non-profit 501(c)(3) public-benefit +01-Apr-2017 02:08:47.408 corporation. Support and training for BIND 9 are +01-Apr-2017 02:08:47.408 available at https://www.isc.org/support +01-Apr-2017 02:08:47.408 ---------------------------------------------------- +01-Apr-2017 02:08:47.408 found 8 CPUs, using 8 worker threads +01-Apr-2017 02:08:47.408 using 7 UDP listeners per interface +01-Apr-2017 02:08:47.408 using up to 4096 sockets +01-Apr-2017 02:08:47.412 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +01-Apr-2017 02:08:47.412 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +01-Apr-2017 02:08:47.412 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +01-Apr-2017 02:08:47.412 using default UDP/IPv4 port range: [49152, 65535] +01-Apr-2017 02:08:47.412 using default UDP/IPv6 port range: [49152, 65535] +01-Apr-2017 02:08:47.413 listening on IPv4 interface lo0, 127.0.0.1#5400 +01-Apr-2017 02:08:47.415 generating session key for dynamic DNS +01-Apr-2017 02:08:47.415 could not open file '/opt/local/var/run/named/session.key': Permission denied +01-Apr-2017 02:08:47.415 could not create /opt/local/var/run/named/session.key +01-Apr-2017 02:08:47.415 failed to generate session key for dynamic DNS: permission denied +01-Apr-2017 02:08:47.415 sizing zone task pool based on 1 zones +01-Apr-2017 02:08:47.415 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +01-Apr-2017 02:08:47.417 set up managed keys zone for view _default, file 'managed-keys.bind' +01-Apr-2017 02:08:47.417 automatic empty zone: 10.IN-ADDR.ARPA +01-Apr-2017 02:08:47.417 automatic empty zone: 16.172.IN-ADDR.ARPA +01-Apr-2017 02:08:47.417 automatic empty zone: 17.172.IN-ADDR.ARPA +01-Apr-2017 02:08:47.417 automatic empty zone: 18.172.IN-ADDR.ARPA +01-Apr-2017 02:08:47.417 automatic empty zone: 19.172.IN-ADDR.ARPA +01-Apr-2017 02:08:47.417 automatic empty zone: 20.172.IN-ADDR.ARPA +01-Apr-2017 02:08:47.417 automatic empty zone: 21.172.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 22.172.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 23.172.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 24.172.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 25.172.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 26.172.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 27.172.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 28.172.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 29.172.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 30.172.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 31.172.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 168.192.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 64.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 65.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 66.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 67.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 68.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 69.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 70.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 71.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 72.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 73.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 74.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 75.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 76.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 77.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 78.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 79.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 80.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 81.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 82.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 83.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 84.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 85.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 86.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 87.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 88.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 89.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 90.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 91.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 92.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 93.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 94.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 95.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 96.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 97.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 98.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 99.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 100.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 101.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 102.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 103.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 104.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 105.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 106.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 107.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 108.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 109.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 110.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 111.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 112.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 113.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 114.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 115.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 116.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 117.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 118.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 119.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 120.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 121.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 122.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 123.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 124.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 125.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 126.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 127.100.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 0.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 127.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 254.169.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 2.0.192.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 100.51.198.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 113.0.203.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: D.F.IP6.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 8.E.F.IP6.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 9.E.F.IP6.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: A.E.F.IP6.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: B.E.F.IP6.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +01-Apr-2017 02:08:47.418 automatic empty zone: EMPTY.AS112.ARPA +01-Apr-2017 02:08:47.419 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +01-Apr-2017 02:08:47.421 configuring command channel from '/opt/local/etc/rndc.key' +01-Apr-2017 02:08:47.421 couldn't add command channel 127.0.0.1#953: file not found +01-Apr-2017 02:08:47.421 configuring command channel from '/opt/local/etc/rndc.key' +01-Apr-2017 02:08:47.421 couldn't add command channel ::1#953: file not found +01-Apr-2017 02:08:47.421 not using config file logging statement for logging due to -g option +01-Apr-2017 02:08:47.421 managed-keys-zone: loaded serial 0 +01-Apr-2017 02:08:47.454 zone local/IN: loaded serial 2 +01-Apr-2017 02:08:47.454 all zones loaded +01-Apr-2017 02:08:47.454 running +01-Apr-2017 02:08:52.623 shutting down +01-Apr-2017 02:08:52.623 no longer listening on 127.0.0.1#5400 +01-Apr-2017 02:08:52.698 exiting +=== Log Marked @ 2017-04-01 11:04:37 +1300 [48325] === +01-Apr-2017 11:04:37.991 starting BIND 9.11.0-P3 +01-Apr-2017 11:04:37.992 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +01-Apr-2017 11:04:37.992 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +01-Apr-2017 11:04:37.992 running as: named -c named.conf -f -p 5400 -g +01-Apr-2017 11:04:37.992 ---------------------------------------------------- +01-Apr-2017 11:04:37.992 BIND 9 is maintained by Internet Systems Consortium, +01-Apr-2017 11:04:37.992 Inc. (ISC), a non-profit 501(c)(3) public-benefit +01-Apr-2017 11:04:37.992 corporation. Support and training for BIND 9 are +01-Apr-2017 11:04:37.992 available at https://www.isc.org/support +01-Apr-2017 11:04:37.992 ---------------------------------------------------- +01-Apr-2017 11:04:37.992 found 8 CPUs, using 8 worker threads +01-Apr-2017 11:04:37.992 using 7 UDP listeners per interface +01-Apr-2017 11:04:37.993 using up to 4096 sockets +01-Apr-2017 11:04:38.011 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +01-Apr-2017 11:04:38.011 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +01-Apr-2017 11:04:38.012 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +01-Apr-2017 11:04:38.013 using default UDP/IPv4 port range: [49152, 65535] +01-Apr-2017 11:04:38.013 using default UDP/IPv6 port range: [49152, 65535] +01-Apr-2017 11:04:38.014 listening on IPv4 interface lo0, 127.0.0.1#5400 +01-Apr-2017 11:04:38.016 generating session key for dynamic DNS +01-Apr-2017 11:04:38.016 could not open file '/opt/local/var/run/named/session.key': Permission denied +01-Apr-2017 11:04:38.016 could not create /opt/local/var/run/named/session.key +01-Apr-2017 11:04:38.016 failed to generate session key for dynamic DNS: permission denied +01-Apr-2017 11:04:38.017 sizing zone task pool based on 1 zones +01-Apr-2017 11:04:38.019 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +01-Apr-2017 11:04:38.025 set up managed keys zone for view _default, file 'managed-keys.bind' +01-Apr-2017 11:04:38.025 automatic empty zone: 10.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 16.172.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 17.172.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 18.172.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 19.172.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 20.172.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 21.172.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 22.172.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 23.172.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 24.172.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 25.172.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 26.172.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 27.172.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 28.172.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 29.172.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 30.172.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 31.172.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 168.192.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 64.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 65.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 66.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 67.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 68.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 69.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 70.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 71.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 72.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 73.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 74.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 75.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 76.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 77.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 78.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 79.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 80.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 81.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 82.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 83.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 84.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 85.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 86.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 87.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 88.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 89.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 90.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 91.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 92.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 93.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 94.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 95.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 96.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 97.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 98.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 99.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 100.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 101.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 102.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 103.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 104.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 105.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 106.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 107.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 108.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 109.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 110.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 111.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 112.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 113.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 114.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 115.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 116.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.025 automatic empty zone: 117.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.026 automatic empty zone: 118.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.026 automatic empty zone: 119.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.026 automatic empty zone: 120.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.026 automatic empty zone: 121.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.026 automatic empty zone: 122.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.026 automatic empty zone: 123.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.026 automatic empty zone: 124.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.026 automatic empty zone: 125.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.026 automatic empty zone: 126.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.026 automatic empty zone: 127.100.IN-ADDR.ARPA +01-Apr-2017 11:04:38.026 automatic empty zone: 0.IN-ADDR.ARPA +01-Apr-2017 11:04:38.026 automatic empty zone: 127.IN-ADDR.ARPA +01-Apr-2017 11:04:38.026 automatic empty zone: 254.169.IN-ADDR.ARPA +01-Apr-2017 11:04:38.026 automatic empty zone: 2.0.192.IN-ADDR.ARPA +01-Apr-2017 11:04:38.026 automatic empty zone: 100.51.198.IN-ADDR.ARPA +01-Apr-2017 11:04:38.026 automatic empty zone: 113.0.203.IN-ADDR.ARPA +01-Apr-2017 11:04:38.026 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +01-Apr-2017 11:04:38.026 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +01-Apr-2017 11:04:38.026 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +01-Apr-2017 11:04:38.026 automatic empty zone: D.F.IP6.ARPA +01-Apr-2017 11:04:38.026 automatic empty zone: 8.E.F.IP6.ARPA +01-Apr-2017 11:04:38.026 automatic empty zone: 9.E.F.IP6.ARPA +01-Apr-2017 11:04:38.026 automatic empty zone: A.E.F.IP6.ARPA +01-Apr-2017 11:04:38.026 automatic empty zone: B.E.F.IP6.ARPA +01-Apr-2017 11:04:38.026 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +01-Apr-2017 11:04:38.026 automatic empty zone: EMPTY.AS112.ARPA +01-Apr-2017 11:04:38.026 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +01-Apr-2017 11:04:38.029 configuring command channel from '/opt/local/etc/rndc.key' +01-Apr-2017 11:04:38.029 couldn't add command channel 127.0.0.1#953: file not found +01-Apr-2017 11:04:38.029 configuring command channel from '/opt/local/etc/rndc.key' +01-Apr-2017 11:04:38.029 couldn't add command channel ::1#953: file not found +01-Apr-2017 11:04:38.029 not using config file logging statement for logging due to -g option +01-Apr-2017 11:04:38.029 managed-keys-zone: loaded serial 0 +01-Apr-2017 11:04:38.057 zone local/IN: loaded serial 2 +01-Apr-2017 11:04:38.057 all zones loaded +01-Apr-2017 11:04:38.057 running +01-Apr-2017 11:04:43.183 shutting down +01-Apr-2017 11:04:43.184 no longer listening on 127.0.0.1#5400 +01-Apr-2017 11:04:43.268 exiting +=== Log Marked @ 2017-04-05 00:23:26 +1200 [61774] === +05-Apr-2017 00:23:26.451 starting BIND 9.11.0-P3 +05-Apr-2017 00:23:26.452 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +05-Apr-2017 00:23:26.452 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +05-Apr-2017 00:23:26.452 running as: named -c named.conf -f -p 5400 -g +05-Apr-2017 00:23:26.452 ---------------------------------------------------- +05-Apr-2017 00:23:26.452 BIND 9 is maintained by Internet Systems Consortium, +05-Apr-2017 00:23:26.452 Inc. (ISC), a non-profit 501(c)(3) public-benefit +05-Apr-2017 00:23:26.452 corporation. Support and training for BIND 9 are +05-Apr-2017 00:23:26.452 available at https://www.isc.org/support +05-Apr-2017 00:23:26.452 ---------------------------------------------------- +05-Apr-2017 00:23:26.452 found 8 CPUs, using 8 worker threads +05-Apr-2017 00:23:26.452 using 7 UDP listeners per interface +05-Apr-2017 00:23:26.453 using up to 4096 sockets +05-Apr-2017 00:23:26.474 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +05-Apr-2017 00:23:26.474 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +05-Apr-2017 00:23:26.475 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +05-Apr-2017 00:23:26.476 using default UDP/IPv4 port range: [49152, 65535] +05-Apr-2017 00:23:26.476 using default UDP/IPv6 port range: [49152, 65535] +05-Apr-2017 00:23:26.476 listening on IPv4 interface lo0, 127.0.0.1#5400 +05-Apr-2017 00:23:26.478 generating session key for dynamic DNS +05-Apr-2017 00:23:26.479 could not open file '/opt/local/var/run/named/session.key': Permission denied +05-Apr-2017 00:23:26.479 could not create /opt/local/var/run/named/session.key +05-Apr-2017 00:23:26.479 failed to generate session key for dynamic DNS: permission denied +05-Apr-2017 00:23:26.482 sizing zone task pool based on 1 zones +05-Apr-2017 00:23:26.484 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 00:23:26.488 set up managed keys zone for view _default, file 'managed-keys.bind' +05-Apr-2017 00:23:26.488 automatic empty zone: 10.IN-ADDR.ARPA +05-Apr-2017 00:23:26.488 automatic empty zone: 16.172.IN-ADDR.ARPA +05-Apr-2017 00:23:26.488 automatic empty zone: 17.172.IN-ADDR.ARPA +05-Apr-2017 00:23:26.488 automatic empty zone: 18.172.IN-ADDR.ARPA +05-Apr-2017 00:23:26.488 automatic empty zone: 19.172.IN-ADDR.ARPA +05-Apr-2017 00:23:26.488 automatic empty zone: 20.172.IN-ADDR.ARPA +05-Apr-2017 00:23:26.488 automatic empty zone: 21.172.IN-ADDR.ARPA +05-Apr-2017 00:23:26.488 automatic empty zone: 22.172.IN-ADDR.ARPA +05-Apr-2017 00:23:26.488 automatic empty zone: 23.172.IN-ADDR.ARPA +05-Apr-2017 00:23:26.488 automatic empty zone: 24.172.IN-ADDR.ARPA +05-Apr-2017 00:23:26.488 automatic empty zone: 25.172.IN-ADDR.ARPA +05-Apr-2017 00:23:26.488 automatic empty zone: 26.172.IN-ADDR.ARPA +05-Apr-2017 00:23:26.488 automatic empty zone: 27.172.IN-ADDR.ARPA +05-Apr-2017 00:23:26.488 automatic empty zone: 28.172.IN-ADDR.ARPA +05-Apr-2017 00:23:26.488 automatic empty zone: 29.172.IN-ADDR.ARPA +05-Apr-2017 00:23:26.488 automatic empty zone: 30.172.IN-ADDR.ARPA +05-Apr-2017 00:23:26.488 automatic empty zone: 31.172.IN-ADDR.ARPA +05-Apr-2017 00:23:26.488 automatic empty zone: 168.192.IN-ADDR.ARPA +05-Apr-2017 00:23:26.488 automatic empty zone: 64.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.488 automatic empty zone: 65.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 66.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 67.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 68.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 69.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 70.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 71.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 72.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 73.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 74.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 75.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 76.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 77.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 78.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 79.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 80.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 81.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 82.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 83.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 84.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 85.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 86.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 87.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 88.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 89.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 90.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 91.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 92.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 93.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 94.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 95.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 96.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 97.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 98.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 99.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 100.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 101.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 102.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 103.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 104.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 105.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 106.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 107.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 108.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 109.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 110.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 111.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 112.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 113.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 114.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 115.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 116.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 117.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 118.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 119.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 120.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 121.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 122.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 123.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 124.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 125.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 126.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 127.100.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 0.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 127.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 254.169.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 2.0.192.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 100.51.198.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 113.0.203.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: D.F.IP6.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 8.E.F.IP6.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 9.E.F.IP6.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: A.E.F.IP6.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: B.E.F.IP6.ARPA +05-Apr-2017 00:23:26.489 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +05-Apr-2017 00:23:26.490 automatic empty zone: EMPTY.AS112.ARPA +05-Apr-2017 00:23:26.490 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 00:23:26.493 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 00:23:26.493 couldn't add command channel 127.0.0.1#953: file not found +05-Apr-2017 00:23:26.493 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 00:23:26.493 couldn't add command channel ::1#953: file not found +05-Apr-2017 00:23:26.493 not using config file logging statement for logging due to -g option +05-Apr-2017 00:23:26.493 managed-keys-zone: loaded serial 0 +05-Apr-2017 00:23:26.526 zone local/IN: loaded serial 2 +05-Apr-2017 00:23:26.526 all zones loaded +05-Apr-2017 00:23:26.526 running +05-Apr-2017 00:23:26.639 shutting down +05-Apr-2017 00:23:26.639 no longer listening on 127.0.0.1#5400 +05-Apr-2017 00:23:26.721 exiting +=== Log Marked @ 2017-04-05 00:24:37 +1200 [61795] === +05-Apr-2017 00:24:37.518 starting BIND 9.11.0-P3 +05-Apr-2017 00:24:37.519 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +05-Apr-2017 00:24:37.519 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +05-Apr-2017 00:24:37.519 running as: named -c named.conf -f -p 5400 -g +05-Apr-2017 00:24:37.519 ---------------------------------------------------- +05-Apr-2017 00:24:37.519 BIND 9 is maintained by Internet Systems Consortium, +05-Apr-2017 00:24:37.519 Inc. (ISC), a non-profit 501(c)(3) public-benefit +05-Apr-2017 00:24:37.519 corporation. Support and training for BIND 9 are +05-Apr-2017 00:24:37.519 available at https://www.isc.org/support +05-Apr-2017 00:24:37.519 ---------------------------------------------------- +05-Apr-2017 00:24:37.519 found 8 CPUs, using 8 worker threads +05-Apr-2017 00:24:37.519 using 7 UDP listeners per interface +05-Apr-2017 00:24:37.519 using up to 4096 sockets +05-Apr-2017 00:24:37.523 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +05-Apr-2017 00:24:37.524 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +05-Apr-2017 00:24:37.524 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +05-Apr-2017 00:24:37.524 using default UDP/IPv4 port range: [49152, 65535] +05-Apr-2017 00:24:37.524 using default UDP/IPv6 port range: [49152, 65535] +05-Apr-2017 00:24:37.525 listening on IPv4 interface lo0, 127.0.0.1#5400 +05-Apr-2017 00:24:37.528 generating session key for dynamic DNS +05-Apr-2017 00:24:37.528 could not open file '/opt/local/var/run/named/session.key': Permission denied +05-Apr-2017 00:24:37.528 could not create /opt/local/var/run/named/session.key +05-Apr-2017 00:24:37.528 failed to generate session key for dynamic DNS: permission denied +05-Apr-2017 00:24:37.528 sizing zone task pool based on 1 zones +05-Apr-2017 00:24:37.529 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 00:24:37.532 set up managed keys zone for view _default, file 'managed-keys.bind' +05-Apr-2017 00:24:37.532 automatic empty zone: 10.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 16.172.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 17.172.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 18.172.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 19.172.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 20.172.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 21.172.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 22.172.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 23.172.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 24.172.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 25.172.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 26.172.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 27.172.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 28.172.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 29.172.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 30.172.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 31.172.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 168.192.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 64.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 65.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 66.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 67.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 68.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 69.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 70.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 71.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 72.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 73.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 74.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 75.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 76.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 77.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 78.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 79.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 80.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 81.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 82.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 83.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 84.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 85.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 86.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 87.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 88.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.532 automatic empty zone: 89.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 90.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 91.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 92.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 93.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 94.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 95.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 96.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 97.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 98.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 99.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 100.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 101.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 102.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 103.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 104.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 105.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 106.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 107.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 108.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 109.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 110.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 111.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 112.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 113.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 114.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 115.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 116.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 117.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 118.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 119.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 120.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 121.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 122.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 123.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 124.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 125.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 126.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 127.100.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 0.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 127.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 254.169.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 2.0.192.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 100.51.198.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 113.0.203.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: D.F.IP6.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 8.E.F.IP6.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 9.E.F.IP6.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: A.E.F.IP6.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: B.E.F.IP6.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +05-Apr-2017 00:24:37.533 automatic empty zone: EMPTY.AS112.ARPA +05-Apr-2017 00:24:37.533 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 00:24:37.535 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 00:24:37.535 couldn't add command channel 127.0.0.1#953: file not found +05-Apr-2017 00:24:37.535 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 00:24:37.535 couldn't add command channel ::1#953: file not found +05-Apr-2017 00:24:37.536 not using config file logging statement for logging due to -g option +05-Apr-2017 00:24:37.536 managed-keys-zone: loaded serial 0 +05-Apr-2017 00:24:37.566 zone local/IN: loaded serial 2 +05-Apr-2017 00:24:37.566 all zones loaded +05-Apr-2017 00:24:37.566 running +05-Apr-2017 00:24:42.736 shutting down +05-Apr-2017 00:24:42.736 no longer listening on 127.0.0.1#5400 +05-Apr-2017 00:24:42.813 exiting +=== Log Marked @ 2017-04-05 00:36:58 +1200 [61854] === +05-Apr-2017 00:36:58.703 starting BIND 9.11.0-P3 +05-Apr-2017 00:36:58.704 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +05-Apr-2017 00:36:58.704 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +05-Apr-2017 00:36:58.704 running as: named -c named.conf -f -p 5400 -g +05-Apr-2017 00:36:58.704 ---------------------------------------------------- +05-Apr-2017 00:36:58.704 BIND 9 is maintained by Internet Systems Consortium, +05-Apr-2017 00:36:58.704 Inc. (ISC), a non-profit 501(c)(3) public-benefit +05-Apr-2017 00:36:58.704 corporation. Support and training for BIND 9 are +05-Apr-2017 00:36:58.704 available at https://www.isc.org/support +05-Apr-2017 00:36:58.704 ---------------------------------------------------- +05-Apr-2017 00:36:58.704 found 8 CPUs, using 8 worker threads +05-Apr-2017 00:36:58.704 using 7 UDP listeners per interface +05-Apr-2017 00:36:58.704 using up to 4096 sockets +05-Apr-2017 00:36:58.721 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +05-Apr-2017 00:36:58.721 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +05-Apr-2017 00:36:58.721 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +05-Apr-2017 00:36:58.723 using default UDP/IPv4 port range: [49152, 65535] +05-Apr-2017 00:36:58.723 using default UDP/IPv6 port range: [49152, 65535] +05-Apr-2017 00:36:58.723 listening on IPv4 interface lo0, 127.0.0.1#5400 +05-Apr-2017 00:36:58.725 generating session key for dynamic DNS +05-Apr-2017 00:36:58.725 could not open file '/opt/local/var/run/named/session.key': Permission denied +05-Apr-2017 00:36:58.725 could not create /opt/local/var/run/named/session.key +05-Apr-2017 00:36:58.725 failed to generate session key for dynamic DNS: permission denied +05-Apr-2017 00:36:58.726 sizing zone task pool based on 1 zones +05-Apr-2017 00:36:58.728 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 00:36:58.732 set up managed keys zone for view _default, file 'managed-keys.bind' +05-Apr-2017 00:36:58.732 automatic empty zone: 10.IN-ADDR.ARPA +05-Apr-2017 00:36:58.732 automatic empty zone: 16.172.IN-ADDR.ARPA +05-Apr-2017 00:36:58.732 automatic empty zone: 17.172.IN-ADDR.ARPA +05-Apr-2017 00:36:58.732 automatic empty zone: 18.172.IN-ADDR.ARPA +05-Apr-2017 00:36:58.732 automatic empty zone: 19.172.IN-ADDR.ARPA +05-Apr-2017 00:36:58.732 automatic empty zone: 20.172.IN-ADDR.ARPA +05-Apr-2017 00:36:58.732 automatic empty zone: 21.172.IN-ADDR.ARPA +05-Apr-2017 00:36:58.732 automatic empty zone: 22.172.IN-ADDR.ARPA +05-Apr-2017 00:36:58.732 automatic empty zone: 23.172.IN-ADDR.ARPA +05-Apr-2017 00:36:58.732 automatic empty zone: 24.172.IN-ADDR.ARPA +05-Apr-2017 00:36:58.732 automatic empty zone: 25.172.IN-ADDR.ARPA +05-Apr-2017 00:36:58.732 automatic empty zone: 26.172.IN-ADDR.ARPA +05-Apr-2017 00:36:58.732 automatic empty zone: 27.172.IN-ADDR.ARPA +05-Apr-2017 00:36:58.732 automatic empty zone: 28.172.IN-ADDR.ARPA +05-Apr-2017 00:36:58.732 automatic empty zone: 29.172.IN-ADDR.ARPA +05-Apr-2017 00:36:58.732 automatic empty zone: 30.172.IN-ADDR.ARPA +05-Apr-2017 00:36:58.732 automatic empty zone: 31.172.IN-ADDR.ARPA +05-Apr-2017 00:36:58.732 automatic empty zone: 168.192.IN-ADDR.ARPA +05-Apr-2017 00:36:58.732 automatic empty zone: 64.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.732 automatic empty zone: 65.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.732 automatic empty zone: 66.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.732 automatic empty zone: 67.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.732 automatic empty zone: 68.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 69.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 70.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 71.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 72.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 73.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 74.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 75.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 76.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 77.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 78.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 79.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 80.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 81.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 82.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 83.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 84.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 85.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 86.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 87.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 88.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 89.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 90.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 91.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 92.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 93.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 94.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 95.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 96.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 97.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 98.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 99.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 100.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 101.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 102.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 103.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 104.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 105.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 106.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 107.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 108.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 109.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 110.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 111.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 112.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 113.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 114.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 115.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 116.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.733 automatic empty zone: 117.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.734 automatic empty zone: 118.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.734 automatic empty zone: 119.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.734 automatic empty zone: 120.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.734 automatic empty zone: 121.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.734 automatic empty zone: 122.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.734 automatic empty zone: 123.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.734 automatic empty zone: 124.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.734 automatic empty zone: 125.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.734 automatic empty zone: 126.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.734 automatic empty zone: 127.100.IN-ADDR.ARPA +05-Apr-2017 00:36:58.734 automatic empty zone: 0.IN-ADDR.ARPA +05-Apr-2017 00:36:58.734 automatic empty zone: 127.IN-ADDR.ARPA +05-Apr-2017 00:36:58.734 automatic empty zone: 254.169.IN-ADDR.ARPA +05-Apr-2017 00:36:58.734 automatic empty zone: 2.0.192.IN-ADDR.ARPA +05-Apr-2017 00:36:58.734 automatic empty zone: 100.51.198.IN-ADDR.ARPA +05-Apr-2017 00:36:58.734 automatic empty zone: 113.0.203.IN-ADDR.ARPA +05-Apr-2017 00:36:58.734 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +05-Apr-2017 00:36:58.734 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 00:36:58.734 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 00:36:58.734 automatic empty zone: D.F.IP6.ARPA +05-Apr-2017 00:36:58.734 automatic empty zone: 8.E.F.IP6.ARPA +05-Apr-2017 00:36:58.734 automatic empty zone: 9.E.F.IP6.ARPA +05-Apr-2017 00:36:58.734 automatic empty zone: A.E.F.IP6.ARPA +05-Apr-2017 00:36:58.734 automatic empty zone: B.E.F.IP6.ARPA +05-Apr-2017 00:36:58.734 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +05-Apr-2017 00:36:58.734 automatic empty zone: EMPTY.AS112.ARPA +05-Apr-2017 00:36:58.734 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 00:36:58.737 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 00:36:58.737 couldn't add command channel 127.0.0.1#953: file not found +05-Apr-2017 00:36:58.737 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 00:36:58.737 couldn't add command channel ::1#953: file not found +05-Apr-2017 00:36:58.738 not using config file logging statement for logging due to -g option +05-Apr-2017 00:36:58.738 managed-keys-zone: loaded serial 0 +05-Apr-2017 00:36:58.768 zone local/IN: loaded serial 2 +05-Apr-2017 00:36:58.768 all zones loaded +05-Apr-2017 00:36:58.768 running +05-Apr-2017 00:37:03.802 shutting down +05-Apr-2017 00:37:03.802 no longer listening on 127.0.0.1#5400 +05-Apr-2017 00:37:03.877 exiting +=== Log Marked @ 2017-04-05 13:12:15 +1200 [63499] === +05-Apr-2017 13:12:15.291 starting BIND 9.11.0-P3 +05-Apr-2017 13:12:15.291 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +05-Apr-2017 13:12:15.291 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +05-Apr-2017 13:12:15.291 running as: named -c named.conf -f -p 5400 -g +05-Apr-2017 13:12:15.291 ---------------------------------------------------- +05-Apr-2017 13:12:15.291 BIND 9 is maintained by Internet Systems Consortium, +05-Apr-2017 13:12:15.291 Inc. (ISC), a non-profit 501(c)(3) public-benefit +05-Apr-2017 13:12:15.291 corporation. Support and training for BIND 9 are +05-Apr-2017 13:12:15.291 available at https://www.isc.org/support +05-Apr-2017 13:12:15.291 ---------------------------------------------------- +05-Apr-2017 13:12:15.291 found 8 CPUs, using 8 worker threads +05-Apr-2017 13:12:15.291 using 7 UDP listeners per interface +05-Apr-2017 13:12:15.292 using up to 4096 sockets +05-Apr-2017 13:12:15.311 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +05-Apr-2017 13:12:15.312 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +05-Apr-2017 13:12:15.312 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +05-Apr-2017 13:12:15.313 using default UDP/IPv4 port range: [49152, 65535] +05-Apr-2017 13:12:15.313 using default UDP/IPv6 port range: [49152, 65535] +05-Apr-2017 13:12:15.314 listening on IPv4 interface lo0, 127.0.0.1#5400 +05-Apr-2017 13:12:15.316 generating session key for dynamic DNS +05-Apr-2017 13:12:15.317 could not open file '/opt/local/var/run/named/session.key': Permission denied +05-Apr-2017 13:12:15.317 could not create /opt/local/var/run/named/session.key +05-Apr-2017 13:12:15.317 failed to generate session key for dynamic DNS: permission denied +05-Apr-2017 13:12:15.318 sizing zone task pool based on 1 zones +05-Apr-2017 13:12:15.319 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 13:12:15.325 set up managed keys zone for view _default, file 'managed-keys.bind' +05-Apr-2017 13:12:15.325 automatic empty zone: 10.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 16.172.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 17.172.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 18.172.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 19.172.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 20.172.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 21.172.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 22.172.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 23.172.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 24.172.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 25.172.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 26.172.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 27.172.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 28.172.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 29.172.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 30.172.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 31.172.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 168.192.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 64.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 65.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 66.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 67.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 68.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 69.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 70.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 71.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 72.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 73.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 74.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 75.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 76.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 77.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 78.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 79.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 80.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 81.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 82.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 83.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.325 automatic empty zone: 84.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 85.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 86.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 87.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 88.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 89.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 90.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 91.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 92.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 93.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 94.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 95.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 96.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 97.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 98.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 99.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 100.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 101.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 102.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 103.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 104.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 105.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 106.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 107.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 108.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 109.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 110.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 111.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 112.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 113.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 114.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 115.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 116.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 117.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 118.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 119.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 120.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 121.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 122.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 123.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 124.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 125.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 126.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 127.100.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 0.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 127.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 254.169.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 2.0.192.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 100.51.198.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 113.0.203.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: D.F.IP6.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 8.E.F.IP6.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 9.E.F.IP6.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: A.E.F.IP6.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: B.E.F.IP6.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +05-Apr-2017 13:12:15.326 automatic empty zone: EMPTY.AS112.ARPA +05-Apr-2017 13:12:15.326 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 13:12:15.331 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 13:12:15.331 couldn't add command channel 127.0.0.1#953: file not found +05-Apr-2017 13:12:15.331 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 13:12:15.332 couldn't add command channel ::1#953: file not found +05-Apr-2017 13:12:15.332 not using config file logging statement for logging due to -g option +05-Apr-2017 13:12:15.332 managed-keys-zone: loaded serial 0 +05-Apr-2017 13:12:15.367 zone local/IN: loaded serial 2 +05-Apr-2017 13:12:15.367 all zones loaded +05-Apr-2017 13:12:15.367 running +05-Apr-2017 13:12:20.396 shutting down +05-Apr-2017 13:12:20.397 no longer listening on 127.0.0.1#5400 +05-Apr-2017 13:12:20.467 exiting +=== Log Marked @ 2017-04-05 13:19:06 +1200 [63515] === +05-Apr-2017 13:19:06.791 starting BIND 9.11.0-P3 +05-Apr-2017 13:19:06.791 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +05-Apr-2017 13:19:06.791 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +05-Apr-2017 13:19:06.791 running as: named -c named.conf -f -p 5400 -g +05-Apr-2017 13:19:06.791 ---------------------------------------------------- +05-Apr-2017 13:19:06.791 BIND 9 is maintained by Internet Systems Consortium, +05-Apr-2017 13:19:06.791 Inc. (ISC), a non-profit 501(c)(3) public-benefit +05-Apr-2017 13:19:06.791 corporation. Support and training for BIND 9 are +05-Apr-2017 13:19:06.791 available at https://www.isc.org/support +05-Apr-2017 13:19:06.791 ---------------------------------------------------- +05-Apr-2017 13:19:06.791 found 8 CPUs, using 8 worker threads +05-Apr-2017 13:19:06.791 using 7 UDP listeners per interface +05-Apr-2017 13:19:06.791 using up to 4096 sockets +05-Apr-2017 13:19:06.795 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +05-Apr-2017 13:19:06.795 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +05-Apr-2017 13:19:06.796 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +05-Apr-2017 13:19:06.796 using default UDP/IPv4 port range: [49152, 65535] +05-Apr-2017 13:19:06.796 using default UDP/IPv6 port range: [49152, 65535] +05-Apr-2017 13:19:06.797 listening on IPv4 interface lo0, 127.0.0.1#5400 +05-Apr-2017 13:19:06.799 generating session key for dynamic DNS +05-Apr-2017 13:19:06.799 could not open file '/opt/local/var/run/named/session.key': Permission denied +05-Apr-2017 13:19:06.799 could not create /opt/local/var/run/named/session.key +05-Apr-2017 13:19:06.799 failed to generate session key for dynamic DNS: permission denied +05-Apr-2017 13:19:06.799 sizing zone task pool based on 1 zones +05-Apr-2017 13:19:06.799 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 13:19:06.801 set up managed keys zone for view _default, file 'managed-keys.bind' +05-Apr-2017 13:19:06.802 automatic empty zone: 10.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 16.172.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 17.172.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 18.172.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 19.172.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 20.172.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 21.172.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 22.172.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 23.172.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 24.172.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 25.172.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 26.172.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 27.172.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 28.172.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 29.172.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 30.172.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 31.172.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 168.192.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 64.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 65.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 66.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 67.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 68.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 69.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 70.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 71.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 72.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 73.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 74.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 75.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 76.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 77.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 78.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 79.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 80.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 81.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 82.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 83.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 84.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 85.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 86.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 87.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 88.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 89.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 90.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 91.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 92.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 93.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 94.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 95.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 96.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 97.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 98.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 99.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 100.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 101.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 102.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 103.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 104.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 105.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 106.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 107.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 108.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 109.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 110.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 111.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 112.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 113.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 114.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 115.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 116.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 117.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 118.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 119.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 120.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 121.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 122.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 123.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 124.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 125.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 126.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 127.100.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 0.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 127.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 254.169.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 2.0.192.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 100.51.198.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 113.0.203.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 13:19:06.802 automatic empty zone: D.F.IP6.ARPA +05-Apr-2017 13:19:06.803 automatic empty zone: 8.E.F.IP6.ARPA +05-Apr-2017 13:19:06.803 automatic empty zone: 9.E.F.IP6.ARPA +05-Apr-2017 13:19:06.803 automatic empty zone: A.E.F.IP6.ARPA +05-Apr-2017 13:19:06.803 automatic empty zone: B.E.F.IP6.ARPA +05-Apr-2017 13:19:06.803 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +05-Apr-2017 13:19:06.803 automatic empty zone: EMPTY.AS112.ARPA +05-Apr-2017 13:19:06.803 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 13:19:06.805 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 13:19:06.805 couldn't add command channel 127.0.0.1#953: file not found +05-Apr-2017 13:19:06.805 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 13:19:06.805 couldn't add command channel ::1#953: file not found +05-Apr-2017 13:19:06.805 not using config file logging statement for logging due to -g option +05-Apr-2017 13:19:06.806 managed-keys-zone: loaded serial 0 +05-Apr-2017 13:19:06.845 zone local/IN: loaded serial 2 +05-Apr-2017 13:19:06.845 all zones loaded +05-Apr-2017 13:19:06.845 running +05-Apr-2017 13:19:11.905 shutting down +05-Apr-2017 13:19:11.906 no longer listening on 127.0.0.1#5400 +05-Apr-2017 13:19:11.996 exiting +=== Log Marked @ 2017-04-05 13:21:44 +1200 [63537] === +05-Apr-2017 13:21:44.127 starting BIND 9.11.0-P3 +05-Apr-2017 13:21:44.127 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +05-Apr-2017 13:21:44.127 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +05-Apr-2017 13:21:44.127 running as: named -c named.conf -f -p 5400 -g +05-Apr-2017 13:21:44.127 ---------------------------------------------------- +05-Apr-2017 13:21:44.127 BIND 9 is maintained by Internet Systems Consortium, +05-Apr-2017 13:21:44.127 Inc. (ISC), a non-profit 501(c)(3) public-benefit +05-Apr-2017 13:21:44.127 corporation. Support and training for BIND 9 are +05-Apr-2017 13:21:44.127 available at https://www.isc.org/support +05-Apr-2017 13:21:44.127 ---------------------------------------------------- +05-Apr-2017 13:21:44.127 found 8 CPUs, using 8 worker threads +05-Apr-2017 13:21:44.127 using 7 UDP listeners per interface +05-Apr-2017 13:21:44.127 using up to 4096 sockets +05-Apr-2017 13:21:44.132 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +05-Apr-2017 13:21:44.132 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +05-Apr-2017 13:21:44.132 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +05-Apr-2017 13:21:44.132 using default UDP/IPv4 port range: [49152, 65535] +05-Apr-2017 13:21:44.132 using default UDP/IPv6 port range: [49152, 65535] +05-Apr-2017 13:21:44.133 listening on IPv4 interface lo0, 127.0.0.1#5400 +05-Apr-2017 13:21:44.135 generating session key for dynamic DNS +05-Apr-2017 13:21:44.135 could not open file '/opt/local/var/run/named/session.key': Permission denied +05-Apr-2017 13:21:44.135 could not create /opt/local/var/run/named/session.key +05-Apr-2017 13:21:44.135 failed to generate session key for dynamic DNS: permission denied +05-Apr-2017 13:21:44.135 sizing zone task pool based on 1 zones +05-Apr-2017 13:21:44.135 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 13:21:44.137 set up managed keys zone for view _default, file 'managed-keys.bind' +05-Apr-2017 13:21:44.137 automatic empty zone: 10.IN-ADDR.ARPA +05-Apr-2017 13:21:44.137 automatic empty zone: 16.172.IN-ADDR.ARPA +05-Apr-2017 13:21:44.137 automatic empty zone: 17.172.IN-ADDR.ARPA +05-Apr-2017 13:21:44.137 automatic empty zone: 18.172.IN-ADDR.ARPA +05-Apr-2017 13:21:44.137 automatic empty zone: 19.172.IN-ADDR.ARPA +05-Apr-2017 13:21:44.137 automatic empty zone: 20.172.IN-ADDR.ARPA +05-Apr-2017 13:21:44.137 automatic empty zone: 21.172.IN-ADDR.ARPA +05-Apr-2017 13:21:44.137 automatic empty zone: 22.172.IN-ADDR.ARPA +05-Apr-2017 13:21:44.137 automatic empty zone: 23.172.IN-ADDR.ARPA +05-Apr-2017 13:21:44.137 automatic empty zone: 24.172.IN-ADDR.ARPA +05-Apr-2017 13:21:44.137 automatic empty zone: 25.172.IN-ADDR.ARPA +05-Apr-2017 13:21:44.137 automatic empty zone: 26.172.IN-ADDR.ARPA +05-Apr-2017 13:21:44.137 automatic empty zone: 27.172.IN-ADDR.ARPA +05-Apr-2017 13:21:44.137 automatic empty zone: 28.172.IN-ADDR.ARPA +05-Apr-2017 13:21:44.137 automatic empty zone: 29.172.IN-ADDR.ARPA +05-Apr-2017 13:21:44.137 automatic empty zone: 30.172.IN-ADDR.ARPA +05-Apr-2017 13:21:44.137 automatic empty zone: 31.172.IN-ADDR.ARPA +05-Apr-2017 13:21:44.137 automatic empty zone: 168.192.IN-ADDR.ARPA +05-Apr-2017 13:21:44.137 automatic empty zone: 64.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.137 automatic empty zone: 65.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.137 automatic empty zone: 66.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 67.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 68.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 69.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 70.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 71.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 72.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 73.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 74.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 75.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 76.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 77.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 78.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 79.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 80.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 81.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 82.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 83.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 84.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 85.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 86.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 87.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 88.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 89.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 90.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 91.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 92.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 93.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 94.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 95.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 96.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 97.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 98.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 99.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 100.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 101.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 102.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 103.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 104.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 105.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 106.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 107.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 108.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 109.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 110.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 111.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 112.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 113.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 114.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 115.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 116.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 117.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 118.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 119.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 120.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 121.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 122.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 123.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 124.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 125.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 126.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 127.100.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 0.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 127.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 254.169.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 2.0.192.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 100.51.198.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 113.0.203.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: D.F.IP6.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 8.E.F.IP6.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 9.E.F.IP6.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: A.E.F.IP6.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: B.E.F.IP6.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +05-Apr-2017 13:21:44.138 automatic empty zone: EMPTY.AS112.ARPA +05-Apr-2017 13:21:44.138 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 13:21:44.141 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 13:21:44.141 couldn't add command channel 127.0.0.1#953: file not found +05-Apr-2017 13:21:44.141 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 13:21:44.141 couldn't add command channel ::1#953: file not found +05-Apr-2017 13:21:44.141 not using config file logging statement for logging due to -g option +05-Apr-2017 13:21:44.141 managed-keys-zone: loaded serial 0 +05-Apr-2017 13:21:44.174 zone local/IN: loaded serial 2 +05-Apr-2017 13:21:44.174 all zones loaded +05-Apr-2017 13:21:44.174 running +05-Apr-2017 13:21:49.239 shutting down +05-Apr-2017 13:21:49.240 no longer listening on 127.0.0.1#5400 +05-Apr-2017 13:21:49.304 exiting +=== Log Marked @ 2017-04-05 13:39:25 +1200 [63601] === +05-Apr-2017 13:39:25.646 starting BIND 9.11.0-P3 +05-Apr-2017 13:39:25.647 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +05-Apr-2017 13:39:25.647 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +05-Apr-2017 13:39:25.647 running as: named -c named.conf -f -p 5400 -g +05-Apr-2017 13:39:25.647 ---------------------------------------------------- +05-Apr-2017 13:39:25.647 BIND 9 is maintained by Internet Systems Consortium, +05-Apr-2017 13:39:25.647 Inc. (ISC), a non-profit 501(c)(3) public-benefit +05-Apr-2017 13:39:25.647 corporation. Support and training for BIND 9 are +05-Apr-2017 13:39:25.647 available at https://www.isc.org/support +05-Apr-2017 13:39:25.647 ---------------------------------------------------- +05-Apr-2017 13:39:25.647 found 8 CPUs, using 8 worker threads +05-Apr-2017 13:39:25.647 using 7 UDP listeners per interface +05-Apr-2017 13:39:25.647 using up to 4096 sockets +05-Apr-2017 13:39:25.665 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +05-Apr-2017 13:39:25.665 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +05-Apr-2017 13:39:25.666 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +05-Apr-2017 13:39:25.667 using default UDP/IPv4 port range: [49152, 65535] +05-Apr-2017 13:39:25.667 using default UDP/IPv6 port range: [49152, 65535] +05-Apr-2017 13:39:25.667 listening on IPv4 interface lo0, 127.0.0.1#5400 +05-Apr-2017 13:39:25.669 generating session key for dynamic DNS +05-Apr-2017 13:39:25.670 could not open file '/opt/local/var/run/named/session.key': Permission denied +05-Apr-2017 13:39:25.670 could not create /opt/local/var/run/named/session.key +05-Apr-2017 13:39:25.670 failed to generate session key for dynamic DNS: permission denied +05-Apr-2017 13:39:25.670 sizing zone task pool based on 1 zones +05-Apr-2017 13:39:25.672 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 13:39:25.675 set up managed keys zone for view _default, file 'managed-keys.bind' +05-Apr-2017 13:39:25.675 automatic empty zone: 10.IN-ADDR.ARPA +05-Apr-2017 13:39:25.675 automatic empty zone: 16.172.IN-ADDR.ARPA +05-Apr-2017 13:39:25.675 automatic empty zone: 17.172.IN-ADDR.ARPA +05-Apr-2017 13:39:25.675 automatic empty zone: 18.172.IN-ADDR.ARPA +05-Apr-2017 13:39:25.675 automatic empty zone: 19.172.IN-ADDR.ARPA +05-Apr-2017 13:39:25.675 automatic empty zone: 20.172.IN-ADDR.ARPA +05-Apr-2017 13:39:25.675 automatic empty zone: 21.172.IN-ADDR.ARPA +05-Apr-2017 13:39:25.675 automatic empty zone: 22.172.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 23.172.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 24.172.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 25.172.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 26.172.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 27.172.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 28.172.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 29.172.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 30.172.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 31.172.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 168.192.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 64.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 65.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 66.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 67.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 68.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 69.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 70.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 71.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 72.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 73.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 74.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 75.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 76.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 77.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 78.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 79.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 80.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 81.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 82.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 83.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 84.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 85.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 86.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 87.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 88.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 89.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 90.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 91.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 92.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 93.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 94.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 95.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 96.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 97.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 98.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 99.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 100.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 101.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 102.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 103.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 104.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 105.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 106.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 107.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 108.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 109.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 110.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 111.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 112.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 113.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 114.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 115.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 116.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 117.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 118.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 119.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 120.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 121.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 122.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 123.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 124.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 125.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 126.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 127.100.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 0.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 127.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 254.169.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 2.0.192.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 100.51.198.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 113.0.203.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: D.F.IP6.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 8.E.F.IP6.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 9.E.F.IP6.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: A.E.F.IP6.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: B.E.F.IP6.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +05-Apr-2017 13:39:25.676 automatic empty zone: EMPTY.AS112.ARPA +05-Apr-2017 13:39:25.677 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 13:39:25.679 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 13:39:25.679 couldn't add command channel 127.0.0.1#953: file not found +05-Apr-2017 13:39:25.679 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 13:39:25.679 couldn't add command channel ::1#953: file not found +05-Apr-2017 13:39:25.679 not using config file logging statement for logging due to -g option +05-Apr-2017 13:39:25.679 managed-keys-zone: loaded serial 0 +05-Apr-2017 13:39:25.712 zone local/IN: loaded serial 2 +05-Apr-2017 13:39:25.712 all zones loaded +05-Apr-2017 13:39:25.713 running +05-Apr-2017 13:39:30.744 shutting down +05-Apr-2017 13:39:30.744 no longer listening on 127.0.0.1#5400 +05-Apr-2017 13:39:30.812 exiting +=== Log Marked @ 2017-04-05 13:45:45 +1200 [63635] === +05-Apr-2017 13:45:45.343 starting BIND 9.11.0-P3 +05-Apr-2017 13:45:45.343 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +05-Apr-2017 13:45:45.343 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +05-Apr-2017 13:45:45.343 running as: named -c named.conf -f -p 5400 -g +05-Apr-2017 13:45:45.343 ---------------------------------------------------- +05-Apr-2017 13:45:45.343 BIND 9 is maintained by Internet Systems Consortium, +05-Apr-2017 13:45:45.343 Inc. (ISC), a non-profit 501(c)(3) public-benefit +05-Apr-2017 13:45:45.343 corporation. Support and training for BIND 9 are +05-Apr-2017 13:45:45.343 available at https://www.isc.org/support +05-Apr-2017 13:45:45.343 ---------------------------------------------------- +05-Apr-2017 13:45:45.343 found 8 CPUs, using 8 worker threads +05-Apr-2017 13:45:45.343 using 7 UDP listeners per interface +05-Apr-2017 13:45:45.344 using up to 4096 sockets +05-Apr-2017 13:45:45.348 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +05-Apr-2017 13:45:45.348 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +05-Apr-2017 13:45:45.348 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +05-Apr-2017 13:45:45.348 using default UDP/IPv4 port range: [49152, 65535] +05-Apr-2017 13:45:45.348 using default UDP/IPv6 port range: [49152, 65535] +05-Apr-2017 13:45:45.348 listening on IPv4 interface lo0, 127.0.0.1#5400 +05-Apr-2017 13:45:45.351 generating session key for dynamic DNS +05-Apr-2017 13:45:45.351 could not open file '/opt/local/var/run/named/session.key': Permission denied +05-Apr-2017 13:45:45.351 could not create /opt/local/var/run/named/session.key +05-Apr-2017 13:45:45.351 failed to generate session key for dynamic DNS: permission denied +05-Apr-2017 13:45:45.351 sizing zone task pool based on 1 zones +05-Apr-2017 13:45:45.351 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 13:45:45.353 set up managed keys zone for view _default, file 'managed-keys.bind' +05-Apr-2017 13:45:45.354 automatic empty zone: 10.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 16.172.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 17.172.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 18.172.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 19.172.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 20.172.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 21.172.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 22.172.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 23.172.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 24.172.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 25.172.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 26.172.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 27.172.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 28.172.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 29.172.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 30.172.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 31.172.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 168.192.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 64.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 65.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 66.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 67.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 68.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 69.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 70.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 71.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 72.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 73.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 74.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 75.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 76.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 77.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 78.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 79.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 80.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 81.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 82.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 83.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 84.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 85.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 86.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 87.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 88.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 89.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 90.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 91.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 92.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 93.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 94.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 95.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 96.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 97.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 98.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 99.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 100.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 101.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 102.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 103.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 104.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 105.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 106.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 107.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 108.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 109.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 110.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 111.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 112.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 113.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 114.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 115.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 116.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 117.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 118.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 119.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 120.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 121.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 122.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 123.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 124.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 125.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 126.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 127.100.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 0.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 127.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 254.169.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 2.0.192.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 100.51.198.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 113.0.203.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: D.F.IP6.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 8.E.F.IP6.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 9.E.F.IP6.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: A.E.F.IP6.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: B.E.F.IP6.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +05-Apr-2017 13:45:45.354 automatic empty zone: EMPTY.AS112.ARPA +05-Apr-2017 13:45:45.355 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 13:45:45.357 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 13:45:45.357 couldn't add command channel 127.0.0.1#953: file not found +05-Apr-2017 13:45:45.357 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 13:45:45.357 couldn't add command channel ::1#953: file not found +05-Apr-2017 13:45:45.357 not using config file logging statement for logging due to -g option +05-Apr-2017 13:45:45.357 managed-keys-zone: loaded serial 0 +05-Apr-2017 13:45:45.387 zone local/IN: loaded serial 2 +05-Apr-2017 13:45:45.387 all zones loaded +05-Apr-2017 13:45:45.387 running +05-Apr-2017 13:45:50.457 shutting down +05-Apr-2017 13:45:50.457 no longer listening on 127.0.0.1#5400 +05-Apr-2017 13:45:50.518 exiting +=== Log Marked @ 2017-04-05 13:46:18 +1200 [63647] === +05-Apr-2017 13:46:18.799 starting BIND 9.11.0-P3 +05-Apr-2017 13:46:18.799 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +05-Apr-2017 13:46:18.799 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +05-Apr-2017 13:46:18.799 running as: named -c named.conf -f -p 5400 -g +05-Apr-2017 13:46:18.799 ---------------------------------------------------- +05-Apr-2017 13:46:18.799 BIND 9 is maintained by Internet Systems Consortium, +05-Apr-2017 13:46:18.799 Inc. (ISC), a non-profit 501(c)(3) public-benefit +05-Apr-2017 13:46:18.799 corporation. Support and training for BIND 9 are +05-Apr-2017 13:46:18.799 available at https://www.isc.org/support +05-Apr-2017 13:46:18.799 ---------------------------------------------------- +05-Apr-2017 13:46:18.799 found 8 CPUs, using 8 worker threads +05-Apr-2017 13:46:18.799 using 7 UDP listeners per interface +05-Apr-2017 13:46:18.799 using up to 4096 sockets +05-Apr-2017 13:46:18.803 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +05-Apr-2017 13:46:18.803 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +05-Apr-2017 13:46:18.803 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +05-Apr-2017 13:46:18.803 using default UDP/IPv4 port range: [49152, 65535] +05-Apr-2017 13:46:18.803 using default UDP/IPv6 port range: [49152, 65535] +05-Apr-2017 13:46:18.804 listening on IPv4 interface lo0, 127.0.0.1#5400 +05-Apr-2017 13:46:18.806 generating session key for dynamic DNS +05-Apr-2017 13:46:18.806 could not open file '/opt/local/var/run/named/session.key': Permission denied +05-Apr-2017 13:46:18.806 could not create /opt/local/var/run/named/session.key +05-Apr-2017 13:46:18.806 failed to generate session key for dynamic DNS: permission denied +05-Apr-2017 13:46:18.806 sizing zone task pool based on 1 zones +05-Apr-2017 13:46:18.806 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 13:46:18.809 set up managed keys zone for view _default, file 'managed-keys.bind' +05-Apr-2017 13:46:18.809 automatic empty zone: 10.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 16.172.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 17.172.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 18.172.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 19.172.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 20.172.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 21.172.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 22.172.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 23.172.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 24.172.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 25.172.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 26.172.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 27.172.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 28.172.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 29.172.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 30.172.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 31.172.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 168.192.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 64.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 65.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 66.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 67.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 68.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 69.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 70.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 71.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 72.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 73.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 74.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 75.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 76.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 77.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 78.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 79.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 80.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 81.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 82.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 83.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 84.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 85.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 86.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 87.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 88.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 89.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 90.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 91.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 92.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 93.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 94.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 95.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 96.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 97.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 98.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.809 automatic empty zone: 99.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 100.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 101.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 102.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 103.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 104.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 105.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 106.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 107.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 108.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 109.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 110.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 111.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 112.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 113.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 114.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 115.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 116.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 117.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 118.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 119.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 120.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 121.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 122.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 123.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 124.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 125.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 126.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 127.100.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 0.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 127.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 254.169.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 2.0.192.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 100.51.198.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 113.0.203.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: D.F.IP6.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 8.E.F.IP6.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 9.E.F.IP6.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: A.E.F.IP6.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: B.E.F.IP6.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +05-Apr-2017 13:46:18.810 automatic empty zone: EMPTY.AS112.ARPA +05-Apr-2017 13:46:18.810 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 13:46:18.813 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 13:46:18.813 couldn't add command channel 127.0.0.1#953: file not found +05-Apr-2017 13:46:18.813 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 13:46:18.813 couldn't add command channel ::1#953: file not found +05-Apr-2017 13:46:18.813 not using config file logging statement for logging due to -g option +05-Apr-2017 13:46:18.813 managed-keys-zone: loaded serial 0 +05-Apr-2017 13:46:18.841 zone local/IN: loaded serial 2 +05-Apr-2017 13:46:18.841 all zones loaded +05-Apr-2017 13:46:18.842 running +05-Apr-2017 13:46:23.910 shutting down +05-Apr-2017 13:46:23.910 no longer listening on 127.0.0.1#5400 +05-Apr-2017 13:46:23.990 exiting +=== Log Marked @ 2017-04-05 14:04:32 +1200 [63855] === +05-Apr-2017 14:04:32.589 starting BIND 9.11.0-P3 +05-Apr-2017 14:04:32.589 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +05-Apr-2017 14:04:32.589 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +05-Apr-2017 14:04:32.589 running as: named -c named.conf -f -p 5400 -g +05-Apr-2017 14:04:32.589 ---------------------------------------------------- +05-Apr-2017 14:04:32.589 BIND 9 is maintained by Internet Systems Consortium, +05-Apr-2017 14:04:32.589 Inc. (ISC), a non-profit 501(c)(3) public-benefit +05-Apr-2017 14:04:32.589 corporation. Support and training for BIND 9 are +05-Apr-2017 14:04:32.589 available at https://www.isc.org/support +05-Apr-2017 14:04:32.589 ---------------------------------------------------- +05-Apr-2017 14:04:32.589 found 8 CPUs, using 8 worker threads +05-Apr-2017 14:04:32.589 using 7 UDP listeners per interface +05-Apr-2017 14:04:32.590 using up to 4096 sockets +05-Apr-2017 14:04:32.609 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +05-Apr-2017 14:04:32.609 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +05-Apr-2017 14:04:32.609 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +05-Apr-2017 14:04:32.610 using default UDP/IPv4 port range: [49152, 65535] +05-Apr-2017 14:04:32.610 using default UDP/IPv6 port range: [49152, 65535] +05-Apr-2017 14:04:32.611 listening on IPv4 interface lo0, 127.0.0.1#5400 +05-Apr-2017 14:04:32.613 generating session key for dynamic DNS +05-Apr-2017 14:04:32.613 could not open file '/opt/local/var/run/named/session.key': Permission denied +05-Apr-2017 14:04:32.613 could not create /opt/local/var/run/named/session.key +05-Apr-2017 14:04:32.613 failed to generate session key for dynamic DNS: permission denied +05-Apr-2017 14:04:32.614 sizing zone task pool based on 1 zones +05-Apr-2017 14:04:32.615 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 14:04:32.619 set up managed keys zone for view _default, file 'managed-keys.bind' +05-Apr-2017 14:04:32.619 automatic empty zone: 10.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 16.172.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 17.172.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 18.172.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 19.172.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 20.172.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 21.172.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 22.172.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 23.172.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 24.172.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 25.172.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 26.172.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 27.172.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 28.172.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 29.172.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 30.172.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 31.172.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 168.192.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 64.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 65.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 66.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 67.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 68.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 69.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 70.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 71.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 72.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 73.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 74.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 75.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 76.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 77.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 78.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 79.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 80.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 81.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 82.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 83.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 84.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 85.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 86.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 87.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 88.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 89.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 90.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 91.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 92.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 93.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 94.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 95.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.619 automatic empty zone: 96.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 97.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 98.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 99.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 100.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 101.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 102.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 103.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 104.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 105.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 106.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 107.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 108.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 109.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 110.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 111.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 112.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 113.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 114.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 115.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 116.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 117.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 118.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 119.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 120.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 121.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 122.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 123.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 124.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 125.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 126.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 127.100.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 0.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 127.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 254.169.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 2.0.192.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 100.51.198.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 113.0.203.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: D.F.IP6.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 8.E.F.IP6.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 9.E.F.IP6.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: A.E.F.IP6.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: B.E.F.IP6.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +05-Apr-2017 14:04:32.620 automatic empty zone: EMPTY.AS112.ARPA +05-Apr-2017 14:04:32.620 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 14:04:32.624 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 14:04:32.624 couldn't add command channel 127.0.0.1#953: file not found +05-Apr-2017 14:04:32.624 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 14:04:32.624 couldn't add command channel ::1#953: file not found +05-Apr-2017 14:04:32.624 not using config file logging statement for logging due to -g option +05-Apr-2017 14:04:32.625 managed-keys-zone: loaded serial 0 +05-Apr-2017 14:04:32.650 zone local/IN: loaded serial 2 +05-Apr-2017 14:04:32.650 all zones loaded +05-Apr-2017 14:04:32.651 running +05-Apr-2017 14:04:37.687 shutting down +05-Apr-2017 14:04:37.688 no longer listening on 127.0.0.1#5400 +05-Apr-2017 14:04:37.756 exiting +=== Log Marked @ 2017-04-05 14:06:26 +1200 [63870] === +05-Apr-2017 14:06:26.314 starting BIND 9.11.0-P3 +05-Apr-2017 14:06:26.314 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +05-Apr-2017 14:06:26.314 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +05-Apr-2017 14:06:26.314 running as: named -c named.conf -f -p 5400 -g +05-Apr-2017 14:06:26.314 ---------------------------------------------------- +05-Apr-2017 14:06:26.314 BIND 9 is maintained by Internet Systems Consortium, +05-Apr-2017 14:06:26.314 Inc. (ISC), a non-profit 501(c)(3) public-benefit +05-Apr-2017 14:06:26.314 corporation. Support and training for BIND 9 are +05-Apr-2017 14:06:26.314 available at https://www.isc.org/support +05-Apr-2017 14:06:26.314 ---------------------------------------------------- +05-Apr-2017 14:06:26.314 found 8 CPUs, using 8 worker threads +05-Apr-2017 14:06:26.314 using 7 UDP listeners per interface +05-Apr-2017 14:06:26.314 using up to 4096 sockets +05-Apr-2017 14:06:26.318 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +05-Apr-2017 14:06:26.318 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +05-Apr-2017 14:06:26.318 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +05-Apr-2017 14:06:26.318 using default UDP/IPv4 port range: [49152, 65535] +05-Apr-2017 14:06:26.319 using default UDP/IPv6 port range: [49152, 65535] +05-Apr-2017 14:06:26.319 listening on IPv4 interface lo0, 127.0.0.1#5400 +05-Apr-2017 14:06:26.321 generating session key for dynamic DNS +05-Apr-2017 14:06:26.321 could not open file '/opt/local/var/run/named/session.key': Permission denied +05-Apr-2017 14:06:26.321 could not create /opt/local/var/run/named/session.key +05-Apr-2017 14:06:26.321 failed to generate session key for dynamic DNS: permission denied +05-Apr-2017 14:06:26.321 sizing zone task pool based on 1 zones +05-Apr-2017 14:06:26.321 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 14:06:26.324 set up managed keys zone for view _default, file 'managed-keys.bind' +05-Apr-2017 14:06:26.324 automatic empty zone: 10.IN-ADDR.ARPA +05-Apr-2017 14:06:26.324 automatic empty zone: 16.172.IN-ADDR.ARPA +05-Apr-2017 14:06:26.324 automatic empty zone: 17.172.IN-ADDR.ARPA +05-Apr-2017 14:06:26.324 automatic empty zone: 18.172.IN-ADDR.ARPA +05-Apr-2017 14:06:26.324 automatic empty zone: 19.172.IN-ADDR.ARPA +05-Apr-2017 14:06:26.324 automatic empty zone: 20.172.IN-ADDR.ARPA +05-Apr-2017 14:06:26.324 automatic empty zone: 21.172.IN-ADDR.ARPA +05-Apr-2017 14:06:26.324 automatic empty zone: 22.172.IN-ADDR.ARPA +05-Apr-2017 14:06:26.324 automatic empty zone: 23.172.IN-ADDR.ARPA +05-Apr-2017 14:06:26.324 automatic empty zone: 24.172.IN-ADDR.ARPA +05-Apr-2017 14:06:26.324 automatic empty zone: 25.172.IN-ADDR.ARPA +05-Apr-2017 14:06:26.324 automatic empty zone: 26.172.IN-ADDR.ARPA +05-Apr-2017 14:06:26.324 automatic empty zone: 27.172.IN-ADDR.ARPA +05-Apr-2017 14:06:26.324 automatic empty zone: 28.172.IN-ADDR.ARPA +05-Apr-2017 14:06:26.324 automatic empty zone: 29.172.IN-ADDR.ARPA +05-Apr-2017 14:06:26.324 automatic empty zone: 30.172.IN-ADDR.ARPA +05-Apr-2017 14:06:26.324 automatic empty zone: 31.172.IN-ADDR.ARPA +05-Apr-2017 14:06:26.324 automatic empty zone: 168.192.IN-ADDR.ARPA +05-Apr-2017 14:06:26.324 automatic empty zone: 64.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 65.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 66.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 67.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 68.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 69.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 70.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 71.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 72.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 73.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 74.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 75.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 76.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 77.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 78.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 79.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 80.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 81.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 82.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 83.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 84.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 85.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 86.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 87.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 88.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 89.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 90.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 91.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 92.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 93.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 94.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 95.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 96.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 97.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 98.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 99.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 100.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 101.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 102.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 103.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 104.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 105.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 106.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 107.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 108.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 109.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 110.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 111.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 112.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 113.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 114.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 115.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 116.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 117.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 118.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 119.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 120.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 121.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 122.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.325 automatic empty zone: 123.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.326 automatic empty zone: 124.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.326 automatic empty zone: 125.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.326 automatic empty zone: 126.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.326 automatic empty zone: 127.100.IN-ADDR.ARPA +05-Apr-2017 14:06:26.326 automatic empty zone: 0.IN-ADDR.ARPA +05-Apr-2017 14:06:26.326 automatic empty zone: 127.IN-ADDR.ARPA +05-Apr-2017 14:06:26.326 automatic empty zone: 254.169.IN-ADDR.ARPA +05-Apr-2017 14:06:26.326 automatic empty zone: 2.0.192.IN-ADDR.ARPA +05-Apr-2017 14:06:26.326 automatic empty zone: 100.51.198.IN-ADDR.ARPA +05-Apr-2017 14:06:26.326 automatic empty zone: 113.0.203.IN-ADDR.ARPA +05-Apr-2017 14:06:26.326 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +05-Apr-2017 14:06:26.326 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 14:06:26.326 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 14:06:26.326 automatic empty zone: D.F.IP6.ARPA +05-Apr-2017 14:06:26.326 automatic empty zone: 8.E.F.IP6.ARPA +05-Apr-2017 14:06:26.326 automatic empty zone: 9.E.F.IP6.ARPA +05-Apr-2017 14:06:26.326 automatic empty zone: A.E.F.IP6.ARPA +05-Apr-2017 14:06:26.326 automatic empty zone: B.E.F.IP6.ARPA +05-Apr-2017 14:06:26.326 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +05-Apr-2017 14:06:26.326 automatic empty zone: EMPTY.AS112.ARPA +05-Apr-2017 14:06:26.326 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 14:06:26.329 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 14:06:26.329 couldn't add command channel 127.0.0.1#953: file not found +05-Apr-2017 14:06:26.329 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 14:06:26.329 couldn't add command channel ::1#953: file not found +05-Apr-2017 14:06:26.329 not using config file logging statement for logging due to -g option +05-Apr-2017 14:06:26.330 managed-keys-zone: loaded serial 0 +05-Apr-2017 14:06:26.362 zone local/IN: loaded serial 2 +05-Apr-2017 14:06:26.362 all zones loaded +05-Apr-2017 14:06:26.362 running +05-Apr-2017 14:06:31.425 shutting down +05-Apr-2017 14:06:31.425 no longer listening on 127.0.0.1#5400 +05-Apr-2017 14:06:31.510 exiting +=== Log Marked @ 2017-04-05 14:16:35 +1200 [63903] === +05-Apr-2017 14:16:35.475 starting BIND 9.11.0-P3 +05-Apr-2017 14:16:35.475 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +05-Apr-2017 14:16:35.475 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +05-Apr-2017 14:16:35.475 running as: named -c named.conf -f -p 5400 -g +05-Apr-2017 14:16:35.475 ---------------------------------------------------- +05-Apr-2017 14:16:35.475 BIND 9 is maintained by Internet Systems Consortium, +05-Apr-2017 14:16:35.475 Inc. (ISC), a non-profit 501(c)(3) public-benefit +05-Apr-2017 14:16:35.475 corporation. Support and training for BIND 9 are +05-Apr-2017 14:16:35.475 available at https://www.isc.org/support +05-Apr-2017 14:16:35.475 ---------------------------------------------------- +05-Apr-2017 14:16:35.475 found 8 CPUs, using 8 worker threads +05-Apr-2017 14:16:35.475 using 7 UDP listeners per interface +05-Apr-2017 14:16:35.476 using up to 4096 sockets +05-Apr-2017 14:16:35.480 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +05-Apr-2017 14:16:35.480 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +05-Apr-2017 14:16:35.480 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +05-Apr-2017 14:16:35.480 using default UDP/IPv4 port range: [49152, 65535] +05-Apr-2017 14:16:35.480 using default UDP/IPv6 port range: [49152, 65535] +05-Apr-2017 14:16:35.481 listening on IPv4 interface lo0, 127.0.0.1#5400 +05-Apr-2017 14:16:35.483 generating session key for dynamic DNS +05-Apr-2017 14:16:35.483 could not open file '/opt/local/var/run/named/session.key': Permission denied +05-Apr-2017 14:16:35.483 could not create /opt/local/var/run/named/session.key +05-Apr-2017 14:16:35.483 failed to generate session key for dynamic DNS: permission denied +05-Apr-2017 14:16:35.483 sizing zone task pool based on 1 zones +05-Apr-2017 14:16:35.483 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 14:16:35.485 set up managed keys zone for view _default, file 'managed-keys.bind' +05-Apr-2017 14:16:35.485 automatic empty zone: 10.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 16.172.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 17.172.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 18.172.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 19.172.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 20.172.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 21.172.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 22.172.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 23.172.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 24.172.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 25.172.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 26.172.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 27.172.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 28.172.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 29.172.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 30.172.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 31.172.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 168.192.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 64.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 65.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 66.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 67.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 68.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 69.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 70.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 71.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 72.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 73.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 74.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 75.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 76.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 77.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 78.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 79.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 80.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 81.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 82.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 83.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 84.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 85.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 86.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 87.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 88.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 89.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 90.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 91.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 92.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 93.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 94.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 95.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 96.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 97.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 98.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 99.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 100.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 101.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 102.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 103.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 104.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 105.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 106.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 107.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 108.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 109.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 110.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 111.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 112.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 113.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 114.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 115.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 116.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 117.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 118.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 119.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 120.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.486 automatic empty zone: 121.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.487 automatic empty zone: 122.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.487 automatic empty zone: 123.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.487 automatic empty zone: 124.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.487 automatic empty zone: 125.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.487 automatic empty zone: 126.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.487 automatic empty zone: 127.100.IN-ADDR.ARPA +05-Apr-2017 14:16:35.487 automatic empty zone: 0.IN-ADDR.ARPA +05-Apr-2017 14:16:35.487 automatic empty zone: 127.IN-ADDR.ARPA +05-Apr-2017 14:16:35.487 automatic empty zone: 254.169.IN-ADDR.ARPA +05-Apr-2017 14:16:35.487 automatic empty zone: 2.0.192.IN-ADDR.ARPA +05-Apr-2017 14:16:35.487 automatic empty zone: 100.51.198.IN-ADDR.ARPA +05-Apr-2017 14:16:35.487 automatic empty zone: 113.0.203.IN-ADDR.ARPA +05-Apr-2017 14:16:35.487 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +05-Apr-2017 14:16:35.487 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 14:16:35.487 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 14:16:35.487 automatic empty zone: D.F.IP6.ARPA +05-Apr-2017 14:16:35.487 automatic empty zone: 8.E.F.IP6.ARPA +05-Apr-2017 14:16:35.487 automatic empty zone: 9.E.F.IP6.ARPA +05-Apr-2017 14:16:35.487 automatic empty zone: A.E.F.IP6.ARPA +05-Apr-2017 14:16:35.487 automatic empty zone: B.E.F.IP6.ARPA +05-Apr-2017 14:16:35.487 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +05-Apr-2017 14:16:35.487 automatic empty zone: EMPTY.AS112.ARPA +05-Apr-2017 14:16:35.487 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 14:16:35.490 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 14:16:35.490 couldn't add command channel 127.0.0.1#953: file not found +05-Apr-2017 14:16:35.490 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 14:16:35.490 couldn't add command channel ::1#953: file not found +05-Apr-2017 14:16:35.490 not using config file logging statement for logging due to -g option +05-Apr-2017 14:16:35.490 managed-keys-zone: loaded serial 0 +05-Apr-2017 14:16:35.529 zone local/IN: loaded serial 2 +05-Apr-2017 14:16:35.529 all zones loaded +05-Apr-2017 14:16:35.529 running +05-Apr-2017 14:16:40.692 shutting down +05-Apr-2017 14:16:40.693 no longer listening on 127.0.0.1#5400 +05-Apr-2017 14:16:40.777 exiting +=== Log Marked @ 2017-04-05 21:36:37 +1200 [65599] === +05-Apr-2017 21:36:37.786 starting BIND 9.11.0-P3 +05-Apr-2017 21:36:37.786 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +05-Apr-2017 21:36:37.786 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +05-Apr-2017 21:36:37.786 running as: named -c named.conf -f -p 5400 -g +05-Apr-2017 21:36:37.786 ---------------------------------------------------- +05-Apr-2017 21:36:37.786 BIND 9 is maintained by Internet Systems Consortium, +05-Apr-2017 21:36:37.786 Inc. (ISC), a non-profit 501(c)(3) public-benefit +05-Apr-2017 21:36:37.786 corporation. Support and training for BIND 9 are +05-Apr-2017 21:36:37.786 available at https://www.isc.org/support +05-Apr-2017 21:36:37.786 ---------------------------------------------------- +05-Apr-2017 21:36:37.787 found 8 CPUs, using 8 worker threads +05-Apr-2017 21:36:37.787 using 7 UDP listeners per interface +05-Apr-2017 21:36:37.787 using up to 4096 sockets +05-Apr-2017 21:36:37.806 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +05-Apr-2017 21:36:37.806 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +05-Apr-2017 21:36:37.807 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +05-Apr-2017 21:36:37.808 using default UDP/IPv4 port range: [49152, 65535] +05-Apr-2017 21:36:37.808 using default UDP/IPv6 port range: [49152, 65535] +05-Apr-2017 21:36:37.809 listening on IPv4 interface lo0, 127.0.0.1#5400 +05-Apr-2017 21:36:37.811 generating session key for dynamic DNS +05-Apr-2017 21:36:37.811 could not open file '/opt/local/var/run/named/session.key': Permission denied +05-Apr-2017 21:36:37.811 could not create /opt/local/var/run/named/session.key +05-Apr-2017 21:36:37.811 failed to generate session key for dynamic DNS: permission denied +05-Apr-2017 21:36:37.813 sizing zone task pool based on 1 zones +05-Apr-2017 21:36:37.814 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 21:36:37.820 set up managed keys zone for view _default, file 'managed-keys.bind' +05-Apr-2017 21:36:37.820 automatic empty zone: 10.IN-ADDR.ARPA +05-Apr-2017 21:36:37.820 automatic empty zone: 16.172.IN-ADDR.ARPA +05-Apr-2017 21:36:37.820 automatic empty zone: 17.172.IN-ADDR.ARPA +05-Apr-2017 21:36:37.820 automatic empty zone: 18.172.IN-ADDR.ARPA +05-Apr-2017 21:36:37.820 automatic empty zone: 19.172.IN-ADDR.ARPA +05-Apr-2017 21:36:37.820 automatic empty zone: 20.172.IN-ADDR.ARPA +05-Apr-2017 21:36:37.820 automatic empty zone: 21.172.IN-ADDR.ARPA +05-Apr-2017 21:36:37.820 automatic empty zone: 22.172.IN-ADDR.ARPA +05-Apr-2017 21:36:37.820 automatic empty zone: 23.172.IN-ADDR.ARPA +05-Apr-2017 21:36:37.820 automatic empty zone: 24.172.IN-ADDR.ARPA +05-Apr-2017 21:36:37.820 automatic empty zone: 25.172.IN-ADDR.ARPA +05-Apr-2017 21:36:37.820 automatic empty zone: 26.172.IN-ADDR.ARPA +05-Apr-2017 21:36:37.820 automatic empty zone: 27.172.IN-ADDR.ARPA +05-Apr-2017 21:36:37.820 automatic empty zone: 28.172.IN-ADDR.ARPA +05-Apr-2017 21:36:37.820 automatic empty zone: 29.172.IN-ADDR.ARPA +05-Apr-2017 21:36:37.820 automatic empty zone: 30.172.IN-ADDR.ARPA +05-Apr-2017 21:36:37.820 automatic empty zone: 31.172.IN-ADDR.ARPA +05-Apr-2017 21:36:37.820 automatic empty zone: 168.192.IN-ADDR.ARPA +05-Apr-2017 21:36:37.820 automatic empty zone: 64.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.820 automatic empty zone: 65.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.820 automatic empty zone: 66.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.820 automatic empty zone: 67.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.820 automatic empty zone: 68.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 69.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 70.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 71.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 72.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 73.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 74.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 75.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 76.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 77.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 78.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 79.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 80.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 81.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 82.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 83.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 84.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 85.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 86.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 87.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 88.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 89.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 90.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 91.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 92.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 93.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 94.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 95.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 96.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 97.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 98.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 99.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 100.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 101.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 102.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 103.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 104.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 105.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 106.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 107.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 108.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 109.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 110.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 111.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 112.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 113.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 114.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 115.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 116.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 117.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 118.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 119.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 120.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 121.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 122.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 123.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 124.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 125.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 126.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 127.100.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 0.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 127.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 254.169.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 2.0.192.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 100.51.198.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 113.0.203.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: D.F.IP6.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 8.E.F.IP6.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 9.E.F.IP6.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: A.E.F.IP6.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: B.E.F.IP6.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +05-Apr-2017 21:36:37.821 automatic empty zone: EMPTY.AS112.ARPA +05-Apr-2017 21:36:37.822 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 21:36:37.825 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 21:36:37.825 couldn't add command channel 127.0.0.1#953: file not found +05-Apr-2017 21:36:37.825 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 21:36:37.825 couldn't add command channel ::1#953: file not found +05-Apr-2017 21:36:37.825 not using config file logging statement for logging due to -g option +05-Apr-2017 21:36:37.825 managed-keys-zone: loaded serial 0 +05-Apr-2017 21:36:37.856 zone local/IN: loaded serial 2 +05-Apr-2017 21:36:37.856 all zones loaded +05-Apr-2017 21:36:37.856 running +05-Apr-2017 21:37:28.118 shutting down +05-Apr-2017 21:37:28.118 no longer listening on 127.0.0.1#5400 +05-Apr-2017 21:37:28.184 exiting +=== Log Marked @ 2017-04-05 21:51:01 +1200 [65680] === +05-Apr-2017 21:51:01.224 starting BIND 9.11.0-P3 +05-Apr-2017 21:51:01.225 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +05-Apr-2017 21:51:01.225 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +05-Apr-2017 21:51:01.225 running as: named -c named.conf -f -p 5400 -g +05-Apr-2017 21:51:01.225 ---------------------------------------------------- +05-Apr-2017 21:51:01.225 BIND 9 is maintained by Internet Systems Consortium, +05-Apr-2017 21:51:01.225 Inc. (ISC), a non-profit 501(c)(3) public-benefit +05-Apr-2017 21:51:01.225 corporation. Support and training for BIND 9 are +05-Apr-2017 21:51:01.225 available at https://www.isc.org/support +05-Apr-2017 21:51:01.225 ---------------------------------------------------- +05-Apr-2017 21:51:01.225 found 8 CPUs, using 8 worker threads +05-Apr-2017 21:51:01.225 using 7 UDP listeners per interface +05-Apr-2017 21:51:01.225 using up to 4096 sockets +05-Apr-2017 21:51:01.243 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +05-Apr-2017 21:51:01.243 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +05-Apr-2017 21:51:01.243 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +05-Apr-2017 21:51:01.244 using default UDP/IPv4 port range: [49152, 65535] +05-Apr-2017 21:51:01.244 using default UDP/IPv6 port range: [49152, 65535] +05-Apr-2017 21:51:01.245 listening on IPv4 interface lo0, 127.0.0.1#5400 +05-Apr-2017 21:51:01.247 generating session key for dynamic DNS +05-Apr-2017 21:51:01.247 could not open file '/opt/local/var/run/named/session.key': Permission denied +05-Apr-2017 21:51:01.247 could not create /opt/local/var/run/named/session.key +05-Apr-2017 21:51:01.247 failed to generate session key for dynamic DNS: permission denied +05-Apr-2017 21:51:01.248 sizing zone task pool based on 1 zones +05-Apr-2017 21:51:01.249 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 21:51:01.253 set up managed keys zone for view _default, file 'managed-keys.bind' +05-Apr-2017 21:51:01.253 automatic empty zone: 10.IN-ADDR.ARPA +05-Apr-2017 21:51:01.253 automatic empty zone: 16.172.IN-ADDR.ARPA +05-Apr-2017 21:51:01.253 automatic empty zone: 17.172.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 18.172.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 19.172.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 20.172.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 21.172.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 22.172.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 23.172.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 24.172.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 25.172.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 26.172.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 27.172.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 28.172.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 29.172.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 30.172.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 31.172.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 168.192.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 64.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 65.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 66.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 67.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 68.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 69.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 70.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 71.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 72.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 73.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 74.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 75.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 76.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 77.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 78.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 79.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 80.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 81.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 82.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 83.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 84.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 85.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 86.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 87.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 88.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 89.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 90.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 91.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 92.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 93.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 94.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 95.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 96.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 97.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 98.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 99.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 100.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 101.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 102.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 103.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 104.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 105.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 106.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 107.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 108.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 109.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 110.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 111.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 112.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 113.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 114.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 115.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 116.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 117.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 118.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 119.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 120.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 121.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 122.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 123.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 124.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 125.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 126.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 127.100.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 0.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 127.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 254.169.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 2.0.192.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 100.51.198.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 113.0.203.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 21:51:01.254 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 21:51:01.255 automatic empty zone: D.F.IP6.ARPA +05-Apr-2017 21:51:01.255 automatic empty zone: 8.E.F.IP6.ARPA +05-Apr-2017 21:51:01.255 automatic empty zone: 9.E.F.IP6.ARPA +05-Apr-2017 21:51:01.255 automatic empty zone: A.E.F.IP6.ARPA +05-Apr-2017 21:51:01.255 automatic empty zone: B.E.F.IP6.ARPA +05-Apr-2017 21:51:01.255 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +05-Apr-2017 21:51:01.255 automatic empty zone: EMPTY.AS112.ARPA +05-Apr-2017 21:51:01.255 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 21:51:01.257 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 21:51:01.257 couldn't add command channel 127.0.0.1#953: file not found +05-Apr-2017 21:51:01.257 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 21:51:01.257 couldn't add command channel ::1#953: file not found +05-Apr-2017 21:51:01.257 not using config file logging statement for logging due to -g option +05-Apr-2017 21:51:01.259 managed-keys-zone: loaded serial 0 +05-Apr-2017 21:51:01.289 zone local/IN: loaded serial 2 +05-Apr-2017 21:51:01.289 all zones loaded +05-Apr-2017 21:51:01.289 running +05-Apr-2017 21:51:51.573 shutting down +05-Apr-2017 21:51:51.573 no longer listening on 127.0.0.1#5400 +05-Apr-2017 21:51:51.663 exiting +=== Log Marked @ 2017-04-05 22:42:27 +1200 [65783] === +05-Apr-2017 22:42:27.286 starting BIND 9.11.0-P3 +05-Apr-2017 22:42:27.286 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +05-Apr-2017 22:42:27.286 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +05-Apr-2017 22:42:27.286 running as: named -c named.conf -f -p 5400 -g +05-Apr-2017 22:42:27.286 ---------------------------------------------------- +05-Apr-2017 22:42:27.286 BIND 9 is maintained by Internet Systems Consortium, +05-Apr-2017 22:42:27.286 Inc. (ISC), a non-profit 501(c)(3) public-benefit +05-Apr-2017 22:42:27.286 corporation. Support and training for BIND 9 are +05-Apr-2017 22:42:27.286 available at https://www.isc.org/support +05-Apr-2017 22:42:27.286 ---------------------------------------------------- +05-Apr-2017 22:42:27.286 found 8 CPUs, using 8 worker threads +05-Apr-2017 22:42:27.286 using 7 UDP listeners per interface +05-Apr-2017 22:42:27.286 using up to 4096 sockets +05-Apr-2017 22:42:27.290 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +05-Apr-2017 22:42:27.290 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +05-Apr-2017 22:42:27.290 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +05-Apr-2017 22:42:27.291 using default UDP/IPv4 port range: [49152, 65535] +05-Apr-2017 22:42:27.291 using default UDP/IPv6 port range: [49152, 65535] +05-Apr-2017 22:42:27.291 listening on IPv4 interface lo0, 127.0.0.1#5400 +05-Apr-2017 22:42:27.293 generating session key for dynamic DNS +05-Apr-2017 22:42:27.293 could not open file '/opt/local/var/run/named/session.key': Permission denied +05-Apr-2017 22:42:27.293 could not create /opt/local/var/run/named/session.key +05-Apr-2017 22:42:27.293 failed to generate session key for dynamic DNS: permission denied +05-Apr-2017 22:42:27.294 sizing zone task pool based on 1 zones +05-Apr-2017 22:42:27.294 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 22:42:27.296 set up managed keys zone for view _default, file 'managed-keys.bind' +05-Apr-2017 22:42:27.296 automatic empty zone: 10.IN-ADDR.ARPA +05-Apr-2017 22:42:27.296 automatic empty zone: 16.172.IN-ADDR.ARPA +05-Apr-2017 22:42:27.296 automatic empty zone: 17.172.IN-ADDR.ARPA +05-Apr-2017 22:42:27.296 automatic empty zone: 18.172.IN-ADDR.ARPA +05-Apr-2017 22:42:27.296 automatic empty zone: 19.172.IN-ADDR.ARPA +05-Apr-2017 22:42:27.296 automatic empty zone: 20.172.IN-ADDR.ARPA +05-Apr-2017 22:42:27.296 automatic empty zone: 21.172.IN-ADDR.ARPA +05-Apr-2017 22:42:27.296 automatic empty zone: 22.172.IN-ADDR.ARPA +05-Apr-2017 22:42:27.296 automatic empty zone: 23.172.IN-ADDR.ARPA +05-Apr-2017 22:42:27.296 automatic empty zone: 24.172.IN-ADDR.ARPA +05-Apr-2017 22:42:27.296 automatic empty zone: 25.172.IN-ADDR.ARPA +05-Apr-2017 22:42:27.296 automatic empty zone: 26.172.IN-ADDR.ARPA +05-Apr-2017 22:42:27.296 automatic empty zone: 27.172.IN-ADDR.ARPA +05-Apr-2017 22:42:27.296 automatic empty zone: 28.172.IN-ADDR.ARPA +05-Apr-2017 22:42:27.296 automatic empty zone: 29.172.IN-ADDR.ARPA +05-Apr-2017 22:42:27.296 automatic empty zone: 30.172.IN-ADDR.ARPA +05-Apr-2017 22:42:27.296 automatic empty zone: 31.172.IN-ADDR.ARPA +05-Apr-2017 22:42:27.296 automatic empty zone: 168.192.IN-ADDR.ARPA +05-Apr-2017 22:42:27.296 automatic empty zone: 64.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 65.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 66.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 67.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 68.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 69.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 70.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 71.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 72.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 73.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 74.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 75.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 76.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 77.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 78.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 79.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 80.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 81.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 82.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 83.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 84.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 85.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 86.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 87.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 88.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 89.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 90.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 91.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 92.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 93.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 94.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 95.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 96.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 97.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 98.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 99.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 100.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 101.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 102.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 103.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 104.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 105.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 106.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 107.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 108.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 109.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 110.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 111.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 112.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 113.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 114.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 115.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 116.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 117.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 118.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 119.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 120.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 121.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 122.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 123.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 124.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 125.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 126.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 127.100.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 0.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 127.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 254.169.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 2.0.192.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 100.51.198.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 113.0.203.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: D.F.IP6.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 8.E.F.IP6.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 9.E.F.IP6.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: A.E.F.IP6.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: B.E.F.IP6.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +05-Apr-2017 22:42:27.297 automatic empty zone: EMPTY.AS112.ARPA +05-Apr-2017 22:42:27.297 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 22:42:27.299 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 22:42:27.299 couldn't add command channel 127.0.0.1#953: file not found +05-Apr-2017 22:42:27.299 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 22:42:27.299 couldn't add command channel ::1#953: file not found +05-Apr-2017 22:42:27.299 not using config file logging statement for logging due to -g option +05-Apr-2017 22:42:27.300 managed-keys-zone: loaded serial 0 +05-Apr-2017 22:42:27.331 zone local/IN: loaded serial 2 +05-Apr-2017 22:42:27.331 all zones loaded +05-Apr-2017 22:42:27.331 running +05-Apr-2017 22:43:17.630 shutting down +05-Apr-2017 22:43:17.630 no longer listening on 127.0.0.1#5400 +05-Apr-2017 22:43:17.706 exiting +=== Log Marked @ 2017-04-05 22:47:39 +1200 [65803] === +05-Apr-2017 22:47:39.926 starting BIND 9.11.0-P3 +05-Apr-2017 22:47:39.926 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +05-Apr-2017 22:47:39.926 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +05-Apr-2017 22:47:39.926 running as: named -c named.conf -f -p 5400 -g +05-Apr-2017 22:47:39.926 ---------------------------------------------------- +05-Apr-2017 22:47:39.926 BIND 9 is maintained by Internet Systems Consortium, +05-Apr-2017 22:47:39.926 Inc. (ISC), a non-profit 501(c)(3) public-benefit +05-Apr-2017 22:47:39.926 corporation. Support and training for BIND 9 are +05-Apr-2017 22:47:39.926 available at https://www.isc.org/support +05-Apr-2017 22:47:39.926 ---------------------------------------------------- +05-Apr-2017 22:47:39.926 found 8 CPUs, using 8 worker threads +05-Apr-2017 22:47:39.926 using 7 UDP listeners per interface +05-Apr-2017 22:47:39.927 using up to 4096 sockets +05-Apr-2017 22:47:39.944 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +05-Apr-2017 22:47:39.944 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +05-Apr-2017 22:47:39.944 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +05-Apr-2017 22:47:39.945 using default UDP/IPv4 port range: [49152, 65535] +05-Apr-2017 22:47:39.945 using default UDP/IPv6 port range: [49152, 65535] +05-Apr-2017 22:47:39.946 listening on IPv4 interface lo0, 127.0.0.1#5400 +05-Apr-2017 22:47:39.948 generating session key for dynamic DNS +05-Apr-2017 22:47:39.948 could not open file '/opt/local/var/run/named/session.key': Permission denied +05-Apr-2017 22:47:39.948 could not create /opt/local/var/run/named/session.key +05-Apr-2017 22:47:39.948 failed to generate session key for dynamic DNS: permission denied +05-Apr-2017 22:47:39.949 sizing zone task pool based on 1 zones +05-Apr-2017 22:47:39.950 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 22:47:39.953 set up managed keys zone for view _default, file 'managed-keys.bind' +05-Apr-2017 22:47:39.953 automatic empty zone: 10.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 16.172.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 17.172.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 18.172.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 19.172.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 20.172.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 21.172.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 22.172.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 23.172.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 24.172.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 25.172.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 26.172.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 27.172.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 28.172.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 29.172.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 30.172.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 31.172.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 168.192.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 64.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 65.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 66.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 67.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 68.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 69.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 70.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 71.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 72.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 73.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 74.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 75.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 76.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 77.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 78.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 79.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 80.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 81.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 82.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 83.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 84.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 85.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 86.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 87.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 88.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 89.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 90.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 91.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 92.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 93.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 94.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 95.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 96.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 97.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 98.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 99.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 100.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 101.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 102.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 103.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 104.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 105.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 106.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 107.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 108.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 109.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 110.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 111.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 112.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 113.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 114.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 115.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 116.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 117.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 118.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 119.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 120.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 121.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 122.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 123.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 124.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 125.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 126.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 127.100.IN-ADDR.ARPA +05-Apr-2017 22:47:39.954 automatic empty zone: 0.IN-ADDR.ARPA +05-Apr-2017 22:47:39.955 automatic empty zone: 127.IN-ADDR.ARPA +05-Apr-2017 22:47:39.955 automatic empty zone: 254.169.IN-ADDR.ARPA +05-Apr-2017 22:47:39.955 automatic empty zone: 2.0.192.IN-ADDR.ARPA +05-Apr-2017 22:47:39.955 automatic empty zone: 100.51.198.IN-ADDR.ARPA +05-Apr-2017 22:47:39.955 automatic empty zone: 113.0.203.IN-ADDR.ARPA +05-Apr-2017 22:47:39.955 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +05-Apr-2017 22:47:39.955 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 22:47:39.955 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 22:47:39.955 automatic empty zone: D.F.IP6.ARPA +05-Apr-2017 22:47:39.955 automatic empty zone: 8.E.F.IP6.ARPA +05-Apr-2017 22:47:39.955 automatic empty zone: 9.E.F.IP6.ARPA +05-Apr-2017 22:47:39.955 automatic empty zone: A.E.F.IP6.ARPA +05-Apr-2017 22:47:39.955 automatic empty zone: B.E.F.IP6.ARPA +05-Apr-2017 22:47:39.955 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +05-Apr-2017 22:47:39.955 automatic empty zone: EMPTY.AS112.ARPA +05-Apr-2017 22:47:39.955 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 22:47:39.957 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 22:47:39.957 couldn't add command channel 127.0.0.1#953: file not found +05-Apr-2017 22:47:39.957 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 22:47:39.957 couldn't add command channel ::1#953: file not found +05-Apr-2017 22:47:39.957 not using config file logging statement for logging due to -g option +05-Apr-2017 22:47:39.958 managed-keys-zone: loaded serial 0 +05-Apr-2017 22:47:39.992 zone local/IN: loaded serial 2 +05-Apr-2017 22:47:39.992 all zones loaded +05-Apr-2017 22:47:39.992 running +05-Apr-2017 22:48:30.254 shutting down +05-Apr-2017 22:48:30.256 no longer listening on 127.0.0.1#5400 +05-Apr-2017 22:48:30.330 exiting +=== Log Marked @ 2017-04-05 22:56:12 +1200 [65826] === +05-Apr-2017 22:56:12.327 starting BIND 9.11.0-P3 +05-Apr-2017 22:56:12.327 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +05-Apr-2017 22:56:12.327 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +05-Apr-2017 22:56:12.327 running as: named -c named.conf -f -p 5400 -g +05-Apr-2017 22:56:12.327 ---------------------------------------------------- +05-Apr-2017 22:56:12.327 BIND 9 is maintained by Internet Systems Consortium, +05-Apr-2017 22:56:12.327 Inc. (ISC), a non-profit 501(c)(3) public-benefit +05-Apr-2017 22:56:12.327 corporation. Support and training for BIND 9 are +05-Apr-2017 22:56:12.327 available at https://www.isc.org/support +05-Apr-2017 22:56:12.327 ---------------------------------------------------- +05-Apr-2017 22:56:12.327 found 8 CPUs, using 8 worker threads +05-Apr-2017 22:56:12.327 using 7 UDP listeners per interface +05-Apr-2017 22:56:12.327 using up to 4096 sockets +05-Apr-2017 22:56:12.332 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +05-Apr-2017 22:56:12.332 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +05-Apr-2017 22:56:12.332 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +05-Apr-2017 22:56:12.332 using default UDP/IPv4 port range: [49152, 65535] +05-Apr-2017 22:56:12.332 using default UDP/IPv6 port range: [49152, 65535] +05-Apr-2017 22:56:12.333 listening on IPv4 interface lo0, 127.0.0.1#5400 +05-Apr-2017 22:56:12.335 generating session key for dynamic DNS +05-Apr-2017 22:56:12.335 could not open file '/opt/local/var/run/named/session.key': Permission denied +05-Apr-2017 22:56:12.335 could not create /opt/local/var/run/named/session.key +05-Apr-2017 22:56:12.335 failed to generate session key for dynamic DNS: permission denied +05-Apr-2017 22:56:12.335 sizing zone task pool based on 1 zones +05-Apr-2017 22:56:12.336 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 22:56:12.338 set up managed keys zone for view _default, file 'managed-keys.bind' +05-Apr-2017 22:56:12.338 automatic empty zone: 10.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 16.172.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 17.172.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 18.172.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 19.172.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 20.172.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 21.172.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 22.172.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 23.172.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 24.172.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 25.172.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 26.172.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 27.172.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 28.172.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 29.172.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 30.172.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 31.172.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 168.192.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 64.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 65.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 66.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 67.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 68.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 69.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 70.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 71.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 72.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 73.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 74.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 75.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 76.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 77.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 78.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 79.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 80.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 81.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.338 automatic empty zone: 82.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 83.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 84.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 85.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 86.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 87.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 88.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 89.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 90.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 91.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 92.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 93.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 94.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 95.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 96.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 97.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 98.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 99.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 100.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 101.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 102.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 103.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 104.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 105.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 106.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 107.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 108.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 109.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 110.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 111.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 112.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 113.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 114.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 115.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 116.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 117.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 118.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 119.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 120.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 121.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 122.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 123.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 124.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 125.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 126.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 127.100.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 0.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 127.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 254.169.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 2.0.192.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 100.51.198.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 113.0.203.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: D.F.IP6.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 8.E.F.IP6.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 9.E.F.IP6.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: A.E.F.IP6.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: B.E.F.IP6.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +05-Apr-2017 22:56:12.339 automatic empty zone: EMPTY.AS112.ARPA +05-Apr-2017 22:56:12.339 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 22:56:12.342 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 22:56:12.342 couldn't add command channel 127.0.0.1#953: file not found +05-Apr-2017 22:56:12.342 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 22:56:12.342 couldn't add command channel ::1#953: file not found +05-Apr-2017 22:56:12.342 not using config file logging statement for logging due to -g option +05-Apr-2017 22:56:12.342 managed-keys-zone: loaded serial 0 +05-Apr-2017 22:56:12.376 zone local/IN: loaded serial 2 +05-Apr-2017 22:56:12.376 all zones loaded +05-Apr-2017 22:56:12.376 running +05-Apr-2017 22:57:02.665 shutting down +05-Apr-2017 22:57:02.665 no longer listening on 127.0.0.1#5400 +05-Apr-2017 22:57:02.743 exiting +=== Log Marked @ 2017-04-05 22:57:41 +1200 [65844] === +05-Apr-2017 22:57:41.806 starting BIND 9.11.0-P3 +05-Apr-2017 22:57:41.806 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +05-Apr-2017 22:57:41.806 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +05-Apr-2017 22:57:41.806 running as: named -c named.conf -f -p 5400 -g +05-Apr-2017 22:57:41.806 ---------------------------------------------------- +05-Apr-2017 22:57:41.806 BIND 9 is maintained by Internet Systems Consortium, +05-Apr-2017 22:57:41.806 Inc. (ISC), a non-profit 501(c)(3) public-benefit +05-Apr-2017 22:57:41.806 corporation. Support and training for BIND 9 are +05-Apr-2017 22:57:41.806 available at https://www.isc.org/support +05-Apr-2017 22:57:41.806 ---------------------------------------------------- +05-Apr-2017 22:57:41.806 found 8 CPUs, using 8 worker threads +05-Apr-2017 22:57:41.806 using 7 UDP listeners per interface +05-Apr-2017 22:57:41.806 using up to 4096 sockets +05-Apr-2017 22:57:41.811 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +05-Apr-2017 22:57:41.811 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +05-Apr-2017 22:57:41.811 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +05-Apr-2017 22:57:41.812 using default UDP/IPv4 port range: [49152, 65535] +05-Apr-2017 22:57:41.812 using default UDP/IPv6 port range: [49152, 65535] +05-Apr-2017 22:57:41.812 listening on IPv4 interface lo0, 127.0.0.1#5400 +05-Apr-2017 22:57:41.814 generating session key for dynamic DNS +05-Apr-2017 22:57:41.814 could not open file '/opt/local/var/run/named/session.key': Permission denied +05-Apr-2017 22:57:41.814 could not create /opt/local/var/run/named/session.key +05-Apr-2017 22:57:41.814 failed to generate session key for dynamic DNS: permission denied +05-Apr-2017 22:57:41.814 sizing zone task pool based on 1 zones +05-Apr-2017 22:57:41.815 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 22:57:41.819 set up managed keys zone for view _default, file 'managed-keys.bind' +05-Apr-2017 22:57:41.819 automatic empty zone: 10.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 16.172.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 17.172.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 18.172.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 19.172.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 20.172.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 21.172.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 22.172.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 23.172.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 24.172.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 25.172.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 26.172.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 27.172.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 28.172.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 29.172.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 30.172.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 31.172.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 168.192.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 64.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 65.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 66.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 67.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 68.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 69.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 70.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 71.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 72.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 73.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 74.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 75.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 76.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 77.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 78.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 79.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 80.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 81.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 82.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 83.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 84.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 85.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 86.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 87.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 88.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 89.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 90.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 91.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 92.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 93.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 94.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 95.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 96.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 97.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 98.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 99.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 100.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 101.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 102.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 103.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 104.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 105.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.819 automatic empty zone: 106.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: 107.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: 108.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: 109.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: 110.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: 111.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: 112.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: 113.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: 114.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: 115.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: 116.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: 117.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: 118.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: 119.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: 120.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: 121.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: 122.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: 123.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: 124.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: 125.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: 126.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: 127.100.IN-ADDR.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: 0.IN-ADDR.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: 127.IN-ADDR.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: 254.169.IN-ADDR.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: 2.0.192.IN-ADDR.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: 100.51.198.IN-ADDR.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: 113.0.203.IN-ADDR.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: D.F.IP6.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: 8.E.F.IP6.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: 9.E.F.IP6.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: A.E.F.IP6.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: B.E.F.IP6.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +05-Apr-2017 22:57:41.820 automatic empty zone: EMPTY.AS112.ARPA +05-Apr-2017 22:57:41.820 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 22:57:41.822 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 22:57:41.822 couldn't add command channel 127.0.0.1#953: file not found +05-Apr-2017 22:57:41.822 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 22:57:41.822 couldn't add command channel ::1#953: file not found +05-Apr-2017 22:57:41.822 not using config file logging statement for logging due to -g option +05-Apr-2017 22:57:41.823 managed-keys-zone: loaded serial 0 +05-Apr-2017 22:57:41.853 zone local/IN: loaded serial 2 +05-Apr-2017 22:57:41.853 all zones loaded +05-Apr-2017 22:57:41.853 running +05-Apr-2017 22:58:32.145 shutting down +05-Apr-2017 22:58:32.145 no longer listening on 127.0.0.1#5400 +05-Apr-2017 22:58:32.212 exiting +=== Log Marked @ 2017-04-05 23:03:47 +1200 [65865] === +05-Apr-2017 23:03:47.229 starting BIND 9.11.0-P3 +05-Apr-2017 23:03:47.229 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +05-Apr-2017 23:03:47.229 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +05-Apr-2017 23:03:47.229 running as: named -c named.conf -f -p 5400 -g +05-Apr-2017 23:03:47.229 ---------------------------------------------------- +05-Apr-2017 23:03:47.229 BIND 9 is maintained by Internet Systems Consortium, +05-Apr-2017 23:03:47.229 Inc. (ISC), a non-profit 501(c)(3) public-benefit +05-Apr-2017 23:03:47.229 corporation. Support and training for BIND 9 are +05-Apr-2017 23:03:47.229 available at https://www.isc.org/support +05-Apr-2017 23:03:47.229 ---------------------------------------------------- +05-Apr-2017 23:03:47.229 found 8 CPUs, using 8 worker threads +05-Apr-2017 23:03:47.229 using 7 UDP listeners per interface +05-Apr-2017 23:03:47.229 using up to 4096 sockets +05-Apr-2017 23:03:47.234 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +05-Apr-2017 23:03:47.234 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +05-Apr-2017 23:03:47.234 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +05-Apr-2017 23:03:47.234 using default UDP/IPv4 port range: [49152, 65535] +05-Apr-2017 23:03:47.234 using default UDP/IPv6 port range: [49152, 65535] +05-Apr-2017 23:03:47.235 listening on IPv4 interface lo0, 127.0.0.1#5400 +05-Apr-2017 23:03:47.238 generating session key for dynamic DNS +05-Apr-2017 23:03:47.238 could not open file '/opt/local/var/run/named/session.key': Permission denied +05-Apr-2017 23:03:47.238 could not create /opt/local/var/run/named/session.key +05-Apr-2017 23:03:47.238 failed to generate session key for dynamic DNS: permission denied +05-Apr-2017 23:03:47.238 sizing zone task pool based on 1 zones +05-Apr-2017 23:03:47.238 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 23:03:47.241 set up managed keys zone for view _default, file 'managed-keys.bind' +05-Apr-2017 23:03:47.241 automatic empty zone: 10.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 16.172.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 17.172.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 18.172.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 19.172.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 20.172.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 21.172.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 22.172.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 23.172.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 24.172.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 25.172.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 26.172.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 27.172.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 28.172.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 29.172.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 30.172.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 31.172.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 168.192.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 64.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 65.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 66.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 67.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 68.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 69.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 70.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 71.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 72.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 73.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 74.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 75.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 76.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 77.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 78.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 79.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 80.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 81.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 82.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 83.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 84.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 85.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 86.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 87.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 88.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 89.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 90.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 91.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.241 automatic empty zone: 92.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 93.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 94.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 95.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 96.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 97.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 98.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 99.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 100.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 101.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 102.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 103.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 104.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 105.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 106.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 107.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 108.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 109.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 110.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 111.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 112.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 113.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 114.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 115.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 116.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 117.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 118.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 119.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 120.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 121.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 122.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 123.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 124.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 125.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 126.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 127.100.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 0.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 127.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 254.169.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 2.0.192.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 100.51.198.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 113.0.203.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: D.F.IP6.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 8.E.F.IP6.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 9.E.F.IP6.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: A.E.F.IP6.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: B.E.F.IP6.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +05-Apr-2017 23:03:47.242 automatic empty zone: EMPTY.AS112.ARPA +05-Apr-2017 23:03:47.242 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 23:03:47.245 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 23:03:47.245 couldn't add command channel 127.0.0.1#953: file not found +05-Apr-2017 23:03:47.245 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 23:03:47.245 couldn't add command channel ::1#953: file not found +05-Apr-2017 23:03:47.245 not using config file logging statement for logging due to -g option +05-Apr-2017 23:03:47.246 managed-keys-zone: loaded serial 0 +05-Apr-2017 23:03:47.284 zone local/IN: loaded serial 2 +05-Apr-2017 23:03:47.284 all zones loaded +05-Apr-2017 23:03:47.285 running +05-Apr-2017 23:03:56.197 shutting down +05-Apr-2017 23:03:56.198 no longer listening on 127.0.0.1#5400 +05-Apr-2017 23:03:56.279 exiting +=== Log Marked @ 2017-04-05 23:04:39 +1200 [65878] === +05-Apr-2017 23:04:39.745 starting BIND 9.11.0-P3 +05-Apr-2017 23:04:39.745 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +05-Apr-2017 23:04:39.745 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +05-Apr-2017 23:04:39.745 running as: named -c named.conf -f -p 5400 -g +05-Apr-2017 23:04:39.745 ---------------------------------------------------- +05-Apr-2017 23:04:39.745 BIND 9 is maintained by Internet Systems Consortium, +05-Apr-2017 23:04:39.745 Inc. (ISC), a non-profit 501(c)(3) public-benefit +05-Apr-2017 23:04:39.745 corporation. Support and training for BIND 9 are +05-Apr-2017 23:04:39.745 available at https://www.isc.org/support +05-Apr-2017 23:04:39.745 ---------------------------------------------------- +05-Apr-2017 23:04:39.745 found 8 CPUs, using 8 worker threads +05-Apr-2017 23:04:39.745 using 7 UDP listeners per interface +05-Apr-2017 23:04:39.745 using up to 4096 sockets +05-Apr-2017 23:04:39.750 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +05-Apr-2017 23:04:39.751 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +05-Apr-2017 23:04:39.751 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +05-Apr-2017 23:04:39.751 using default UDP/IPv4 port range: [49152, 65535] +05-Apr-2017 23:04:39.751 using default UDP/IPv6 port range: [49152, 65535] +05-Apr-2017 23:04:39.753 listening on IPv4 interface lo0, 127.0.0.1#5400 +05-Apr-2017 23:04:39.756 generating session key for dynamic DNS +05-Apr-2017 23:04:39.756 could not open file '/opt/local/var/run/named/session.key': Permission denied +05-Apr-2017 23:04:39.756 could not create /opt/local/var/run/named/session.key +05-Apr-2017 23:04:39.756 failed to generate session key for dynamic DNS: permission denied +05-Apr-2017 23:04:39.756 sizing zone task pool based on 1 zones +05-Apr-2017 23:04:39.756 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 23:04:39.758 set up managed keys zone for view _default, file 'managed-keys.bind' +05-Apr-2017 23:04:39.758 automatic empty zone: 10.IN-ADDR.ARPA +05-Apr-2017 23:04:39.758 automatic empty zone: 16.172.IN-ADDR.ARPA +05-Apr-2017 23:04:39.758 automatic empty zone: 17.172.IN-ADDR.ARPA +05-Apr-2017 23:04:39.758 automatic empty zone: 18.172.IN-ADDR.ARPA +05-Apr-2017 23:04:39.758 automatic empty zone: 19.172.IN-ADDR.ARPA +05-Apr-2017 23:04:39.758 automatic empty zone: 20.172.IN-ADDR.ARPA +05-Apr-2017 23:04:39.758 automatic empty zone: 21.172.IN-ADDR.ARPA +05-Apr-2017 23:04:39.758 automatic empty zone: 22.172.IN-ADDR.ARPA +05-Apr-2017 23:04:39.758 automatic empty zone: 23.172.IN-ADDR.ARPA +05-Apr-2017 23:04:39.758 automatic empty zone: 24.172.IN-ADDR.ARPA +05-Apr-2017 23:04:39.758 automatic empty zone: 25.172.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 26.172.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 27.172.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 28.172.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 29.172.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 30.172.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 31.172.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 168.192.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 64.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 65.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 66.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 67.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 68.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 69.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 70.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 71.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 72.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 73.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 74.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 75.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 76.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 77.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 78.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 79.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 80.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 81.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 82.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 83.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 84.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 85.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 86.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 87.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 88.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 89.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 90.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 91.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 92.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 93.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 94.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 95.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 96.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 97.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 98.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 99.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 100.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 101.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 102.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 103.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 104.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 105.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 106.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 107.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 108.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 109.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 110.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 111.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 112.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 113.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 114.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 115.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 116.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 117.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 118.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 119.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 120.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 121.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 122.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 123.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 124.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 125.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 126.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 127.100.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 0.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 127.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 254.169.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 2.0.192.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 100.51.198.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 113.0.203.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: D.F.IP6.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 8.E.F.IP6.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 9.E.F.IP6.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: A.E.F.IP6.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: B.E.F.IP6.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +05-Apr-2017 23:04:39.759 automatic empty zone: EMPTY.AS112.ARPA +05-Apr-2017 23:04:39.759 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +05-Apr-2017 23:04:39.762 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 23:04:39.762 couldn't add command channel 127.0.0.1#953: file not found +05-Apr-2017 23:04:39.762 configuring command channel from '/opt/local/etc/rndc.key' +05-Apr-2017 23:04:39.762 couldn't add command channel ::1#953: file not found +05-Apr-2017 23:04:39.762 not using config file logging statement for logging due to -g option +05-Apr-2017 23:04:39.762 managed-keys-zone: loaded serial 0 +05-Apr-2017 23:04:39.791 zone local/IN: loaded serial 2 +05-Apr-2017 23:04:39.791 all zones loaded +05-Apr-2017 23:04:39.791 running +05-Apr-2017 23:04:47.197 shutting down +05-Apr-2017 23:04:47.198 no longer listening on 127.0.0.1#5400 +05-Apr-2017 23:04:47.286 exiting +=== Log Marked @ 2017-04-06 01:08:59 +1200 [66271] === +06-Apr-2017 01:08:59.969 starting BIND 9.11.0-P3 +06-Apr-2017 01:08:59.970 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +06-Apr-2017 01:08:59.970 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +06-Apr-2017 01:08:59.970 running as: named -c named.conf -f -p 5400 -g +06-Apr-2017 01:08:59.970 ---------------------------------------------------- +06-Apr-2017 01:08:59.970 BIND 9 is maintained by Internet Systems Consortium, +06-Apr-2017 01:08:59.970 Inc. (ISC), a non-profit 501(c)(3) public-benefit +06-Apr-2017 01:08:59.970 corporation. Support and training for BIND 9 are +06-Apr-2017 01:08:59.970 available at https://www.isc.org/support +06-Apr-2017 01:08:59.970 ---------------------------------------------------- +06-Apr-2017 01:08:59.970 found 8 CPUs, using 8 worker threads +06-Apr-2017 01:08:59.970 using 7 UDP listeners per interface +06-Apr-2017 01:08:59.971 using up to 4096 sockets +06-Apr-2017 01:08:59.988 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +06-Apr-2017 01:08:59.989 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +06-Apr-2017 01:08:59.989 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +06-Apr-2017 01:08:59.990 using default UDP/IPv4 port range: [49152, 65535] +06-Apr-2017 01:08:59.990 using default UDP/IPv6 port range: [49152, 65535] +06-Apr-2017 01:08:59.991 listening on IPv4 interface lo0, 127.0.0.1#5400 +06-Apr-2017 01:08:59.993 generating session key for dynamic DNS +06-Apr-2017 01:08:59.993 could not open file '/opt/local/var/run/named/session.key': Permission denied +06-Apr-2017 01:08:59.993 could not create /opt/local/var/run/named/session.key +06-Apr-2017 01:08:59.993 failed to generate session key for dynamic DNS: permission denied +06-Apr-2017 01:08:59.994 sizing zone task pool based on 1 zones +06-Apr-2017 01:08:59.995 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +06-Apr-2017 01:09:00.000 set up managed keys zone for view _default, file 'managed-keys.bind' +06-Apr-2017 01:09:00.000 automatic empty zone: 10.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 16.172.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 17.172.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 18.172.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 19.172.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 20.172.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 21.172.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 22.172.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 23.172.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 24.172.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 25.172.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 26.172.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 27.172.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 28.172.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 29.172.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 30.172.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 31.172.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 168.192.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 64.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 65.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 66.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 67.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 68.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 69.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 70.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 71.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 72.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 73.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 74.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 75.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 76.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 77.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 78.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 79.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 80.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 81.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 82.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 83.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 84.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 85.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 86.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 87.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 88.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 89.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 90.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 91.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 92.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 93.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 94.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 95.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 96.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 97.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 98.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 99.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 100.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 101.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 102.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 103.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 104.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 105.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.000 automatic empty zone: 106.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: 107.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: 108.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: 109.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: 110.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: 111.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: 112.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: 113.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: 114.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: 115.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: 116.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: 117.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: 118.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: 119.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: 120.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: 121.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: 122.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: 123.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: 124.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: 125.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: 126.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: 127.100.IN-ADDR.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: 0.IN-ADDR.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: 127.IN-ADDR.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: 254.169.IN-ADDR.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: 2.0.192.IN-ADDR.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: 100.51.198.IN-ADDR.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: 113.0.203.IN-ADDR.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: D.F.IP6.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: 8.E.F.IP6.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: 9.E.F.IP6.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: A.E.F.IP6.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: B.E.F.IP6.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +06-Apr-2017 01:09:00.001 automatic empty zone: EMPTY.AS112.ARPA +06-Apr-2017 01:09:00.001 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +06-Apr-2017 01:09:00.006 configuring command channel from '/opt/local/etc/rndc.key' +06-Apr-2017 01:09:00.006 couldn't add command channel 127.0.0.1#953: file not found +06-Apr-2017 01:09:00.006 configuring command channel from '/opt/local/etc/rndc.key' +06-Apr-2017 01:09:00.006 couldn't add command channel ::1#953: file not found +06-Apr-2017 01:09:00.006 not using config file logging statement for logging due to -g option +06-Apr-2017 01:09:00.006 managed-keys-zone: loaded serial 0 +06-Apr-2017 01:09:00.033 zone local/IN: loaded serial 2 +06-Apr-2017 01:09:00.033 all zones loaded +06-Apr-2017 01:09:00.033 running +06-Apr-2017 01:09:08.277 shutting down +06-Apr-2017 01:09:08.278 no longer listening on 127.0.0.1#5400 +06-Apr-2017 01:09:08.345 exiting +=== Log Marked @ 2017-04-06 02:34:31 +1200 [66950] === +06-Apr-2017 02:34:31.721 starting BIND 9.11.0-P3 +06-Apr-2017 02:34:31.721 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +06-Apr-2017 02:34:31.721 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +06-Apr-2017 02:34:31.721 running as: named -c named.conf -f -p 5400 -g +06-Apr-2017 02:34:31.721 ---------------------------------------------------- +06-Apr-2017 02:34:31.721 BIND 9 is maintained by Internet Systems Consortium, +06-Apr-2017 02:34:31.721 Inc. (ISC), a non-profit 501(c)(3) public-benefit +06-Apr-2017 02:34:31.721 corporation. Support and training for BIND 9 are +06-Apr-2017 02:34:31.721 available at https://www.isc.org/support +06-Apr-2017 02:34:31.721 ---------------------------------------------------- +06-Apr-2017 02:34:31.721 found 8 CPUs, using 8 worker threads +06-Apr-2017 02:34:31.721 using 7 UDP listeners per interface +06-Apr-2017 02:34:31.721 using up to 4096 sockets +06-Apr-2017 02:34:31.728 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +06-Apr-2017 02:34:31.728 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +06-Apr-2017 02:34:31.728 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +06-Apr-2017 02:34:31.728 using default UDP/IPv4 port range: [49152, 65535] +06-Apr-2017 02:34:31.728 using default UDP/IPv6 port range: [49152, 65535] +06-Apr-2017 02:34:31.729 listening on IPv4 interface lo0, 127.0.0.1#5400 +06-Apr-2017 02:34:31.731 generating session key for dynamic DNS +06-Apr-2017 02:34:31.731 could not open file '/opt/local/var/run/named/session.key': Permission denied +06-Apr-2017 02:34:31.731 could not create /opt/local/var/run/named/session.key +06-Apr-2017 02:34:31.731 failed to generate session key for dynamic DNS: permission denied +06-Apr-2017 02:34:31.731 sizing zone task pool based on 1 zones +06-Apr-2017 02:34:31.731 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +06-Apr-2017 02:34:31.734 set up managed keys zone for view _default, file 'managed-keys.bind' +06-Apr-2017 02:34:31.734 automatic empty zone: 10.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 16.172.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 17.172.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 18.172.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 19.172.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 20.172.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 21.172.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 22.172.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 23.172.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 24.172.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 25.172.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 26.172.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 27.172.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 28.172.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 29.172.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 30.172.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 31.172.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 168.192.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 64.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 65.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 66.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 67.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 68.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 69.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 70.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 71.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 72.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 73.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 74.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 75.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 76.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 77.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 78.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 79.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 80.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 81.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 82.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 83.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 84.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 85.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 86.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 87.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 88.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 89.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 90.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 91.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 92.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 93.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 94.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 95.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 96.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 97.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 98.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 99.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 100.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 101.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 102.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 103.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 104.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 105.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 106.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 107.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 108.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 109.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 110.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.734 automatic empty zone: 111.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.735 automatic empty zone: 112.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.735 automatic empty zone: 113.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.735 automatic empty zone: 114.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.735 automatic empty zone: 115.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.735 automatic empty zone: 116.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.735 automatic empty zone: 117.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.735 automatic empty zone: 118.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.735 automatic empty zone: 119.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.735 automatic empty zone: 120.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.735 automatic empty zone: 121.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.735 automatic empty zone: 122.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.735 automatic empty zone: 123.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.735 automatic empty zone: 124.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.735 automatic empty zone: 125.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.735 automatic empty zone: 126.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.735 automatic empty zone: 127.100.IN-ADDR.ARPA +06-Apr-2017 02:34:31.735 automatic empty zone: 0.IN-ADDR.ARPA +06-Apr-2017 02:34:31.735 automatic empty zone: 127.IN-ADDR.ARPA +06-Apr-2017 02:34:31.735 automatic empty zone: 254.169.IN-ADDR.ARPA +06-Apr-2017 02:34:31.735 automatic empty zone: 2.0.192.IN-ADDR.ARPA +06-Apr-2017 02:34:31.735 automatic empty zone: 100.51.198.IN-ADDR.ARPA +06-Apr-2017 02:34:31.735 automatic empty zone: 113.0.203.IN-ADDR.ARPA +06-Apr-2017 02:34:31.735 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +06-Apr-2017 02:34:31.735 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +06-Apr-2017 02:34:31.735 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +06-Apr-2017 02:34:31.735 automatic empty zone: D.F.IP6.ARPA +06-Apr-2017 02:34:31.735 automatic empty zone: 8.E.F.IP6.ARPA +06-Apr-2017 02:34:31.735 automatic empty zone: 9.E.F.IP6.ARPA +06-Apr-2017 02:34:31.735 automatic empty zone: A.E.F.IP6.ARPA +06-Apr-2017 02:34:31.735 automatic empty zone: B.E.F.IP6.ARPA +06-Apr-2017 02:34:31.735 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +06-Apr-2017 02:34:31.735 automatic empty zone: EMPTY.AS112.ARPA +06-Apr-2017 02:34:31.735 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +06-Apr-2017 02:34:31.738 configuring command channel from '/opt/local/etc/rndc.key' +06-Apr-2017 02:34:31.738 couldn't add command channel 127.0.0.1#953: file not found +06-Apr-2017 02:34:31.738 configuring command channel from '/opt/local/etc/rndc.key' +06-Apr-2017 02:34:31.738 couldn't add command channel ::1#953: file not found +06-Apr-2017 02:34:31.738 not using config file logging statement for logging due to -g option +06-Apr-2017 02:34:31.739 managed-keys-zone: loaded serial 0 +06-Apr-2017 02:34:31.767 zone local/IN: loaded serial 2 +06-Apr-2017 02:34:31.767 all zones loaded +06-Apr-2017 02:34:31.768 running +06-Apr-2017 02:34:40.412 shutting down +06-Apr-2017 02:34:40.412 no longer listening on 127.0.0.1#5400 +06-Apr-2017 02:34:40.492 exiting +=== Log Marked @ 2017-04-06 12:12:40 +1200 [67464] === +06-Apr-2017 12:12:40.752 starting BIND 9.11.0-P3 +06-Apr-2017 12:12:40.752 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +06-Apr-2017 12:12:40.752 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +06-Apr-2017 12:12:40.752 running as: named -c named.conf -f -p 5400 -g +06-Apr-2017 12:12:40.752 ---------------------------------------------------- +06-Apr-2017 12:12:40.753 BIND 9 is maintained by Internet Systems Consortium, +06-Apr-2017 12:12:40.753 Inc. (ISC), a non-profit 501(c)(3) public-benefit +06-Apr-2017 12:12:40.753 corporation. Support and training for BIND 9 are +06-Apr-2017 12:12:40.753 available at https://www.isc.org/support +06-Apr-2017 12:12:40.753 ---------------------------------------------------- +06-Apr-2017 12:12:40.753 found 8 CPUs, using 8 worker threads +06-Apr-2017 12:12:40.753 using 7 UDP listeners per interface +06-Apr-2017 12:12:40.754 using up to 4096 sockets +06-Apr-2017 12:12:40.773 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +06-Apr-2017 12:12:40.773 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +06-Apr-2017 12:12:40.773 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +06-Apr-2017 12:12:40.774 using default UDP/IPv4 port range: [49152, 65535] +06-Apr-2017 12:12:40.774 using default UDP/IPv6 port range: [49152, 65535] +06-Apr-2017 12:12:40.775 listening on IPv4 interface lo0, 127.0.0.1#5400 +06-Apr-2017 12:12:40.777 generating session key for dynamic DNS +06-Apr-2017 12:12:40.778 could not open file '/opt/local/var/run/named/session.key': Permission denied +06-Apr-2017 12:12:40.778 could not create /opt/local/var/run/named/session.key +06-Apr-2017 12:12:40.778 failed to generate session key for dynamic DNS: permission denied +06-Apr-2017 12:12:40.779 sizing zone task pool based on 1 zones +06-Apr-2017 12:12:40.782 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +06-Apr-2017 12:12:40.790 set up managed keys zone for view _default, file 'managed-keys.bind' +06-Apr-2017 12:12:40.790 automatic empty zone: 10.IN-ADDR.ARPA +06-Apr-2017 12:12:40.790 automatic empty zone: 16.172.IN-ADDR.ARPA +06-Apr-2017 12:12:40.790 automatic empty zone: 17.172.IN-ADDR.ARPA +06-Apr-2017 12:12:40.791 automatic empty zone: 18.172.IN-ADDR.ARPA +06-Apr-2017 12:12:40.791 automatic empty zone: 19.172.IN-ADDR.ARPA +06-Apr-2017 12:12:40.791 automatic empty zone: 20.172.IN-ADDR.ARPA +06-Apr-2017 12:12:40.791 automatic empty zone: 21.172.IN-ADDR.ARPA +06-Apr-2017 12:12:40.791 automatic empty zone: 22.172.IN-ADDR.ARPA +06-Apr-2017 12:12:40.791 automatic empty zone: 23.172.IN-ADDR.ARPA +06-Apr-2017 12:12:40.791 automatic empty zone: 24.172.IN-ADDR.ARPA +06-Apr-2017 12:12:40.791 automatic empty zone: 25.172.IN-ADDR.ARPA +06-Apr-2017 12:12:40.791 automatic empty zone: 26.172.IN-ADDR.ARPA +06-Apr-2017 12:12:40.791 automatic empty zone: 27.172.IN-ADDR.ARPA +06-Apr-2017 12:12:40.791 automatic empty zone: 28.172.IN-ADDR.ARPA +06-Apr-2017 12:12:40.791 automatic empty zone: 29.172.IN-ADDR.ARPA +06-Apr-2017 12:12:40.791 automatic empty zone: 30.172.IN-ADDR.ARPA +06-Apr-2017 12:12:40.791 automatic empty zone: 31.172.IN-ADDR.ARPA +06-Apr-2017 12:12:40.791 automatic empty zone: 168.192.IN-ADDR.ARPA +06-Apr-2017 12:12:40.791 automatic empty zone: 64.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.791 automatic empty zone: 65.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.791 automatic empty zone: 66.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.791 automatic empty zone: 67.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.791 automatic empty zone: 68.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.791 automatic empty zone: 69.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.791 automatic empty zone: 70.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.791 automatic empty zone: 71.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.791 automatic empty zone: 72.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.791 automatic empty zone: 73.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.791 automatic empty zone: 74.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 75.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 76.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 77.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 78.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 79.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 80.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 81.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 82.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 83.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 84.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 85.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 86.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 87.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 88.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 89.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 90.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 91.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 92.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 93.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 94.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 95.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 96.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 97.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 98.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 99.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 100.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 101.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 102.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 103.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 104.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 105.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 106.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 107.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 108.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 109.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 110.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 111.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 112.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 113.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 114.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 115.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 116.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 117.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.792 automatic empty zone: 118.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.793 automatic empty zone: 119.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.793 automatic empty zone: 120.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.793 automatic empty zone: 121.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.793 automatic empty zone: 122.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.793 automatic empty zone: 123.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.793 automatic empty zone: 124.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.793 automatic empty zone: 125.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.793 automatic empty zone: 126.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.793 automatic empty zone: 127.100.IN-ADDR.ARPA +06-Apr-2017 12:12:40.793 automatic empty zone: 0.IN-ADDR.ARPA +06-Apr-2017 12:12:40.793 automatic empty zone: 127.IN-ADDR.ARPA +06-Apr-2017 12:12:40.793 automatic empty zone: 254.169.IN-ADDR.ARPA +06-Apr-2017 12:12:40.793 automatic empty zone: 2.0.192.IN-ADDR.ARPA +06-Apr-2017 12:12:40.793 automatic empty zone: 100.51.198.IN-ADDR.ARPA +06-Apr-2017 12:12:40.793 automatic empty zone: 113.0.203.IN-ADDR.ARPA +06-Apr-2017 12:12:40.793 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +06-Apr-2017 12:12:40.793 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +06-Apr-2017 12:12:40.793 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +06-Apr-2017 12:12:40.793 automatic empty zone: D.F.IP6.ARPA +06-Apr-2017 12:12:40.793 automatic empty zone: 8.E.F.IP6.ARPA +06-Apr-2017 12:12:40.793 automatic empty zone: 9.E.F.IP6.ARPA +06-Apr-2017 12:12:40.793 automatic empty zone: A.E.F.IP6.ARPA +06-Apr-2017 12:12:40.793 automatic empty zone: B.E.F.IP6.ARPA +06-Apr-2017 12:12:40.793 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +06-Apr-2017 12:12:40.793 automatic empty zone: EMPTY.AS112.ARPA +06-Apr-2017 12:12:40.793 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +06-Apr-2017 12:12:40.799 configuring command channel from '/opt/local/etc/rndc.key' +06-Apr-2017 12:12:40.799 couldn't add command channel 127.0.0.1#953: file not found +06-Apr-2017 12:12:40.799 configuring command channel from '/opt/local/etc/rndc.key' +06-Apr-2017 12:12:40.799 couldn't add command channel ::1#953: file not found +06-Apr-2017 12:12:40.799 not using config file logging statement for logging due to -g option +06-Apr-2017 12:12:40.800 managed-keys-zone: loaded serial 0 +06-Apr-2017 12:12:40.832 zone local/IN: loaded serial 2 +06-Apr-2017 12:12:40.832 all zones loaded +06-Apr-2017 12:12:40.832 running +06-Apr-2017 12:12:49.199 shutting down +06-Apr-2017 12:12:49.200 no longer listening on 127.0.0.1#5400 +06-Apr-2017 12:12:49.275 exiting +=== Log Marked @ 2017-04-06 12:36:38 +1200 [67733] === +06-Apr-2017 12:36:38.739 starting BIND 9.11.0-P3 +06-Apr-2017 12:36:38.739 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +06-Apr-2017 12:36:38.739 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +06-Apr-2017 12:36:38.739 running as: named -c named.conf -f -p 5400 -g +06-Apr-2017 12:36:38.739 ---------------------------------------------------- +06-Apr-2017 12:36:38.739 BIND 9 is maintained by Internet Systems Consortium, +06-Apr-2017 12:36:38.739 Inc. (ISC), a non-profit 501(c)(3) public-benefit +06-Apr-2017 12:36:38.739 corporation. Support and training for BIND 9 are +06-Apr-2017 12:36:38.739 available at https://www.isc.org/support +06-Apr-2017 12:36:38.739 ---------------------------------------------------- +06-Apr-2017 12:36:38.740 found 8 CPUs, using 8 worker threads +06-Apr-2017 12:36:38.740 using 7 UDP listeners per interface +06-Apr-2017 12:36:38.740 using up to 4096 sockets +06-Apr-2017 12:36:38.753 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +06-Apr-2017 12:36:38.754 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +06-Apr-2017 12:36:38.754 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +06-Apr-2017 12:36:38.755 using default UDP/IPv4 port range: [49152, 65535] +06-Apr-2017 12:36:38.755 using default UDP/IPv6 port range: [49152, 65535] +06-Apr-2017 12:36:38.755 listening on IPv4 interface lo0, 127.0.0.1#5400 +06-Apr-2017 12:36:38.758 generating session key for dynamic DNS +06-Apr-2017 12:36:38.758 could not open file '/opt/local/var/run/named/session.key': Permission denied +06-Apr-2017 12:36:38.758 could not create /opt/local/var/run/named/session.key +06-Apr-2017 12:36:38.758 failed to generate session key for dynamic DNS: permission denied +06-Apr-2017 12:36:38.759 sizing zone task pool based on 1 zones +06-Apr-2017 12:36:38.760 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +06-Apr-2017 12:36:38.765 set up managed keys zone for view _default, file 'managed-keys.bind' +06-Apr-2017 12:36:38.765 automatic empty zone: 10.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 16.172.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 17.172.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 18.172.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 19.172.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 20.172.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 21.172.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 22.172.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 23.172.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 24.172.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 25.172.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 26.172.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 27.172.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 28.172.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 29.172.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 30.172.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 31.172.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 168.192.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 64.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 65.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 66.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 67.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 68.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 69.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 70.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 71.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 72.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 73.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 74.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 75.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 76.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 77.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 78.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 79.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 80.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 81.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 82.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 83.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 84.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 85.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 86.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 87.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 88.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 89.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 90.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 91.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 92.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 93.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 94.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 95.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 96.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 97.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 98.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 99.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 100.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 101.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 102.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 103.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 104.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 105.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 106.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 107.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 108.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 109.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 110.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 111.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 112.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 113.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 114.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 115.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 116.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 117.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 118.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 119.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 120.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 121.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 122.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 123.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 124.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 125.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 126.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 127.100.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 0.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 127.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 254.169.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 2.0.192.IN-ADDR.ARPA +06-Apr-2017 12:36:38.765 automatic empty zone: 100.51.198.IN-ADDR.ARPA +06-Apr-2017 12:36:38.766 automatic empty zone: 113.0.203.IN-ADDR.ARPA +06-Apr-2017 12:36:38.766 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +06-Apr-2017 12:36:38.766 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +06-Apr-2017 12:36:38.766 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +06-Apr-2017 12:36:38.766 automatic empty zone: D.F.IP6.ARPA +06-Apr-2017 12:36:38.766 automatic empty zone: 8.E.F.IP6.ARPA +06-Apr-2017 12:36:38.766 automatic empty zone: 9.E.F.IP6.ARPA +06-Apr-2017 12:36:38.766 automatic empty zone: A.E.F.IP6.ARPA +06-Apr-2017 12:36:38.766 automatic empty zone: B.E.F.IP6.ARPA +06-Apr-2017 12:36:38.766 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +06-Apr-2017 12:36:38.766 automatic empty zone: EMPTY.AS112.ARPA +06-Apr-2017 12:36:38.766 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +06-Apr-2017 12:36:38.769 configuring command channel from '/opt/local/etc/rndc.key' +06-Apr-2017 12:36:38.769 couldn't add command channel 127.0.0.1#953: file not found +06-Apr-2017 12:36:38.769 configuring command channel from '/opt/local/etc/rndc.key' +06-Apr-2017 12:36:38.769 couldn't add command channel ::1#953: file not found +06-Apr-2017 12:36:38.769 not using config file logging statement for logging due to -g option +06-Apr-2017 12:36:38.769 managed-keys-zone: loaded serial 0 +06-Apr-2017 12:36:38.802 zone local/IN: loaded serial 2 +06-Apr-2017 12:36:38.802 all zones loaded +06-Apr-2017 12:36:38.803 running +06-Apr-2017 12:36:48.300 shutting down +06-Apr-2017 12:36:48.300 no longer listening on 127.0.0.1#5400 +06-Apr-2017 12:36:48.377 exiting +=== Log Marked @ 2017-04-06 12:37:33 +1200 [67759] === +06-Apr-2017 12:37:33.966 starting BIND 9.11.0-P3 +06-Apr-2017 12:37:33.966 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +06-Apr-2017 12:37:33.966 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +06-Apr-2017 12:37:33.966 running as: named -c named.conf -f -p 5400 -g +06-Apr-2017 12:37:33.966 ---------------------------------------------------- +06-Apr-2017 12:37:33.966 BIND 9 is maintained by Internet Systems Consortium, +06-Apr-2017 12:37:33.966 Inc. (ISC), a non-profit 501(c)(3) public-benefit +06-Apr-2017 12:37:33.966 corporation. Support and training for BIND 9 are +06-Apr-2017 12:37:33.966 available at https://www.isc.org/support +06-Apr-2017 12:37:33.966 ---------------------------------------------------- +06-Apr-2017 12:37:33.967 found 8 CPUs, using 8 worker threads +06-Apr-2017 12:37:33.967 using 7 UDP listeners per interface +06-Apr-2017 12:37:33.967 using up to 4096 sockets +06-Apr-2017 12:37:33.973 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +06-Apr-2017 12:37:33.973 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +06-Apr-2017 12:37:33.974 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +06-Apr-2017 12:37:33.974 using default UDP/IPv4 port range: [49152, 65535] +06-Apr-2017 12:37:33.974 using default UDP/IPv6 port range: [49152, 65535] +06-Apr-2017 12:37:33.975 listening on IPv4 interface lo0, 127.0.0.1#5400 +06-Apr-2017 12:37:33.978 generating session key for dynamic DNS +06-Apr-2017 12:37:33.978 could not open file '/opt/local/var/run/named/session.key': Permission denied +06-Apr-2017 12:37:33.978 could not create /opt/local/var/run/named/session.key +06-Apr-2017 12:37:33.978 failed to generate session key for dynamic DNS: permission denied +06-Apr-2017 12:37:33.978 sizing zone task pool based on 1 zones +06-Apr-2017 12:37:33.978 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +06-Apr-2017 12:37:33.981 set up managed keys zone for view _default, file 'managed-keys.bind' +06-Apr-2017 12:37:33.981 automatic empty zone: 10.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 16.172.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 17.172.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 18.172.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 19.172.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 20.172.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 21.172.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 22.172.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 23.172.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 24.172.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 25.172.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 26.172.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 27.172.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 28.172.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 29.172.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 30.172.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 31.172.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 168.192.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 64.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 65.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 66.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 67.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 68.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 69.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 70.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 71.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 72.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 73.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 74.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 75.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 76.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 77.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 78.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 79.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 80.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 81.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 82.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 83.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 84.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 85.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 86.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 87.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 88.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 89.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 90.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 91.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 92.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 93.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 94.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 95.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 96.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 97.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 98.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 99.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 100.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 101.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 102.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 103.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 104.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 105.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 106.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 107.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 108.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.981 automatic empty zone: 109.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.982 automatic empty zone: 110.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.982 automatic empty zone: 111.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.982 automatic empty zone: 112.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.982 automatic empty zone: 113.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.982 automatic empty zone: 114.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.982 automatic empty zone: 115.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.982 automatic empty zone: 116.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.982 automatic empty zone: 117.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.982 automatic empty zone: 118.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.982 automatic empty zone: 119.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.982 automatic empty zone: 120.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.982 automatic empty zone: 121.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.982 automatic empty zone: 122.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.982 automatic empty zone: 123.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.982 automatic empty zone: 124.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.982 automatic empty zone: 125.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.982 automatic empty zone: 126.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.982 automatic empty zone: 127.100.IN-ADDR.ARPA +06-Apr-2017 12:37:33.982 automatic empty zone: 0.IN-ADDR.ARPA +06-Apr-2017 12:37:33.982 automatic empty zone: 127.IN-ADDR.ARPA +06-Apr-2017 12:37:33.982 automatic empty zone: 254.169.IN-ADDR.ARPA +06-Apr-2017 12:37:33.982 automatic empty zone: 2.0.192.IN-ADDR.ARPA +06-Apr-2017 12:37:33.982 automatic empty zone: 100.51.198.IN-ADDR.ARPA +06-Apr-2017 12:37:33.982 automatic empty zone: 113.0.203.IN-ADDR.ARPA +06-Apr-2017 12:37:33.982 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +06-Apr-2017 12:37:33.982 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +06-Apr-2017 12:37:33.982 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +06-Apr-2017 12:37:33.982 automatic empty zone: D.F.IP6.ARPA +06-Apr-2017 12:37:33.982 automatic empty zone: 8.E.F.IP6.ARPA +06-Apr-2017 12:37:33.982 automatic empty zone: 9.E.F.IP6.ARPA +06-Apr-2017 12:37:33.982 automatic empty zone: A.E.F.IP6.ARPA +06-Apr-2017 12:37:33.982 automatic empty zone: B.E.F.IP6.ARPA +06-Apr-2017 12:37:33.982 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +06-Apr-2017 12:37:33.982 automatic empty zone: EMPTY.AS112.ARPA +06-Apr-2017 12:37:33.982 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +06-Apr-2017 12:37:33.984 configuring command channel from '/opt/local/etc/rndc.key' +06-Apr-2017 12:37:33.984 couldn't add command channel 127.0.0.1#953: file not found +06-Apr-2017 12:37:33.984 configuring command channel from '/opt/local/etc/rndc.key' +06-Apr-2017 12:37:33.984 couldn't add command channel ::1#953: file not found +06-Apr-2017 12:37:33.984 not using config file logging statement for logging due to -g option +06-Apr-2017 12:37:33.985 managed-keys-zone: loaded serial 0 +06-Apr-2017 12:37:34.013 zone local/IN: loaded serial 2 +06-Apr-2017 12:37:34.013 all zones loaded +06-Apr-2017 12:37:34.014 running +06-Apr-2017 12:37:40.640 shutting down +06-Apr-2017 12:37:40.641 no longer listening on 127.0.0.1#5400 +06-Apr-2017 12:37:40.724 exiting +=== Log Marked @ 2017-04-06 12:38:03 +1200 [67782] === +06-Apr-2017 12:38:03.420 starting BIND 9.11.0-P3 +06-Apr-2017 12:38:03.420 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +06-Apr-2017 12:38:03.420 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +06-Apr-2017 12:38:03.420 running as: named -c named.conf -f -p 5400 -g +06-Apr-2017 12:38:03.420 ---------------------------------------------------- +06-Apr-2017 12:38:03.420 BIND 9 is maintained by Internet Systems Consortium, +06-Apr-2017 12:38:03.420 Inc. (ISC), a non-profit 501(c)(3) public-benefit +06-Apr-2017 12:38:03.420 corporation. Support and training for BIND 9 are +06-Apr-2017 12:38:03.420 available at https://www.isc.org/support +06-Apr-2017 12:38:03.420 ---------------------------------------------------- +06-Apr-2017 12:38:03.420 found 8 CPUs, using 8 worker threads +06-Apr-2017 12:38:03.420 using 7 UDP listeners per interface +06-Apr-2017 12:38:03.420 using up to 4096 sockets +06-Apr-2017 12:38:03.424 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +06-Apr-2017 12:38:03.425 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +06-Apr-2017 12:38:03.425 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +06-Apr-2017 12:38:03.425 using default UDP/IPv4 port range: [49152, 65535] +06-Apr-2017 12:38:03.425 using default UDP/IPv6 port range: [49152, 65535] +06-Apr-2017 12:38:03.427 listening on IPv4 interface lo0, 127.0.0.1#5400 +06-Apr-2017 12:38:03.430 generating session key for dynamic DNS +06-Apr-2017 12:38:03.430 could not open file '/opt/local/var/run/named/session.key': Permission denied +06-Apr-2017 12:38:03.430 could not create /opt/local/var/run/named/session.key +06-Apr-2017 12:38:03.430 failed to generate session key for dynamic DNS: permission denied +06-Apr-2017 12:38:03.430 sizing zone task pool based on 1 zones +06-Apr-2017 12:38:03.430 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +06-Apr-2017 12:38:03.434 set up managed keys zone for view _default, file 'managed-keys.bind' +06-Apr-2017 12:38:03.434 automatic empty zone: 10.IN-ADDR.ARPA +06-Apr-2017 12:38:03.434 automatic empty zone: 16.172.IN-ADDR.ARPA +06-Apr-2017 12:38:03.434 automatic empty zone: 17.172.IN-ADDR.ARPA +06-Apr-2017 12:38:03.434 automatic empty zone: 18.172.IN-ADDR.ARPA +06-Apr-2017 12:38:03.434 automatic empty zone: 19.172.IN-ADDR.ARPA +06-Apr-2017 12:38:03.434 automatic empty zone: 20.172.IN-ADDR.ARPA +06-Apr-2017 12:38:03.434 automatic empty zone: 21.172.IN-ADDR.ARPA +06-Apr-2017 12:38:03.434 automatic empty zone: 22.172.IN-ADDR.ARPA +06-Apr-2017 12:38:03.434 automatic empty zone: 23.172.IN-ADDR.ARPA +06-Apr-2017 12:38:03.434 automatic empty zone: 24.172.IN-ADDR.ARPA +06-Apr-2017 12:38:03.434 automatic empty zone: 25.172.IN-ADDR.ARPA +06-Apr-2017 12:38:03.434 automatic empty zone: 26.172.IN-ADDR.ARPA +06-Apr-2017 12:38:03.434 automatic empty zone: 27.172.IN-ADDR.ARPA +06-Apr-2017 12:38:03.434 automatic empty zone: 28.172.IN-ADDR.ARPA +06-Apr-2017 12:38:03.434 automatic empty zone: 29.172.IN-ADDR.ARPA +06-Apr-2017 12:38:03.434 automatic empty zone: 30.172.IN-ADDR.ARPA +06-Apr-2017 12:38:03.434 automatic empty zone: 31.172.IN-ADDR.ARPA +06-Apr-2017 12:38:03.434 automatic empty zone: 168.192.IN-ADDR.ARPA +06-Apr-2017 12:38:03.434 automatic empty zone: 64.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.434 automatic empty zone: 65.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.434 automatic empty zone: 66.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 67.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 68.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 69.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 70.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 71.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 72.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 73.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 74.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 75.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 76.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 77.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 78.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 79.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 80.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 81.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 82.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 83.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 84.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 85.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 86.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 87.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 88.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 89.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 90.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 91.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 92.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 93.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 94.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 95.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 96.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 97.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 98.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 99.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 100.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 101.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 102.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 103.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 104.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 105.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 106.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 107.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 108.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 109.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 110.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 111.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 112.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 113.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 114.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 115.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 116.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 117.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 118.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 119.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 120.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 121.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 122.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 123.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 124.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 125.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 126.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 127.100.IN-ADDR.ARPA +06-Apr-2017 12:38:03.435 automatic empty zone: 0.IN-ADDR.ARPA +06-Apr-2017 12:38:03.436 automatic empty zone: 127.IN-ADDR.ARPA +06-Apr-2017 12:38:03.436 automatic empty zone: 254.169.IN-ADDR.ARPA +06-Apr-2017 12:38:03.436 automatic empty zone: 2.0.192.IN-ADDR.ARPA +06-Apr-2017 12:38:03.436 automatic empty zone: 100.51.198.IN-ADDR.ARPA +06-Apr-2017 12:38:03.436 automatic empty zone: 113.0.203.IN-ADDR.ARPA +06-Apr-2017 12:38:03.436 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +06-Apr-2017 12:38:03.436 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +06-Apr-2017 12:38:03.436 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +06-Apr-2017 12:38:03.436 automatic empty zone: D.F.IP6.ARPA +06-Apr-2017 12:38:03.436 automatic empty zone: 8.E.F.IP6.ARPA +06-Apr-2017 12:38:03.436 automatic empty zone: 9.E.F.IP6.ARPA +06-Apr-2017 12:38:03.436 automatic empty zone: A.E.F.IP6.ARPA +06-Apr-2017 12:38:03.436 automatic empty zone: B.E.F.IP6.ARPA +06-Apr-2017 12:38:03.436 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +06-Apr-2017 12:38:03.436 automatic empty zone: EMPTY.AS112.ARPA +06-Apr-2017 12:38:03.436 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +06-Apr-2017 12:38:03.440 configuring command channel from '/opt/local/etc/rndc.key' +06-Apr-2017 12:38:03.440 couldn't add command channel 127.0.0.1#953: file not found +06-Apr-2017 12:38:03.440 configuring command channel from '/opt/local/etc/rndc.key' +06-Apr-2017 12:38:03.440 couldn't add command channel ::1#953: file not found +06-Apr-2017 12:38:03.440 not using config file logging statement for logging due to -g option +06-Apr-2017 12:38:03.441 managed-keys-zone: loaded serial 0 +06-Apr-2017 12:38:03.493 zone local/IN: loaded serial 2 +06-Apr-2017 12:38:03.493 all zones loaded +06-Apr-2017 12:38:03.493 running +06-Apr-2017 12:38:12.066 shutting down +06-Apr-2017 12:38:12.067 no longer listening on 127.0.0.1#5400 +06-Apr-2017 12:38:12.139 exiting +=== Log Marked @ 2017-04-06 12:38:57 +1200 [67804] === +06-Apr-2017 12:38:57.189 starting BIND 9.11.0-P3 +06-Apr-2017 12:38:57.189 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +06-Apr-2017 12:38:57.189 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +06-Apr-2017 12:38:57.189 running as: named -c named.conf -f -p 5400 -g +06-Apr-2017 12:38:57.189 ---------------------------------------------------- +06-Apr-2017 12:38:57.189 BIND 9 is maintained by Internet Systems Consortium, +06-Apr-2017 12:38:57.189 Inc. (ISC), a non-profit 501(c)(3) public-benefit +06-Apr-2017 12:38:57.189 corporation. Support and training for BIND 9 are +06-Apr-2017 12:38:57.189 available at https://www.isc.org/support +06-Apr-2017 12:38:57.189 ---------------------------------------------------- +06-Apr-2017 12:38:57.189 found 8 CPUs, using 8 worker threads +06-Apr-2017 12:38:57.189 using 7 UDP listeners per interface +06-Apr-2017 12:38:57.189 using up to 4096 sockets +06-Apr-2017 12:38:57.193 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +06-Apr-2017 12:38:57.193 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +06-Apr-2017 12:38:57.193 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +06-Apr-2017 12:38:57.193 using default UDP/IPv4 port range: [49152, 65535] +06-Apr-2017 12:38:57.193 using default UDP/IPv6 port range: [49152, 65535] +06-Apr-2017 12:38:57.194 listening on IPv4 interface lo0, 127.0.0.1#5400 +06-Apr-2017 12:38:57.196 generating session key for dynamic DNS +06-Apr-2017 12:38:57.196 could not open file '/opt/local/var/run/named/session.key': Permission denied +06-Apr-2017 12:38:57.196 could not create /opt/local/var/run/named/session.key +06-Apr-2017 12:38:57.196 failed to generate session key for dynamic DNS: permission denied +06-Apr-2017 12:38:57.196 sizing zone task pool based on 1 zones +06-Apr-2017 12:38:57.196 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +06-Apr-2017 12:38:57.199 set up managed keys zone for view _default, file 'managed-keys.bind' +06-Apr-2017 12:38:57.199 automatic empty zone: 10.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 16.172.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 17.172.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 18.172.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 19.172.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 20.172.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 21.172.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 22.172.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 23.172.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 24.172.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 25.172.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 26.172.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 27.172.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 28.172.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 29.172.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 30.172.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 31.172.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 168.192.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 64.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 65.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 66.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 67.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 68.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 69.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 70.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 71.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 72.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 73.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 74.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 75.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 76.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 77.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 78.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 79.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 80.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 81.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 82.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 83.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 84.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 85.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 86.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 87.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 88.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 89.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 90.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 91.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 92.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 93.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 94.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 95.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 96.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 97.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 98.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 99.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 100.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 101.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 102.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 103.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 104.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 105.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 106.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 107.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 108.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 109.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 110.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 111.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 112.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 113.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 114.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 115.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.199 automatic empty zone: 116.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.200 automatic empty zone: 117.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.200 automatic empty zone: 118.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.200 automatic empty zone: 119.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.200 automatic empty zone: 120.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.200 automatic empty zone: 121.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.200 automatic empty zone: 122.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.200 automatic empty zone: 123.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.200 automatic empty zone: 124.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.200 automatic empty zone: 125.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.200 automatic empty zone: 126.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.200 automatic empty zone: 127.100.IN-ADDR.ARPA +06-Apr-2017 12:38:57.200 automatic empty zone: 0.IN-ADDR.ARPA +06-Apr-2017 12:38:57.200 automatic empty zone: 127.IN-ADDR.ARPA +06-Apr-2017 12:38:57.200 automatic empty zone: 254.169.IN-ADDR.ARPA +06-Apr-2017 12:38:57.200 automatic empty zone: 2.0.192.IN-ADDR.ARPA +06-Apr-2017 12:38:57.200 automatic empty zone: 100.51.198.IN-ADDR.ARPA +06-Apr-2017 12:38:57.200 automatic empty zone: 113.0.203.IN-ADDR.ARPA +06-Apr-2017 12:38:57.200 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +06-Apr-2017 12:38:57.200 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +06-Apr-2017 12:38:57.200 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +06-Apr-2017 12:38:57.200 automatic empty zone: D.F.IP6.ARPA +06-Apr-2017 12:38:57.200 automatic empty zone: 8.E.F.IP6.ARPA +06-Apr-2017 12:38:57.200 automatic empty zone: 9.E.F.IP6.ARPA +06-Apr-2017 12:38:57.200 automatic empty zone: A.E.F.IP6.ARPA +06-Apr-2017 12:38:57.200 automatic empty zone: B.E.F.IP6.ARPA +06-Apr-2017 12:38:57.200 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +06-Apr-2017 12:38:57.200 automatic empty zone: EMPTY.AS112.ARPA +06-Apr-2017 12:38:57.200 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +06-Apr-2017 12:38:57.202 configuring command channel from '/opt/local/etc/rndc.key' +06-Apr-2017 12:38:57.202 couldn't add command channel 127.0.0.1#953: file not found +06-Apr-2017 12:38:57.202 configuring command channel from '/opt/local/etc/rndc.key' +06-Apr-2017 12:38:57.202 couldn't add command channel ::1#953: file not found +06-Apr-2017 12:38:57.202 not using config file logging statement for logging due to -g option +06-Apr-2017 12:38:57.203 managed-keys-zone: loaded serial 0 +06-Apr-2017 12:38:57.229 zone local/IN: loaded serial 2 +06-Apr-2017 12:38:57.229 all zones loaded +06-Apr-2017 12:38:57.229 running +06-Apr-2017 12:39:04.993 shutting down +06-Apr-2017 12:39:04.993 no longer listening on 127.0.0.1#5400 +06-Apr-2017 12:39:05.056 exiting +=== Log Marked @ 2017-04-08 02:27:47 +1200 [75551] === +08-Apr-2017 02:27:47.235 starting BIND 9.11.0-P3 +08-Apr-2017 02:27:47.235 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +08-Apr-2017 02:27:47.235 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +08-Apr-2017 02:27:47.235 running as: named -c named.conf -f -p 5400 -g +08-Apr-2017 02:27:47.235 ---------------------------------------------------- +08-Apr-2017 02:27:47.235 BIND 9 is maintained by Internet Systems Consortium, +08-Apr-2017 02:27:47.236 Inc. (ISC), a non-profit 501(c)(3) public-benefit +08-Apr-2017 02:27:47.236 corporation. Support and training for BIND 9 are +08-Apr-2017 02:27:47.236 available at https://www.isc.org/support +08-Apr-2017 02:27:47.236 ---------------------------------------------------- +08-Apr-2017 02:27:47.236 found 8 CPUs, using 8 worker threads +08-Apr-2017 02:27:47.236 using 7 UDP listeners per interface +08-Apr-2017 02:27:47.237 using up to 4096 sockets +08-Apr-2017 02:27:47.255 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +08-Apr-2017 02:27:47.255 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +08-Apr-2017 02:27:47.256 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +08-Apr-2017 02:27:47.257 using default UDP/IPv4 port range: [49152, 65535] +08-Apr-2017 02:27:47.257 using default UDP/IPv6 port range: [49152, 65535] +08-Apr-2017 02:27:47.258 listening on IPv4 interface lo0, 127.0.0.1#5400 +08-Apr-2017 02:27:47.261 generating session key for dynamic DNS +08-Apr-2017 02:27:47.262 could not open file '/opt/local/var/run/named/session.key': Permission denied +08-Apr-2017 02:27:47.262 could not create /opt/local/var/run/named/session.key +08-Apr-2017 02:27:47.262 failed to generate session key for dynamic DNS: permission denied +08-Apr-2017 02:27:47.263 sizing zone task pool based on 1 zones +08-Apr-2017 02:27:47.265 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +08-Apr-2017 02:27:47.270 set up managed keys zone for view _default, file 'managed-keys.bind' +08-Apr-2017 02:27:47.270 automatic empty zone: 10.IN-ADDR.ARPA +08-Apr-2017 02:27:47.270 automatic empty zone: 16.172.IN-ADDR.ARPA +08-Apr-2017 02:27:47.270 automatic empty zone: 17.172.IN-ADDR.ARPA +08-Apr-2017 02:27:47.270 automatic empty zone: 18.172.IN-ADDR.ARPA +08-Apr-2017 02:27:47.270 automatic empty zone: 19.172.IN-ADDR.ARPA +08-Apr-2017 02:27:47.270 automatic empty zone: 20.172.IN-ADDR.ARPA +08-Apr-2017 02:27:47.270 automatic empty zone: 21.172.IN-ADDR.ARPA +08-Apr-2017 02:27:47.270 automatic empty zone: 22.172.IN-ADDR.ARPA +08-Apr-2017 02:27:47.270 automatic empty zone: 23.172.IN-ADDR.ARPA +08-Apr-2017 02:27:47.270 automatic empty zone: 24.172.IN-ADDR.ARPA +08-Apr-2017 02:27:47.270 automatic empty zone: 25.172.IN-ADDR.ARPA +08-Apr-2017 02:27:47.270 automatic empty zone: 26.172.IN-ADDR.ARPA +08-Apr-2017 02:27:47.270 automatic empty zone: 27.172.IN-ADDR.ARPA +08-Apr-2017 02:27:47.270 automatic empty zone: 28.172.IN-ADDR.ARPA +08-Apr-2017 02:27:47.270 automatic empty zone: 29.172.IN-ADDR.ARPA +08-Apr-2017 02:27:47.270 automatic empty zone: 30.172.IN-ADDR.ARPA +08-Apr-2017 02:27:47.270 automatic empty zone: 31.172.IN-ADDR.ARPA +08-Apr-2017 02:27:47.270 automatic empty zone: 168.192.IN-ADDR.ARPA +08-Apr-2017 02:27:47.270 automatic empty zone: 64.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.270 automatic empty zone: 65.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.270 automatic empty zone: 66.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.270 automatic empty zone: 67.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.270 automatic empty zone: 68.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.270 automatic empty zone: 69.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.270 automatic empty zone: 70.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.270 automatic empty zone: 71.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 72.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 73.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 74.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 75.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 76.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 77.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 78.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 79.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 80.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 81.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 82.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 83.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 84.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 85.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 86.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 87.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 88.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 89.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 90.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 91.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 92.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 93.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 94.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 95.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 96.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 97.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 98.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 99.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 100.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 101.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 102.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 103.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 104.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 105.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 106.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 107.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 108.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 109.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 110.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 111.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 112.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 113.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 114.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 115.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 116.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 117.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 118.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 119.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 120.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 121.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 122.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 123.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 124.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 125.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 126.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 127.100.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 0.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 127.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 254.169.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 2.0.192.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 100.51.198.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 113.0.203.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: D.F.IP6.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 8.E.F.IP6.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 9.E.F.IP6.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: A.E.F.IP6.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: B.E.F.IP6.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +08-Apr-2017 02:27:47.271 automatic empty zone: EMPTY.AS112.ARPA +08-Apr-2017 02:27:47.272 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +08-Apr-2017 02:27:47.275 configuring command channel from '/opt/local/etc/rndc.key' +08-Apr-2017 02:27:47.275 couldn't add command channel 127.0.0.1#953: file not found +08-Apr-2017 02:27:47.275 configuring command channel from '/opt/local/etc/rndc.key' +08-Apr-2017 02:27:47.275 couldn't add command channel ::1#953: file not found +08-Apr-2017 02:27:47.275 not using config file logging statement for logging due to -g option +08-Apr-2017 02:27:47.276 managed-keys-zone: loaded serial 0 +08-Apr-2017 02:27:47.309 zone local/IN: loaded serial 2 +08-Apr-2017 02:27:47.310 all zones loaded +08-Apr-2017 02:27:47.310 running +08-Apr-2017 02:27:47.316 shutting down +08-Apr-2017 02:27:47.316 no longer listening on 127.0.0.1#5400 +08-Apr-2017 02:27:47.403 exiting +=== Log Marked @ 2017-04-08 02:28:30 +1200 [75573] === +08-Apr-2017 02:28:30.827 starting BIND 9.11.0-P3 +08-Apr-2017 02:28:30.827 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +08-Apr-2017 02:28:30.827 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +08-Apr-2017 02:28:30.827 running as: named -c named.conf -f -p 5400 -g +08-Apr-2017 02:28:30.827 ---------------------------------------------------- +08-Apr-2017 02:28:30.827 BIND 9 is maintained by Internet Systems Consortium, +08-Apr-2017 02:28:30.827 Inc. (ISC), a non-profit 501(c)(3) public-benefit +08-Apr-2017 02:28:30.827 corporation. Support and training for BIND 9 are +08-Apr-2017 02:28:30.827 available at https://www.isc.org/support +08-Apr-2017 02:28:30.827 ---------------------------------------------------- +08-Apr-2017 02:28:30.827 found 8 CPUs, using 8 worker threads +08-Apr-2017 02:28:30.827 using 7 UDP listeners per interface +08-Apr-2017 02:28:30.827 using up to 4096 sockets +08-Apr-2017 02:28:30.832 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +08-Apr-2017 02:28:30.832 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +08-Apr-2017 02:28:30.832 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +08-Apr-2017 02:28:30.833 using default UDP/IPv4 port range: [49152, 65535] +08-Apr-2017 02:28:30.833 using default UDP/IPv6 port range: [49152, 65535] +08-Apr-2017 02:28:30.833 listening on IPv4 interface lo0, 127.0.0.1#5400 +08-Apr-2017 02:28:30.836 generating session key for dynamic DNS +08-Apr-2017 02:28:30.836 could not open file '/opt/local/var/run/named/session.key': Permission denied +08-Apr-2017 02:28:30.836 could not create /opt/local/var/run/named/session.key +08-Apr-2017 02:28:30.836 failed to generate session key for dynamic DNS: permission denied +08-Apr-2017 02:28:30.836 sizing zone task pool based on 1 zones +08-Apr-2017 02:28:30.836 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +08-Apr-2017 02:28:30.838 set up managed keys zone for view _default, file 'managed-keys.bind' +08-Apr-2017 02:28:30.838 automatic empty zone: 10.IN-ADDR.ARPA +08-Apr-2017 02:28:30.838 automatic empty zone: 16.172.IN-ADDR.ARPA +08-Apr-2017 02:28:30.838 automatic empty zone: 17.172.IN-ADDR.ARPA +08-Apr-2017 02:28:30.838 automatic empty zone: 18.172.IN-ADDR.ARPA +08-Apr-2017 02:28:30.838 automatic empty zone: 19.172.IN-ADDR.ARPA +08-Apr-2017 02:28:30.838 automatic empty zone: 20.172.IN-ADDR.ARPA +08-Apr-2017 02:28:30.838 automatic empty zone: 21.172.IN-ADDR.ARPA +08-Apr-2017 02:28:30.838 automatic empty zone: 22.172.IN-ADDR.ARPA +08-Apr-2017 02:28:30.838 automatic empty zone: 23.172.IN-ADDR.ARPA +08-Apr-2017 02:28:30.838 automatic empty zone: 24.172.IN-ADDR.ARPA +08-Apr-2017 02:28:30.838 automatic empty zone: 25.172.IN-ADDR.ARPA +08-Apr-2017 02:28:30.838 automatic empty zone: 26.172.IN-ADDR.ARPA +08-Apr-2017 02:28:30.838 automatic empty zone: 27.172.IN-ADDR.ARPA +08-Apr-2017 02:28:30.838 automatic empty zone: 28.172.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 29.172.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 30.172.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 31.172.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 168.192.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 64.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 65.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 66.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 67.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 68.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 69.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 70.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 71.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 72.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 73.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 74.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 75.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 76.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 77.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 78.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 79.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 80.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 81.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 82.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 83.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 84.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 85.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 86.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 87.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 88.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 89.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 90.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 91.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 92.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 93.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 94.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 95.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 96.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 97.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 98.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 99.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 100.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 101.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 102.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 103.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 104.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 105.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 106.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 107.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 108.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 109.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 110.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 111.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 112.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 113.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 114.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 115.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 116.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 117.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 118.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 119.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 120.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 121.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 122.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 123.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 124.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 125.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 126.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 127.100.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 0.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 127.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 254.169.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 2.0.192.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 100.51.198.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 113.0.203.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: D.F.IP6.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 8.E.F.IP6.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 9.E.F.IP6.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: A.E.F.IP6.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: B.E.F.IP6.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +08-Apr-2017 02:28:30.839 automatic empty zone: EMPTY.AS112.ARPA +08-Apr-2017 02:28:30.839 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +08-Apr-2017 02:28:30.842 configuring command channel from '/opt/local/etc/rndc.key' +08-Apr-2017 02:28:30.842 couldn't add command channel 127.0.0.1#953: file not found +08-Apr-2017 02:28:30.842 configuring command channel from '/opt/local/etc/rndc.key' +08-Apr-2017 02:28:30.842 couldn't add command channel ::1#953: file not found +08-Apr-2017 02:28:30.842 not using config file logging statement for logging due to -g option +08-Apr-2017 02:28:30.842 managed-keys-zone: loaded serial 0 +08-Apr-2017 02:28:30.879 zone local/IN: loaded serial 2 +08-Apr-2017 02:28:30.879 all zones loaded +08-Apr-2017 02:28:30.879 running +08-Apr-2017 02:28:30.923 shutting down +08-Apr-2017 02:28:30.924 no longer listening on 127.0.0.1#5400 +08-Apr-2017 02:28:30.998 exiting +=== Log Marked @ 2017-04-08 02:29:33 +1200 [75587] === +08-Apr-2017 02:29:33.470 starting BIND 9.11.0-P3 +08-Apr-2017 02:29:33.470 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +08-Apr-2017 02:29:33.470 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +08-Apr-2017 02:29:33.470 running as: named -c named.conf -f -p 5400 -g +08-Apr-2017 02:29:33.470 ---------------------------------------------------- +08-Apr-2017 02:29:33.470 BIND 9 is maintained by Internet Systems Consortium, +08-Apr-2017 02:29:33.470 Inc. (ISC), a non-profit 501(c)(3) public-benefit +08-Apr-2017 02:29:33.470 corporation. Support and training for BIND 9 are +08-Apr-2017 02:29:33.470 available at https://www.isc.org/support +08-Apr-2017 02:29:33.470 ---------------------------------------------------- +08-Apr-2017 02:29:33.470 found 8 CPUs, using 8 worker threads +08-Apr-2017 02:29:33.470 using 7 UDP listeners per interface +08-Apr-2017 02:29:33.470 using up to 4096 sockets +08-Apr-2017 02:29:33.474 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +08-Apr-2017 02:29:33.474 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +08-Apr-2017 02:29:33.474 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +08-Apr-2017 02:29:33.474 using default UDP/IPv4 port range: [49152, 65535] +08-Apr-2017 02:29:33.474 using default UDP/IPv6 port range: [49152, 65535] +08-Apr-2017 02:29:33.475 listening on IPv4 interface lo0, 127.0.0.1#5400 +08-Apr-2017 02:29:33.477 generating session key for dynamic DNS +08-Apr-2017 02:29:33.477 could not open file '/opt/local/var/run/named/session.key': Permission denied +08-Apr-2017 02:29:33.477 could not create /opt/local/var/run/named/session.key +08-Apr-2017 02:29:33.477 failed to generate session key for dynamic DNS: permission denied +08-Apr-2017 02:29:33.477 sizing zone task pool based on 1 zones +08-Apr-2017 02:29:33.477 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +08-Apr-2017 02:29:33.480 set up managed keys zone for view _default, file 'managed-keys.bind' +08-Apr-2017 02:29:33.480 automatic empty zone: 10.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 16.172.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 17.172.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 18.172.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 19.172.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 20.172.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 21.172.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 22.172.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 23.172.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 24.172.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 25.172.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 26.172.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 27.172.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 28.172.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 29.172.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 30.172.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 31.172.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 168.192.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 64.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 65.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 66.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 67.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 68.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 69.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 70.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 71.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 72.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 73.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 74.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 75.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 76.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 77.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 78.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 79.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 80.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 81.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 82.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 83.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 84.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 85.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 86.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 87.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 88.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 89.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 90.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 91.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 92.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 93.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 94.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 95.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 96.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 97.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 98.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 99.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 100.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 101.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 102.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 103.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 104.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.480 automatic empty zone: 105.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: 106.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: 107.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: 108.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: 109.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: 110.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: 111.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: 112.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: 113.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: 114.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: 115.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: 116.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: 117.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: 118.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: 119.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: 120.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: 121.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: 122.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: 123.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: 124.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: 125.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: 126.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: 127.100.IN-ADDR.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: 0.IN-ADDR.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: 127.IN-ADDR.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: 254.169.IN-ADDR.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: 2.0.192.IN-ADDR.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: 100.51.198.IN-ADDR.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: 113.0.203.IN-ADDR.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: D.F.IP6.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: 8.E.F.IP6.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: 9.E.F.IP6.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: A.E.F.IP6.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: B.E.F.IP6.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +08-Apr-2017 02:29:33.481 automatic empty zone: EMPTY.AS112.ARPA +08-Apr-2017 02:29:33.481 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +08-Apr-2017 02:29:33.483 configuring command channel from '/opt/local/etc/rndc.key' +08-Apr-2017 02:29:33.483 couldn't add command channel 127.0.0.1#953: file not found +08-Apr-2017 02:29:33.483 configuring command channel from '/opt/local/etc/rndc.key' +08-Apr-2017 02:29:33.483 couldn't add command channel ::1#953: file not found +08-Apr-2017 02:29:33.483 not using config file logging statement for logging due to -g option +08-Apr-2017 02:29:33.484 managed-keys-zone: loaded serial 0 +08-Apr-2017 02:29:33.518 zone local/IN: loaded serial 2 +08-Apr-2017 02:29:33.518 all zones loaded +08-Apr-2017 02:29:33.518 running +08-Apr-2017 02:29:39.287 shutting down +08-Apr-2017 02:29:39.287 no longer listening on 127.0.0.1#5400 +08-Apr-2017 02:29:39.358 exiting +=== Log Marked @ 2017-04-08 02:30:21 +1200 [75604] === +08-Apr-2017 02:30:21.735 starting BIND 9.11.0-P3 +08-Apr-2017 02:30:21.735 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +08-Apr-2017 02:30:21.735 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +08-Apr-2017 02:30:21.735 running as: named -c named.conf -f -p 5400 -g +08-Apr-2017 02:30:21.735 ---------------------------------------------------- +08-Apr-2017 02:30:21.735 BIND 9 is maintained by Internet Systems Consortium, +08-Apr-2017 02:30:21.735 Inc. (ISC), a non-profit 501(c)(3) public-benefit +08-Apr-2017 02:30:21.735 corporation. Support and training for BIND 9 are +08-Apr-2017 02:30:21.735 available at https://www.isc.org/support +08-Apr-2017 02:30:21.735 ---------------------------------------------------- +08-Apr-2017 02:30:21.736 found 8 CPUs, using 8 worker threads +08-Apr-2017 02:30:21.736 using 7 UDP listeners per interface +08-Apr-2017 02:30:21.736 using up to 4096 sockets +08-Apr-2017 02:30:21.740 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +08-Apr-2017 02:30:21.740 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +08-Apr-2017 02:30:21.740 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +08-Apr-2017 02:30:21.740 using default UDP/IPv4 port range: [49152, 65535] +08-Apr-2017 02:30:21.740 using default UDP/IPv6 port range: [49152, 65535] +08-Apr-2017 02:30:21.741 listening on IPv4 interface lo0, 127.0.0.1#5400 +08-Apr-2017 02:30:21.744 generating session key for dynamic DNS +08-Apr-2017 02:30:21.744 could not open file '/opt/local/var/run/named/session.key': Permission denied +08-Apr-2017 02:30:21.744 could not create /opt/local/var/run/named/session.key +08-Apr-2017 02:30:21.744 failed to generate session key for dynamic DNS: permission denied +08-Apr-2017 02:30:21.744 sizing zone task pool based on 1 zones +08-Apr-2017 02:30:21.744 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +08-Apr-2017 02:30:21.746 set up managed keys zone for view _default, file 'managed-keys.bind' +08-Apr-2017 02:30:21.746 automatic empty zone: 10.IN-ADDR.ARPA +08-Apr-2017 02:30:21.746 automatic empty zone: 16.172.IN-ADDR.ARPA +08-Apr-2017 02:30:21.746 automatic empty zone: 17.172.IN-ADDR.ARPA +08-Apr-2017 02:30:21.746 automatic empty zone: 18.172.IN-ADDR.ARPA +08-Apr-2017 02:30:21.746 automatic empty zone: 19.172.IN-ADDR.ARPA +08-Apr-2017 02:30:21.746 automatic empty zone: 20.172.IN-ADDR.ARPA +08-Apr-2017 02:30:21.746 automatic empty zone: 21.172.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 22.172.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 23.172.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 24.172.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 25.172.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 26.172.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 27.172.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 28.172.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 29.172.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 30.172.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 31.172.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 168.192.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 64.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 65.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 66.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 67.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 68.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 69.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 70.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 71.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 72.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 73.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 74.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 75.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 76.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 77.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 78.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 79.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 80.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 81.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 82.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 83.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 84.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 85.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 86.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 87.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 88.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 89.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 90.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 91.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 92.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 93.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 94.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 95.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 96.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 97.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 98.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 99.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 100.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 101.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 102.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 103.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 104.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 105.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 106.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 107.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 108.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 109.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 110.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 111.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 112.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 113.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 114.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 115.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 116.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 117.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 118.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 119.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 120.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 121.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 122.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 123.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 124.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 125.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 126.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 127.100.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 0.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 127.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 254.169.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 2.0.192.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 100.51.198.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 113.0.203.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: D.F.IP6.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 8.E.F.IP6.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 9.E.F.IP6.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: A.E.F.IP6.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: B.E.F.IP6.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +08-Apr-2017 02:30:21.747 automatic empty zone: EMPTY.AS112.ARPA +08-Apr-2017 02:30:21.748 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +08-Apr-2017 02:30:21.750 configuring command channel from '/opt/local/etc/rndc.key' +08-Apr-2017 02:30:21.750 couldn't add command channel 127.0.0.1#953: file not found +08-Apr-2017 02:30:21.750 configuring command channel from '/opt/local/etc/rndc.key' +08-Apr-2017 02:30:21.750 couldn't add command channel ::1#953: file not found +08-Apr-2017 02:30:21.750 not using config file logging statement for logging due to -g option +08-Apr-2017 02:30:21.750 managed-keys-zone: loaded serial 0 +08-Apr-2017 02:30:21.784 zone local/IN: loaded serial 2 +08-Apr-2017 02:30:21.785 all zones loaded +08-Apr-2017 02:30:21.785 running +08-Apr-2017 02:30:28.196 shutting down +08-Apr-2017 02:30:28.197 no longer listening on 127.0.0.1#5400 +08-Apr-2017 02:30:28.277 exiting +=== Log Marked @ 2017-04-08 02:49:44 +1200 [76142] === +08-Apr-2017 02:49:44.149 starting BIND 9.11.0-P3 +08-Apr-2017 02:49:44.149 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +08-Apr-2017 02:49:44.149 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +08-Apr-2017 02:49:44.149 running as: named -c named.conf -f -p 5400 -g +08-Apr-2017 02:49:44.149 ---------------------------------------------------- +08-Apr-2017 02:49:44.149 BIND 9 is maintained by Internet Systems Consortium, +08-Apr-2017 02:49:44.149 Inc. (ISC), a non-profit 501(c)(3) public-benefit +08-Apr-2017 02:49:44.149 corporation. Support and training for BIND 9 are +08-Apr-2017 02:49:44.149 available at https://www.isc.org/support +08-Apr-2017 02:49:44.149 ---------------------------------------------------- +08-Apr-2017 02:49:44.149 found 8 CPUs, using 8 worker threads +08-Apr-2017 02:49:44.149 using 7 UDP listeners per interface +08-Apr-2017 02:49:44.149 using up to 4096 sockets +08-Apr-2017 02:49:44.166 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +08-Apr-2017 02:49:44.167 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +08-Apr-2017 02:49:44.167 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +08-Apr-2017 02:49:44.168 using default UDP/IPv4 port range: [49152, 65535] +08-Apr-2017 02:49:44.168 using default UDP/IPv6 port range: [49152, 65535] +08-Apr-2017 02:49:44.169 listening on IPv4 interface lo0, 127.0.0.1#5400 +08-Apr-2017 02:49:44.171 generating session key for dynamic DNS +08-Apr-2017 02:49:44.171 could not open file '/opt/local/var/run/named/session.key': Permission denied +08-Apr-2017 02:49:44.171 could not create /opt/local/var/run/named/session.key +08-Apr-2017 02:49:44.171 failed to generate session key for dynamic DNS: permission denied +08-Apr-2017 02:49:44.172 sizing zone task pool based on 1 zones +08-Apr-2017 02:49:44.173 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +08-Apr-2017 02:49:44.176 set up managed keys zone for view _default, file 'managed-keys.bind' +08-Apr-2017 02:49:44.176 automatic empty zone: 10.IN-ADDR.ARPA +08-Apr-2017 02:49:44.176 automatic empty zone: 16.172.IN-ADDR.ARPA +08-Apr-2017 02:49:44.176 automatic empty zone: 17.172.IN-ADDR.ARPA +08-Apr-2017 02:49:44.176 automatic empty zone: 18.172.IN-ADDR.ARPA +08-Apr-2017 02:49:44.176 automatic empty zone: 19.172.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 20.172.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 21.172.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 22.172.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 23.172.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 24.172.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 25.172.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 26.172.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 27.172.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 28.172.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 29.172.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 30.172.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 31.172.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 168.192.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 64.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 65.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 66.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 67.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 68.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 69.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 70.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 71.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 72.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 73.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 74.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 75.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 76.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 77.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 78.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 79.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 80.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 81.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 82.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 83.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 84.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 85.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 86.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 87.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 88.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 89.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 90.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 91.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 92.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 93.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 94.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.177 automatic empty zone: 95.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 96.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 97.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 98.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 99.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 100.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 101.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 102.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 103.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 104.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 105.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 106.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 107.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 108.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 109.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 110.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 111.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 112.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 113.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 114.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 115.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 116.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 117.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 118.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 119.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 120.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 121.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 122.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 123.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 124.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 125.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 126.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 127.100.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 0.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 127.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 254.169.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 2.0.192.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 100.51.198.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 113.0.203.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: D.F.IP6.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 8.E.F.IP6.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 9.E.F.IP6.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: A.E.F.IP6.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: B.E.F.IP6.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +08-Apr-2017 02:49:44.179 automatic empty zone: EMPTY.AS112.ARPA +08-Apr-2017 02:49:44.179 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +08-Apr-2017 02:49:44.182 configuring command channel from '/opt/local/etc/rndc.key' +08-Apr-2017 02:49:44.182 couldn't add command channel 127.0.0.1#953: file not found +08-Apr-2017 02:49:44.182 configuring command channel from '/opt/local/etc/rndc.key' +08-Apr-2017 02:49:44.182 couldn't add command channel ::1#953: file not found +08-Apr-2017 02:49:44.182 not using config file logging statement for logging due to -g option +08-Apr-2017 02:49:44.182 managed-keys-zone: loaded serial 0 +08-Apr-2017 02:49:44.210 zone local/IN: loaded serial 2 +08-Apr-2017 02:49:44.210 all zones loaded +08-Apr-2017 02:49:44.210 running +08-Apr-2017 02:49:50.078 shutting down +08-Apr-2017 02:49:50.079 no longer listening on 127.0.0.1#5400 +08-Apr-2017 02:49:50.144 exiting +=== Log Marked @ 2017-04-08 03:15:06 +1200 [76510] === +08-Apr-2017 03:15:06.944 starting BIND 9.11.0-P3 +08-Apr-2017 03:15:06.944 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +08-Apr-2017 03:15:06.944 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +08-Apr-2017 03:15:06.944 running as: named -c named.conf -f -p 5400 -g +08-Apr-2017 03:15:06.944 ---------------------------------------------------- +08-Apr-2017 03:15:06.944 BIND 9 is maintained by Internet Systems Consortium, +08-Apr-2017 03:15:06.944 Inc. (ISC), a non-profit 501(c)(3) public-benefit +08-Apr-2017 03:15:06.944 corporation. Support and training for BIND 9 are +08-Apr-2017 03:15:06.944 available at https://www.isc.org/support +08-Apr-2017 03:15:06.944 ---------------------------------------------------- +08-Apr-2017 03:15:06.944 found 8 CPUs, using 8 worker threads +08-Apr-2017 03:15:06.944 using 7 UDP listeners per interface +08-Apr-2017 03:15:06.945 using up to 4096 sockets +08-Apr-2017 03:15:06.949 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +08-Apr-2017 03:15:06.949 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +08-Apr-2017 03:15:06.949 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +08-Apr-2017 03:15:06.949 using default UDP/IPv4 port range: [49152, 65535] +08-Apr-2017 03:15:06.949 using default UDP/IPv6 port range: [49152, 65535] +08-Apr-2017 03:15:06.950 listening on IPv4 interface lo0, 127.0.0.1#5400 +08-Apr-2017 03:15:06.952 generating session key for dynamic DNS +08-Apr-2017 03:15:06.952 could not open file '/opt/local/var/run/named/session.key': Permission denied +08-Apr-2017 03:15:06.952 could not create /opt/local/var/run/named/session.key +08-Apr-2017 03:15:06.952 failed to generate session key for dynamic DNS: permission denied +08-Apr-2017 03:15:06.952 sizing zone task pool based on 1 zones +08-Apr-2017 03:15:06.952 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +08-Apr-2017 03:15:06.955 set up managed keys zone for view _default, file 'managed-keys.bind' +08-Apr-2017 03:15:06.955 automatic empty zone: 10.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 16.172.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 17.172.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 18.172.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 19.172.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 20.172.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 21.172.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 22.172.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 23.172.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 24.172.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 25.172.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 26.172.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 27.172.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 28.172.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 29.172.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 30.172.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 31.172.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 168.192.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 64.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 65.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 66.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 67.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 68.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 69.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 70.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 71.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 72.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 73.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 74.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 75.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 76.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 77.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 78.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 79.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 80.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 81.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.955 automatic empty zone: 82.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 83.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 84.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 85.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 86.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 87.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 88.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 89.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 90.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 91.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 92.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 93.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 94.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 95.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 96.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 97.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 98.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 99.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 100.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 101.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 102.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 103.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 104.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 105.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 106.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 107.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 108.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 109.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 110.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 111.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 112.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 113.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 114.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 115.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 116.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 117.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 118.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 119.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 120.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 121.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 122.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 123.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 124.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 125.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 126.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 127.100.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 0.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 127.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 254.169.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 2.0.192.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 100.51.198.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 113.0.203.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: D.F.IP6.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 8.E.F.IP6.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 9.E.F.IP6.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: A.E.F.IP6.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: B.E.F.IP6.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +08-Apr-2017 03:15:06.956 automatic empty zone: EMPTY.AS112.ARPA +08-Apr-2017 03:15:06.956 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +08-Apr-2017 03:15:06.959 configuring command channel from '/opt/local/etc/rndc.key' +08-Apr-2017 03:15:06.959 couldn't add command channel 127.0.0.1#953: file not found +08-Apr-2017 03:15:06.959 configuring command channel from '/opt/local/etc/rndc.key' +08-Apr-2017 03:15:06.959 couldn't add command channel ::1#953: file not found +08-Apr-2017 03:15:06.959 not using config file logging statement for logging due to -g option +08-Apr-2017 03:15:06.959 managed-keys-zone: loaded serial 0 +08-Apr-2017 03:15:06.990 zone local/IN: loaded serial 2 +08-Apr-2017 03:15:06.990 all zones loaded +08-Apr-2017 03:15:06.990 running +08-Apr-2017 03:15:13.007 shutting down +08-Apr-2017 03:15:13.007 no longer listening on 127.0.0.1#5400 +08-Apr-2017 03:15:13.083 exiting +=== Log Marked @ 2017-04-08 04:07:22 +1200 [76758] === +08-Apr-2017 04:07:22.702 starting BIND 9.11.0-P3 +08-Apr-2017 04:07:22.702 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +08-Apr-2017 04:07:22.702 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +08-Apr-2017 04:07:22.702 running as: named -c named.conf -f -p 5400 -g +08-Apr-2017 04:07:22.702 ---------------------------------------------------- +08-Apr-2017 04:07:22.702 BIND 9 is maintained by Internet Systems Consortium, +08-Apr-2017 04:07:22.702 Inc. (ISC), a non-profit 501(c)(3) public-benefit +08-Apr-2017 04:07:22.702 corporation. Support and training for BIND 9 are +08-Apr-2017 04:07:22.702 available at https://www.isc.org/support +08-Apr-2017 04:07:22.702 ---------------------------------------------------- +08-Apr-2017 04:07:22.702 found 8 CPUs, using 8 worker threads +08-Apr-2017 04:07:22.702 using 7 UDP listeners per interface +08-Apr-2017 04:07:22.702 using up to 4096 sockets +08-Apr-2017 04:07:22.706 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +08-Apr-2017 04:07:22.706 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +08-Apr-2017 04:07:22.707 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +08-Apr-2017 04:07:22.707 using default UDP/IPv4 port range: [49152, 65535] +08-Apr-2017 04:07:22.707 using default UDP/IPv6 port range: [49152, 65535] +08-Apr-2017 04:07:22.708 listening on IPv4 interface lo0, 127.0.0.1#5400 +08-Apr-2017 04:07:22.710 generating session key for dynamic DNS +08-Apr-2017 04:07:22.710 could not open file '/opt/local/var/run/named/session.key': Permission denied +08-Apr-2017 04:07:22.710 could not create /opt/local/var/run/named/session.key +08-Apr-2017 04:07:22.710 failed to generate session key for dynamic DNS: permission denied +08-Apr-2017 04:07:22.710 sizing zone task pool based on 1 zones +08-Apr-2017 04:07:22.710 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +08-Apr-2017 04:07:22.713 set up managed keys zone for view _default, file 'managed-keys.bind' +08-Apr-2017 04:07:22.713 automatic empty zone: 10.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 16.172.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 17.172.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 18.172.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 19.172.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 20.172.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 21.172.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 22.172.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 23.172.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 24.172.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 25.172.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 26.172.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 27.172.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 28.172.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 29.172.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 30.172.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 31.172.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 168.192.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 64.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 65.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 66.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 67.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 68.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 69.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 70.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 71.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 72.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 73.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 74.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 75.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 76.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 77.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 78.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 79.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 80.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 81.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 82.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 83.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 84.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 85.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 86.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 87.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 88.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 89.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 90.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 91.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 92.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 93.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 94.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 95.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 96.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 97.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 98.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 99.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 100.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 101.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 102.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 103.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 104.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 105.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 106.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 107.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 108.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 109.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 110.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 111.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 112.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 113.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 114.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 115.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 116.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 117.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 118.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 119.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 120.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 121.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 122.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 123.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 124.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 125.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 126.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 127.100.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 0.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 127.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 254.169.IN-ADDR.ARPA +08-Apr-2017 04:07:22.713 automatic empty zone: 2.0.192.IN-ADDR.ARPA +08-Apr-2017 04:07:22.714 automatic empty zone: 100.51.198.IN-ADDR.ARPA +08-Apr-2017 04:07:22.714 automatic empty zone: 113.0.203.IN-ADDR.ARPA +08-Apr-2017 04:07:22.714 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +08-Apr-2017 04:07:22.714 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +08-Apr-2017 04:07:22.714 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +08-Apr-2017 04:07:22.714 automatic empty zone: D.F.IP6.ARPA +08-Apr-2017 04:07:22.714 automatic empty zone: 8.E.F.IP6.ARPA +08-Apr-2017 04:07:22.714 automatic empty zone: 9.E.F.IP6.ARPA +08-Apr-2017 04:07:22.714 automatic empty zone: A.E.F.IP6.ARPA +08-Apr-2017 04:07:22.714 automatic empty zone: B.E.F.IP6.ARPA +08-Apr-2017 04:07:22.714 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +08-Apr-2017 04:07:22.714 automatic empty zone: EMPTY.AS112.ARPA +08-Apr-2017 04:07:22.714 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +08-Apr-2017 04:07:22.716 configuring command channel from '/opt/local/etc/rndc.key' +08-Apr-2017 04:07:22.716 couldn't add command channel 127.0.0.1#953: file not found +08-Apr-2017 04:07:22.716 configuring command channel from '/opt/local/etc/rndc.key' +08-Apr-2017 04:07:22.716 couldn't add command channel ::1#953: file not found +08-Apr-2017 04:07:22.716 not using config file logging statement for logging due to -g option +08-Apr-2017 04:07:22.716 managed-keys-zone: loaded serial 0 +08-Apr-2017 04:07:22.750 zone local/IN: loaded serial 2 +08-Apr-2017 04:07:22.750 all zones loaded +08-Apr-2017 04:07:22.750 running +08-Apr-2017 04:07:28.742 shutting down +08-Apr-2017 04:07:28.742 no longer listening on 127.0.0.1#5400 +08-Apr-2017 04:07:28.819 exiting +=== Log Marked @ 2017-04-09 01:00:53 +1200 [79549] === +09-Apr-2017 01:00:53.098 starting BIND 9.11.0-P3 +09-Apr-2017 01:00:53.098 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +09-Apr-2017 01:00:53.098 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +09-Apr-2017 01:00:53.098 running as: named -c named.conf -f -p 5400 -g +09-Apr-2017 01:00:53.098 ---------------------------------------------------- +09-Apr-2017 01:00:53.098 BIND 9 is maintained by Internet Systems Consortium, +09-Apr-2017 01:00:53.098 Inc. (ISC), a non-profit 501(c)(3) public-benefit +09-Apr-2017 01:00:53.098 corporation. Support and training for BIND 9 are +09-Apr-2017 01:00:53.098 available at https://www.isc.org/support +09-Apr-2017 01:00:53.098 ---------------------------------------------------- +09-Apr-2017 01:00:53.098 found 8 CPUs, using 8 worker threads +09-Apr-2017 01:00:53.098 using 7 UDP listeners per interface +09-Apr-2017 01:00:53.099 using up to 4096 sockets +09-Apr-2017 01:00:53.118 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +09-Apr-2017 01:00:53.119 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +09-Apr-2017 01:00:53.119 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +09-Apr-2017 01:00:53.120 using default UDP/IPv4 port range: [49152, 65535] +09-Apr-2017 01:00:53.120 using default UDP/IPv6 port range: [49152, 65535] +09-Apr-2017 01:00:53.121 listening on IPv4 interface lo0, 127.0.0.1#5400 +09-Apr-2017 01:00:53.124 generating session key for dynamic DNS +09-Apr-2017 01:00:53.125 could not open file '/opt/local/var/run/named/session.key': Permission denied +09-Apr-2017 01:00:53.125 could not create /opt/local/var/run/named/session.key +09-Apr-2017 01:00:53.125 failed to generate session key for dynamic DNS: permission denied +09-Apr-2017 01:00:53.126 sizing zone task pool based on 1 zones +09-Apr-2017 01:00:53.127 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +09-Apr-2017 01:00:53.131 set up managed keys zone for view _default, file 'managed-keys.bind' +09-Apr-2017 01:00:53.131 automatic empty zone: 10.IN-ADDR.ARPA +09-Apr-2017 01:00:53.131 automatic empty zone: 16.172.IN-ADDR.ARPA +09-Apr-2017 01:00:53.131 automatic empty zone: 17.172.IN-ADDR.ARPA +09-Apr-2017 01:00:53.131 automatic empty zone: 18.172.IN-ADDR.ARPA +09-Apr-2017 01:00:53.131 automatic empty zone: 19.172.IN-ADDR.ARPA +09-Apr-2017 01:00:53.131 automatic empty zone: 20.172.IN-ADDR.ARPA +09-Apr-2017 01:00:53.131 automatic empty zone: 21.172.IN-ADDR.ARPA +09-Apr-2017 01:00:53.131 automatic empty zone: 22.172.IN-ADDR.ARPA +09-Apr-2017 01:00:53.131 automatic empty zone: 23.172.IN-ADDR.ARPA +09-Apr-2017 01:00:53.131 automatic empty zone: 24.172.IN-ADDR.ARPA +09-Apr-2017 01:00:53.131 automatic empty zone: 25.172.IN-ADDR.ARPA +09-Apr-2017 01:00:53.131 automatic empty zone: 26.172.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 27.172.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 28.172.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 29.172.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 30.172.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 31.172.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 168.192.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 64.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 65.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 66.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 67.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 68.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 69.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 70.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 71.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 72.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 73.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 74.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 75.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 76.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 77.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 78.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 79.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 80.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 81.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 82.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 83.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 84.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 85.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 86.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 87.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 88.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 89.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 90.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 91.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 92.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 93.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 94.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 95.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 96.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 97.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 98.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 99.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 100.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 101.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 102.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 103.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 104.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.132 automatic empty zone: 105.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: 106.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: 107.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: 108.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: 109.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: 110.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: 111.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: 112.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: 113.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: 114.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: 115.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: 116.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: 117.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: 118.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: 119.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: 120.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: 121.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: 122.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: 123.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: 124.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: 125.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: 126.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: 127.100.IN-ADDR.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: 0.IN-ADDR.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: 127.IN-ADDR.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: 254.169.IN-ADDR.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: 2.0.192.IN-ADDR.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: 100.51.198.IN-ADDR.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: 113.0.203.IN-ADDR.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: D.F.IP6.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: 8.E.F.IP6.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: 9.E.F.IP6.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: A.E.F.IP6.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: B.E.F.IP6.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +09-Apr-2017 01:00:53.133 automatic empty zone: EMPTY.AS112.ARPA +09-Apr-2017 01:00:53.134 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +09-Apr-2017 01:00:53.137 configuring command channel from '/opt/local/etc/rndc.key' +09-Apr-2017 01:00:53.137 couldn't add command channel 127.0.0.1#953: file not found +09-Apr-2017 01:00:53.137 configuring command channel from '/opt/local/etc/rndc.key' +09-Apr-2017 01:00:53.137 couldn't add command channel ::1#953: file not found +09-Apr-2017 01:00:53.137 not using config file logging statement for logging due to -g option +09-Apr-2017 01:00:53.138 managed-keys-zone: loaded serial 0 +09-Apr-2017 01:00:53.182 zone local/IN: loaded serial 2 +09-Apr-2017 01:00:53.182 all zones loaded +09-Apr-2017 01:00:53.182 running +09-Apr-2017 01:01:06.731 shutting down +09-Apr-2017 01:01:06.733 no longer listening on 127.0.0.1#5400 +09-Apr-2017 01:01:06.828 exiting +=== Log Marked @ 2017-04-09 01:01:29 +1200 [79558] === +09-Apr-2017 01:01:29.144 starting BIND 9.11.0-P3 +09-Apr-2017 01:01:29.144 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +09-Apr-2017 01:01:29.144 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +09-Apr-2017 01:01:29.144 running as: named -c named.conf -f -p 5400 -g +09-Apr-2017 01:01:29.144 ---------------------------------------------------- +09-Apr-2017 01:01:29.144 BIND 9 is maintained by Internet Systems Consortium, +09-Apr-2017 01:01:29.144 Inc. (ISC), a non-profit 501(c)(3) public-benefit +09-Apr-2017 01:01:29.144 corporation. Support and training for BIND 9 are +09-Apr-2017 01:01:29.144 available at https://www.isc.org/support +09-Apr-2017 01:01:29.144 ---------------------------------------------------- +09-Apr-2017 01:01:29.144 found 8 CPUs, using 8 worker threads +09-Apr-2017 01:01:29.144 using 7 UDP listeners per interface +09-Apr-2017 01:01:29.145 using up to 4096 sockets +09-Apr-2017 01:01:29.161 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +09-Apr-2017 01:01:29.162 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +09-Apr-2017 01:01:29.162 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +09-Apr-2017 01:01:29.163 using default UDP/IPv4 port range: [49152, 65535] +09-Apr-2017 01:01:29.163 using default UDP/IPv6 port range: [49152, 65535] +09-Apr-2017 01:01:29.164 listening on IPv4 interface lo0, 127.0.0.1#5400 +09-Apr-2017 01:01:29.166 generating session key for dynamic DNS +09-Apr-2017 01:01:29.166 could not open file '/opt/local/var/run/named/session.key': Permission denied +09-Apr-2017 01:01:29.166 could not create /opt/local/var/run/named/session.key +09-Apr-2017 01:01:29.166 failed to generate session key for dynamic DNS: permission denied +09-Apr-2017 01:01:29.167 sizing zone task pool based on 1 zones +09-Apr-2017 01:01:29.168 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +09-Apr-2017 01:01:29.171 set up managed keys zone for view _default, file 'managed-keys.bind' +09-Apr-2017 01:01:29.171 automatic empty zone: 10.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 16.172.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 17.172.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 18.172.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 19.172.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 20.172.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 21.172.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 22.172.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 23.172.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 24.172.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 25.172.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 26.172.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 27.172.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 28.172.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 29.172.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 30.172.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 31.172.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 168.192.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 64.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 65.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 66.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 67.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 68.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 69.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 70.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 71.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 72.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 73.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 74.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 75.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 76.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 77.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 78.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 79.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 80.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 81.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 82.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 83.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 84.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 85.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 86.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 87.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 88.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 89.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 90.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 91.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 92.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 93.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 94.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 95.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 96.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 97.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 98.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 99.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 100.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 101.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 102.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 103.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 104.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 105.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 106.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 107.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 108.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 109.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 110.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 111.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 112.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 113.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 114.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 115.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 116.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 117.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 118.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 119.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 120.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 121.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 122.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 123.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 124.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 125.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 126.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 127.100.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 0.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 127.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 254.169.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 2.0.192.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 100.51.198.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 113.0.203.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +09-Apr-2017 01:01:29.172 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +09-Apr-2017 01:01:29.173 automatic empty zone: D.F.IP6.ARPA +09-Apr-2017 01:01:29.173 automatic empty zone: 8.E.F.IP6.ARPA +09-Apr-2017 01:01:29.173 automatic empty zone: 9.E.F.IP6.ARPA +09-Apr-2017 01:01:29.173 automatic empty zone: A.E.F.IP6.ARPA +09-Apr-2017 01:01:29.173 automatic empty zone: B.E.F.IP6.ARPA +09-Apr-2017 01:01:29.173 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +09-Apr-2017 01:01:29.173 automatic empty zone: EMPTY.AS112.ARPA +09-Apr-2017 01:01:29.175 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +09-Apr-2017 01:01:29.177 configuring command channel from '/opt/local/etc/rndc.key' +09-Apr-2017 01:01:29.177 couldn't add command channel 127.0.0.1#953: file not found +09-Apr-2017 01:01:29.177 configuring command channel from '/opt/local/etc/rndc.key' +09-Apr-2017 01:01:29.177 couldn't add command channel ::1#953: file not found +09-Apr-2017 01:01:29.177 not using config file logging statement for logging due to -g option +09-Apr-2017 01:01:29.178 managed-keys-zone: loaded serial 0 +09-Apr-2017 01:01:29.203 zone local/IN: loaded serial 2 +09-Apr-2017 01:01:29.203 all zones loaded +09-Apr-2017 01:01:29.203 running +09-Apr-2017 01:01:35.527 shutting down +09-Apr-2017 01:01:35.527 no longer listening on 127.0.0.1#5400 +09-Apr-2017 01:01:35.613 exiting +=== Log Marked @ 2017-04-09 01:12:42 +1200 [79610] === +09-Apr-2017 01:12:42.850 starting BIND 9.11.0-P3 +09-Apr-2017 01:12:42.850 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +09-Apr-2017 01:12:42.850 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +09-Apr-2017 01:12:42.850 running as: named -c named.conf -f -p 5400 -g +09-Apr-2017 01:12:42.850 ---------------------------------------------------- +09-Apr-2017 01:12:42.850 BIND 9 is maintained by Internet Systems Consortium, +09-Apr-2017 01:12:42.850 Inc. (ISC), a non-profit 501(c)(3) public-benefit +09-Apr-2017 01:12:42.850 corporation. Support and training for BIND 9 are +09-Apr-2017 01:12:42.850 available at https://www.isc.org/support +09-Apr-2017 01:12:42.850 ---------------------------------------------------- +09-Apr-2017 01:12:42.850 found 8 CPUs, using 8 worker threads +09-Apr-2017 01:12:42.850 using 7 UDP listeners per interface +09-Apr-2017 01:12:42.850 using up to 4096 sockets +09-Apr-2017 01:12:42.867 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +09-Apr-2017 01:12:42.868 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +09-Apr-2017 01:12:42.868 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +09-Apr-2017 01:12:42.870 using default UDP/IPv4 port range: [49152, 65535] +09-Apr-2017 01:12:42.870 using default UDP/IPv6 port range: [49152, 65535] +09-Apr-2017 01:12:42.871 listening on IPv4 interface lo0, 127.0.0.1#5400 +09-Apr-2017 01:12:42.873 generating session key for dynamic DNS +09-Apr-2017 01:12:42.873 could not open file '/opt/local/var/run/named/session.key': Permission denied +09-Apr-2017 01:12:42.873 could not create /opt/local/var/run/named/session.key +09-Apr-2017 01:12:42.873 failed to generate session key for dynamic DNS: permission denied +09-Apr-2017 01:12:42.874 sizing zone task pool based on 1 zones +09-Apr-2017 01:12:42.876 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +09-Apr-2017 01:12:42.881 set up managed keys zone for view _default, file 'managed-keys.bind' +09-Apr-2017 01:12:42.881 automatic empty zone: 10.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 16.172.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 17.172.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 18.172.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 19.172.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 20.172.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 21.172.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 22.172.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 23.172.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 24.172.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 25.172.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 26.172.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 27.172.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 28.172.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 29.172.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 30.172.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 31.172.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 168.192.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 64.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 65.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 66.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 67.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 68.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 69.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 70.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 71.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 72.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 73.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 74.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 75.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 76.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 77.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 78.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 79.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 80.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 81.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 82.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 83.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 84.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 85.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 86.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 87.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 88.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 89.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 90.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 91.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.881 automatic empty zone: 92.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 93.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 94.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 95.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 96.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 97.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 98.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 99.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 100.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 101.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 102.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 103.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 104.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 105.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 106.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 107.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 108.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 109.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 110.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 111.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 112.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 113.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 114.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 115.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 116.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 117.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 118.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 119.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 120.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 121.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 122.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 123.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 124.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 125.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 126.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 127.100.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 0.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 127.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 254.169.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 2.0.192.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 100.51.198.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 113.0.203.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: D.F.IP6.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 8.E.F.IP6.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 9.E.F.IP6.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: A.E.F.IP6.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: B.E.F.IP6.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +09-Apr-2017 01:12:42.882 automatic empty zone: EMPTY.AS112.ARPA +09-Apr-2017 01:12:42.882 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +09-Apr-2017 01:12:42.885 configuring command channel from '/opt/local/etc/rndc.key' +09-Apr-2017 01:12:42.885 couldn't add command channel 127.0.0.1#953: file not found +09-Apr-2017 01:12:42.885 configuring command channel from '/opt/local/etc/rndc.key' +09-Apr-2017 01:12:42.885 couldn't add command channel ::1#953: file not found +09-Apr-2017 01:12:42.885 not using config file logging statement for logging due to -g option +09-Apr-2017 01:12:42.886 managed-keys-zone: loaded serial 0 +09-Apr-2017 01:12:42.912 zone local/IN: loaded serial 2 +09-Apr-2017 01:12:42.912 all zones loaded +09-Apr-2017 01:12:42.912 running +09-Apr-2017 01:13:26.128 shutting down +09-Apr-2017 01:13:26.129 no longer listening on 127.0.0.1#5400 +09-Apr-2017 01:13:26.220 exiting +=== Log Marked @ 2017-04-09 11:39:48 +1200 [80014] === +09-Apr-2017 11:39:48.789 starting BIND 9.11.0-P3 +09-Apr-2017 11:39:48.789 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +09-Apr-2017 11:39:48.789 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +09-Apr-2017 11:39:48.789 running as: named -c named.conf -f -p 5400 -g +09-Apr-2017 11:39:48.789 ---------------------------------------------------- +09-Apr-2017 11:39:48.789 BIND 9 is maintained by Internet Systems Consortium, +09-Apr-2017 11:39:48.789 Inc. (ISC), a non-profit 501(c)(3) public-benefit +09-Apr-2017 11:39:48.789 corporation. Support and training for BIND 9 are +09-Apr-2017 11:39:48.789 available at https://www.isc.org/support +09-Apr-2017 11:39:48.789 ---------------------------------------------------- +09-Apr-2017 11:39:48.789 found 8 CPUs, using 8 worker threads +09-Apr-2017 11:39:48.789 using 7 UDP listeners per interface +09-Apr-2017 11:39:48.789 using up to 4096 sockets +09-Apr-2017 11:39:48.807 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +09-Apr-2017 11:39:48.807 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +09-Apr-2017 11:39:48.807 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +09-Apr-2017 11:39:48.809 using default UDP/IPv4 port range: [49152, 65535] +09-Apr-2017 11:39:48.809 using default UDP/IPv6 port range: [49152, 65535] +09-Apr-2017 11:39:48.809 listening on IPv4 interface lo0, 127.0.0.1#5400 +09-Apr-2017 11:39:48.811 generating session key for dynamic DNS +09-Apr-2017 11:39:48.812 could not open file '/opt/local/var/run/named/session.key': Permission denied +09-Apr-2017 11:39:48.812 could not create /opt/local/var/run/named/session.key +09-Apr-2017 11:39:48.812 failed to generate session key for dynamic DNS: permission denied +09-Apr-2017 11:39:48.812 sizing zone task pool based on 1 zones +09-Apr-2017 11:39:48.813 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +09-Apr-2017 11:39:48.817 set up managed keys zone for view _default, file 'managed-keys.bind' +09-Apr-2017 11:39:48.817 automatic empty zone: 10.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 16.172.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 17.172.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 18.172.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 19.172.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 20.172.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 21.172.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 22.172.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 23.172.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 24.172.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 25.172.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 26.172.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 27.172.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 28.172.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 29.172.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 30.172.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 31.172.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 168.192.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 64.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 65.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 66.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 67.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 68.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 69.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 70.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 71.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 72.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 73.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 74.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 75.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 76.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 77.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 78.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 79.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 80.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 81.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 82.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 83.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 84.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 85.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 86.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 87.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 88.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.817 automatic empty zone: 89.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 90.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 91.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 92.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 93.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 94.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 95.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 96.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 97.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 98.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 99.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 100.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 101.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 102.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 103.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 104.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 105.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 106.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 107.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 108.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 109.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 110.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 111.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 112.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 113.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 114.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 115.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 116.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 117.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 118.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 119.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 120.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 121.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 122.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 123.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 124.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 125.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 126.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 127.100.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 0.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 127.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 254.169.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 2.0.192.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 100.51.198.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 113.0.203.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: D.F.IP6.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 8.E.F.IP6.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 9.E.F.IP6.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: A.E.F.IP6.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: B.E.F.IP6.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +09-Apr-2017 11:39:48.818 automatic empty zone: EMPTY.AS112.ARPA +09-Apr-2017 11:39:48.823 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +09-Apr-2017 11:39:48.828 configuring command channel from '/opt/local/etc/rndc.key' +09-Apr-2017 11:39:48.828 couldn't add command channel 127.0.0.1#953: file not found +09-Apr-2017 11:39:48.828 configuring command channel from '/opt/local/etc/rndc.key' +09-Apr-2017 11:39:48.828 couldn't add command channel ::1#953: file not found +09-Apr-2017 11:39:48.828 not using config file logging statement for logging due to -g option +09-Apr-2017 11:39:48.829 managed-keys-zone: loaded serial 0 +09-Apr-2017 11:39:48.866 zone local/IN: loaded serial 2 +09-Apr-2017 11:39:48.866 all zones loaded +09-Apr-2017 11:39:48.866 running +09-Apr-2017 11:40:38.997 shutting down +09-Apr-2017 11:40:38.997 no longer listening on 127.0.0.1#5400 +09-Apr-2017 11:40:39.063 exiting +=== Log Marked @ 2017-04-09 11:44:24 +1200 [80052] === +09-Apr-2017 11:44:24.986 starting BIND 9.11.0-P3 +09-Apr-2017 11:44:24.986 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +09-Apr-2017 11:44:24.986 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +09-Apr-2017 11:44:24.986 running as: named -c named.conf -f -p 5400 -g +09-Apr-2017 11:44:24.986 ---------------------------------------------------- +09-Apr-2017 11:44:24.986 BIND 9 is maintained by Internet Systems Consortium, +09-Apr-2017 11:44:24.986 Inc. (ISC), a non-profit 501(c)(3) public-benefit +09-Apr-2017 11:44:24.986 corporation. Support and training for BIND 9 are +09-Apr-2017 11:44:24.986 available at https://www.isc.org/support +09-Apr-2017 11:44:24.986 ---------------------------------------------------- +09-Apr-2017 11:44:24.986 found 8 CPUs, using 8 worker threads +09-Apr-2017 11:44:24.986 using 7 UDP listeners per interface +09-Apr-2017 11:44:24.986 using up to 4096 sockets +09-Apr-2017 11:44:24.990 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +09-Apr-2017 11:44:24.990 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +09-Apr-2017 11:44:24.991 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +09-Apr-2017 11:44:24.991 using default UDP/IPv4 port range: [49152, 65535] +09-Apr-2017 11:44:24.991 using default UDP/IPv6 port range: [49152, 65535] +09-Apr-2017 11:44:24.991 listening on IPv4 interface lo0, 127.0.0.1#5400 +09-Apr-2017 11:44:24.993 generating session key for dynamic DNS +09-Apr-2017 11:44:24.993 could not open file '/opt/local/var/run/named/session.key': Permission denied +09-Apr-2017 11:44:24.993 could not create /opt/local/var/run/named/session.key +09-Apr-2017 11:44:24.993 failed to generate session key for dynamic DNS: permission denied +09-Apr-2017 11:44:24.993 sizing zone task pool based on 1 zones +09-Apr-2017 11:44:24.994 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +09-Apr-2017 11:44:24.996 set up managed keys zone for view _default, file 'managed-keys.bind' +09-Apr-2017 11:44:24.996 automatic empty zone: 10.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 16.172.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 17.172.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 18.172.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 19.172.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 20.172.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 21.172.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 22.172.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 23.172.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 24.172.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 25.172.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 26.172.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 27.172.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 28.172.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 29.172.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 30.172.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 31.172.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 168.192.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 64.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 65.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 66.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 67.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 68.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 69.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 70.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 71.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 72.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 73.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 74.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 75.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 76.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 77.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 78.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 79.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 80.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 81.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 82.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 83.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 84.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 85.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 86.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.996 automatic empty zone: 87.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 88.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 89.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 90.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 91.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 92.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 93.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 94.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 95.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 96.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 97.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 98.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 99.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 100.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 101.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 102.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 103.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 104.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 105.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 106.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 107.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 108.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 109.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 110.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 111.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 112.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 113.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 114.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 115.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 116.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 117.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 118.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 119.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 120.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 121.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 122.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 123.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 124.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 125.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 126.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 127.100.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 0.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 127.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 254.169.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 2.0.192.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 100.51.198.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 113.0.203.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: D.F.IP6.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 8.E.F.IP6.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 9.E.F.IP6.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: A.E.F.IP6.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: B.E.F.IP6.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +09-Apr-2017 11:44:24.997 automatic empty zone: EMPTY.AS112.ARPA +09-Apr-2017 11:44:24.997 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +09-Apr-2017 11:44:24.999 configuring command channel from '/opt/local/etc/rndc.key' +09-Apr-2017 11:44:24.999 couldn't add command channel 127.0.0.1#953: file not found +09-Apr-2017 11:44:24.999 configuring command channel from '/opt/local/etc/rndc.key' +09-Apr-2017 11:44:24.999 couldn't add command channel ::1#953: file not found +09-Apr-2017 11:44:24.999 not using config file logging statement for logging due to -g option +09-Apr-2017 11:44:25.000 managed-keys-zone: loaded serial 0 +09-Apr-2017 11:44:25.038 zone local/IN: loaded serial 2 +09-Apr-2017 11:44:25.038 all zones loaded +09-Apr-2017 11:44:25.039 running +09-Apr-2017 11:45:15.212 shutting down +09-Apr-2017 11:45:15.214 no longer listening on 127.0.0.1#5400 +09-Apr-2017 11:45:15.281 exiting +=== Log Marked @ 2017-04-09 13:35:26 +1200 [80702] === +09-Apr-2017 13:35:26.386 starting BIND 9.11.0-P3 +09-Apr-2017 13:35:26.387 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +09-Apr-2017 13:35:26.387 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +09-Apr-2017 13:35:26.387 running as: named -c named.conf -f -p 5400 -g +09-Apr-2017 13:35:26.387 ---------------------------------------------------- +09-Apr-2017 13:35:26.387 BIND 9 is maintained by Internet Systems Consortium, +09-Apr-2017 13:35:26.387 Inc. (ISC), a non-profit 501(c)(3) public-benefit +09-Apr-2017 13:35:26.387 corporation. Support and training for BIND 9 are +09-Apr-2017 13:35:26.387 available at https://www.isc.org/support +09-Apr-2017 13:35:26.387 ---------------------------------------------------- +09-Apr-2017 13:35:26.387 found 8 CPUs, using 8 worker threads +09-Apr-2017 13:35:26.387 using 7 UDP listeners per interface +09-Apr-2017 13:35:26.387 using up to 4096 sockets +09-Apr-2017 13:35:26.404 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +09-Apr-2017 13:35:26.404 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +09-Apr-2017 13:35:26.404 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +09-Apr-2017 13:35:26.406 using default UDP/IPv4 port range: [49152, 65535] +09-Apr-2017 13:35:26.406 using default UDP/IPv6 port range: [49152, 65535] +09-Apr-2017 13:35:26.406 listening on IPv4 interface lo0, 127.0.0.1#5400 +09-Apr-2017 13:35:26.408 generating session key for dynamic DNS +09-Apr-2017 13:35:26.408 could not open file '/opt/local/var/run/named/session.key': Permission denied +09-Apr-2017 13:35:26.408 could not create /opt/local/var/run/named/session.key +09-Apr-2017 13:35:26.408 failed to generate session key for dynamic DNS: permission denied +09-Apr-2017 13:35:26.409 sizing zone task pool based on 1 zones +09-Apr-2017 13:35:26.410 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +09-Apr-2017 13:35:26.414 set up managed keys zone for view _default, file 'managed-keys.bind' +09-Apr-2017 13:35:26.414 automatic empty zone: 10.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 16.172.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 17.172.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 18.172.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 19.172.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 20.172.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 21.172.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 22.172.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 23.172.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 24.172.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 25.172.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 26.172.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 27.172.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 28.172.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 29.172.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 30.172.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 31.172.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 168.192.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 64.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 65.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 66.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 67.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 68.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 69.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 70.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 71.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 72.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 73.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 74.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 75.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 76.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 77.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 78.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 79.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 80.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 81.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 82.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 83.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 84.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 85.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 86.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 87.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 88.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 89.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 90.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 91.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 92.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 93.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 94.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 95.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 96.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 97.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 98.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 99.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 100.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 101.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 102.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 103.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 104.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 105.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 106.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 107.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 108.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 109.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 110.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 111.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.414 automatic empty zone: 112.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.415 automatic empty zone: 113.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.415 automatic empty zone: 114.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.415 automatic empty zone: 115.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.415 automatic empty zone: 116.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.415 automatic empty zone: 117.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.415 automatic empty zone: 118.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.415 automatic empty zone: 119.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.415 automatic empty zone: 120.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.415 automatic empty zone: 121.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.415 automatic empty zone: 122.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.415 automatic empty zone: 123.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.415 automatic empty zone: 124.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.415 automatic empty zone: 125.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.415 automatic empty zone: 126.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.415 automatic empty zone: 127.100.IN-ADDR.ARPA +09-Apr-2017 13:35:26.415 automatic empty zone: 0.IN-ADDR.ARPA +09-Apr-2017 13:35:26.415 automatic empty zone: 127.IN-ADDR.ARPA +09-Apr-2017 13:35:26.415 automatic empty zone: 254.169.IN-ADDR.ARPA +09-Apr-2017 13:35:26.415 automatic empty zone: 2.0.192.IN-ADDR.ARPA +09-Apr-2017 13:35:26.415 automatic empty zone: 100.51.198.IN-ADDR.ARPA +09-Apr-2017 13:35:26.415 automatic empty zone: 113.0.203.IN-ADDR.ARPA +09-Apr-2017 13:35:26.415 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +09-Apr-2017 13:35:26.415 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +09-Apr-2017 13:35:26.415 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +09-Apr-2017 13:35:26.415 automatic empty zone: D.F.IP6.ARPA +09-Apr-2017 13:35:26.415 automatic empty zone: 8.E.F.IP6.ARPA +09-Apr-2017 13:35:26.415 automatic empty zone: 9.E.F.IP6.ARPA +09-Apr-2017 13:35:26.415 automatic empty zone: A.E.F.IP6.ARPA +09-Apr-2017 13:35:26.415 automatic empty zone: B.E.F.IP6.ARPA +09-Apr-2017 13:35:26.415 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +09-Apr-2017 13:35:26.415 automatic empty zone: EMPTY.AS112.ARPA +09-Apr-2017 13:35:26.415 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +09-Apr-2017 13:35:26.417 configuring command channel from '/opt/local/etc/rndc.key' +09-Apr-2017 13:35:26.417 couldn't add command channel 127.0.0.1#953: file not found +09-Apr-2017 13:35:26.417 configuring command channel from '/opt/local/etc/rndc.key' +09-Apr-2017 13:35:26.417 couldn't add command channel ::1#953: file not found +09-Apr-2017 13:35:26.418 not using config file logging statement for logging due to -g option +09-Apr-2017 13:35:26.420 managed-keys-zone: loaded serial 0 +09-Apr-2017 13:35:26.450 zone local/IN: loaded serial 2 +09-Apr-2017 13:35:26.450 all zones loaded +09-Apr-2017 13:35:26.450 running +09-Apr-2017 13:35:32.594 shutting down +09-Apr-2017 13:35:32.594 no longer listening on 127.0.0.1#5400 +09-Apr-2017 13:35:32.675 exiting +=== Log Marked @ 2017-04-09 13:39:30 +1200 [80723] === +09-Apr-2017 13:39:30.144 starting BIND 9.11.0-P3 +09-Apr-2017 13:39:30.144 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +09-Apr-2017 13:39:30.144 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +09-Apr-2017 13:39:30.144 running as: named -c named.conf -f -p 5400 -g +09-Apr-2017 13:39:30.144 ---------------------------------------------------- +09-Apr-2017 13:39:30.144 BIND 9 is maintained by Internet Systems Consortium, +09-Apr-2017 13:39:30.144 Inc. (ISC), a non-profit 501(c)(3) public-benefit +09-Apr-2017 13:39:30.144 corporation. Support and training for BIND 9 are +09-Apr-2017 13:39:30.144 available at https://www.isc.org/support +09-Apr-2017 13:39:30.144 ---------------------------------------------------- +09-Apr-2017 13:39:30.144 found 8 CPUs, using 8 worker threads +09-Apr-2017 13:39:30.144 using 7 UDP listeners per interface +09-Apr-2017 13:39:30.144 using up to 4096 sockets +09-Apr-2017 13:39:30.148 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +09-Apr-2017 13:39:30.148 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +09-Apr-2017 13:39:30.148 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +09-Apr-2017 13:39:30.148 using default UDP/IPv4 port range: [49152, 65535] +09-Apr-2017 13:39:30.148 using default UDP/IPv6 port range: [49152, 65535] +09-Apr-2017 13:39:30.149 listening on IPv4 interface lo0, 127.0.0.1#5400 +09-Apr-2017 13:39:30.152 generating session key for dynamic DNS +09-Apr-2017 13:39:30.152 could not open file '/opt/local/var/run/named/session.key': Permission denied +09-Apr-2017 13:39:30.152 could not create /opt/local/var/run/named/session.key +09-Apr-2017 13:39:30.152 failed to generate session key for dynamic DNS: permission denied +09-Apr-2017 13:39:30.152 sizing zone task pool based on 1 zones +09-Apr-2017 13:39:30.152 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +09-Apr-2017 13:39:30.154 set up managed keys zone for view _default, file 'managed-keys.bind' +09-Apr-2017 13:39:30.154 automatic empty zone: 10.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 16.172.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 17.172.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 18.172.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 19.172.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 20.172.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 21.172.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 22.172.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 23.172.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 24.172.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 25.172.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 26.172.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 27.172.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 28.172.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 29.172.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 30.172.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 31.172.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 168.192.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 64.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 65.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 66.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 67.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 68.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 69.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 70.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 71.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 72.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 73.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 74.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 75.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 76.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 77.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 78.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 79.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 80.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 81.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 82.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 83.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 84.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 85.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 86.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 87.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 88.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 89.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 90.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 91.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 92.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 93.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 94.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 95.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 96.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 97.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 98.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 99.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 100.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 101.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 102.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 103.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 104.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 105.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 106.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 107.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 108.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 109.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 110.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 111.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 112.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 113.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 114.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 115.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 116.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 117.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 118.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 119.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 120.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 121.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 122.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 123.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 124.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 125.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 126.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 127.100.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 0.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 127.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 254.169.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 2.0.192.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 100.51.198.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 113.0.203.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: D.F.IP6.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 8.E.F.IP6.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 9.E.F.IP6.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: A.E.F.IP6.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: B.E.F.IP6.ARPA +09-Apr-2017 13:39:30.155 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +09-Apr-2017 13:39:30.156 automatic empty zone: EMPTY.AS112.ARPA +09-Apr-2017 13:39:30.156 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +09-Apr-2017 13:39:30.158 configuring command channel from '/opt/local/etc/rndc.key' +09-Apr-2017 13:39:30.158 couldn't add command channel 127.0.0.1#953: file not found +09-Apr-2017 13:39:30.158 configuring command channel from '/opt/local/etc/rndc.key' +09-Apr-2017 13:39:30.158 couldn't add command channel ::1#953: file not found +09-Apr-2017 13:39:30.158 not using config file logging statement for logging due to -g option +09-Apr-2017 13:39:30.158 managed-keys-zone: loaded serial 0 +09-Apr-2017 13:39:30.188 zone local/IN: loaded serial 2 +09-Apr-2017 13:39:30.188 all zones loaded +09-Apr-2017 13:39:30.188 running +09-Apr-2017 13:39:36.272 shutting down +09-Apr-2017 13:39:36.272 no longer listening on 127.0.0.1#5400 +09-Apr-2017 13:39:36.343 exiting +=== Log Marked @ 2017-04-09 13:40:20 +1200 [80731] === +09-Apr-2017 13:40:20.981 starting BIND 9.11.0-P3 +09-Apr-2017 13:40:20.981 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +09-Apr-2017 13:40:20.981 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +09-Apr-2017 13:40:20.981 running as: named -c named.conf -f -p 5400 -g +09-Apr-2017 13:40:20.981 ---------------------------------------------------- +09-Apr-2017 13:40:20.981 BIND 9 is maintained by Internet Systems Consortium, +09-Apr-2017 13:40:20.981 Inc. (ISC), a non-profit 501(c)(3) public-benefit +09-Apr-2017 13:40:20.981 corporation. Support and training for BIND 9 are +09-Apr-2017 13:40:20.981 available at https://www.isc.org/support +09-Apr-2017 13:40:20.981 ---------------------------------------------------- +09-Apr-2017 13:40:20.981 found 8 CPUs, using 8 worker threads +09-Apr-2017 13:40:20.981 using 7 UDP listeners per interface +09-Apr-2017 13:40:20.982 using up to 4096 sockets +09-Apr-2017 13:40:20.986 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +09-Apr-2017 13:40:20.986 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +09-Apr-2017 13:40:20.986 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +09-Apr-2017 13:40:20.986 using default UDP/IPv4 port range: [49152, 65535] +09-Apr-2017 13:40:20.986 using default UDP/IPv6 port range: [49152, 65535] +09-Apr-2017 13:40:20.987 listening on IPv4 interface lo0, 127.0.0.1#5400 +09-Apr-2017 13:40:20.989 generating session key for dynamic DNS +09-Apr-2017 13:40:20.989 could not open file '/opt/local/var/run/named/session.key': Permission denied +09-Apr-2017 13:40:20.989 could not create /opt/local/var/run/named/session.key +09-Apr-2017 13:40:20.989 failed to generate session key for dynamic DNS: permission denied +09-Apr-2017 13:40:20.989 sizing zone task pool based on 1 zones +09-Apr-2017 13:40:20.989 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +09-Apr-2017 13:40:20.991 set up managed keys zone for view _default, file 'managed-keys.bind' +09-Apr-2017 13:40:20.991 automatic empty zone: 10.IN-ADDR.ARPA +09-Apr-2017 13:40:20.991 automatic empty zone: 16.172.IN-ADDR.ARPA +09-Apr-2017 13:40:20.991 automatic empty zone: 17.172.IN-ADDR.ARPA +09-Apr-2017 13:40:20.991 automatic empty zone: 18.172.IN-ADDR.ARPA +09-Apr-2017 13:40:20.991 automatic empty zone: 19.172.IN-ADDR.ARPA +09-Apr-2017 13:40:20.991 automatic empty zone: 20.172.IN-ADDR.ARPA +09-Apr-2017 13:40:20.991 automatic empty zone: 21.172.IN-ADDR.ARPA +09-Apr-2017 13:40:20.991 automatic empty zone: 22.172.IN-ADDR.ARPA +09-Apr-2017 13:40:20.991 automatic empty zone: 23.172.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 24.172.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 25.172.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 26.172.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 27.172.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 28.172.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 29.172.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 30.172.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 31.172.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 168.192.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 64.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 65.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 66.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 67.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 68.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 69.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 70.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 71.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 72.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 73.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 74.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 75.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 76.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 77.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 78.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 79.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 80.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 81.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 82.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 83.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 84.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 85.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 86.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 87.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 88.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 89.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 90.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 91.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 92.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 93.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 94.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 95.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 96.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 97.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 98.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 99.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 100.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 101.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 102.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 103.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 104.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 105.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 106.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 107.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 108.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 109.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 110.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 111.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 112.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 113.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 114.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 115.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 116.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 117.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 118.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 119.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 120.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 121.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 122.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 123.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 124.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 125.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 126.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 127.100.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 0.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 127.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 254.169.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 2.0.192.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 100.51.198.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 113.0.203.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: D.F.IP6.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 8.E.F.IP6.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 9.E.F.IP6.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: A.E.F.IP6.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: B.E.F.IP6.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +09-Apr-2017 13:40:20.992 automatic empty zone: EMPTY.AS112.ARPA +09-Apr-2017 13:40:20.993 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +09-Apr-2017 13:40:20.995 configuring command channel from '/opt/local/etc/rndc.key' +09-Apr-2017 13:40:20.995 couldn't add command channel 127.0.0.1#953: file not found +09-Apr-2017 13:40:20.995 configuring command channel from '/opt/local/etc/rndc.key' +09-Apr-2017 13:40:20.995 couldn't add command channel ::1#953: file not found +09-Apr-2017 13:40:20.995 not using config file logging statement for logging due to -g option +09-Apr-2017 13:40:20.995 managed-keys-zone: loaded serial 0 +09-Apr-2017 13:40:21.033 zone local/IN: loaded serial 2 +09-Apr-2017 13:40:21.033 all zones loaded +09-Apr-2017 13:40:21.034 running +09-Apr-2017 13:40:27.303 shutting down +09-Apr-2017 13:40:27.304 no longer listening on 127.0.0.1#5400 +09-Apr-2017 13:40:27.380 exiting +=== Log Marked @ 2017-04-09 13:53:40 +1200 [81152] === +09-Apr-2017 13:53:40.412 starting BIND 9.11.0-P3 +09-Apr-2017 13:53:40.413 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +09-Apr-2017 13:53:40.413 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +09-Apr-2017 13:53:40.413 running as: named -c named.conf -f -p 5400 -g +09-Apr-2017 13:53:40.413 ---------------------------------------------------- +09-Apr-2017 13:53:40.413 BIND 9 is maintained by Internet Systems Consortium, +09-Apr-2017 13:53:40.413 Inc. (ISC), a non-profit 501(c)(3) public-benefit +09-Apr-2017 13:53:40.413 corporation. Support and training for BIND 9 are +09-Apr-2017 13:53:40.413 available at https://www.isc.org/support +09-Apr-2017 13:53:40.413 ---------------------------------------------------- +09-Apr-2017 13:53:40.413 found 8 CPUs, using 8 worker threads +09-Apr-2017 13:53:40.413 using 7 UDP listeners per interface +09-Apr-2017 13:53:40.413 using up to 4096 sockets +09-Apr-2017 13:53:40.429 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +09-Apr-2017 13:53:40.429 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +09-Apr-2017 13:53:40.429 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +09-Apr-2017 13:53:40.430 using default UDP/IPv4 port range: [49152, 65535] +09-Apr-2017 13:53:40.430 using default UDP/IPv6 port range: [49152, 65535] +09-Apr-2017 13:53:40.431 listening on IPv4 interface lo0, 127.0.0.1#5400 +09-Apr-2017 13:53:40.433 generating session key for dynamic DNS +09-Apr-2017 13:53:40.434 could not open file '/opt/local/var/run/named/session.key': Permission denied +09-Apr-2017 13:53:40.434 could not create /opt/local/var/run/named/session.key +09-Apr-2017 13:53:40.434 failed to generate session key for dynamic DNS: permission denied +09-Apr-2017 13:53:40.434 sizing zone task pool based on 1 zones +09-Apr-2017 13:53:40.435 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +09-Apr-2017 13:53:40.441 set up managed keys zone for view _default, file 'managed-keys.bind' +09-Apr-2017 13:53:40.441 automatic empty zone: 10.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 16.172.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 17.172.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 18.172.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 19.172.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 20.172.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 21.172.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 22.172.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 23.172.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 24.172.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 25.172.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 26.172.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 27.172.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 28.172.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 29.172.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 30.172.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 31.172.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 168.192.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 64.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 65.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 66.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 67.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 68.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 69.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 70.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 71.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 72.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 73.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 74.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 75.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 76.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 77.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 78.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 79.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 80.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 81.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 82.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 83.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 84.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 85.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 86.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 87.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 88.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 89.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 90.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 91.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 92.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 93.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 94.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 95.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 96.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 97.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 98.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 99.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 100.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 101.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 102.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 103.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 104.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 105.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 106.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 107.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 108.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 109.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.441 automatic empty zone: 110.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.442 automatic empty zone: 111.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.442 automatic empty zone: 112.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.442 automatic empty zone: 113.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.442 automatic empty zone: 114.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.442 automatic empty zone: 115.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.442 automatic empty zone: 116.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.442 automatic empty zone: 117.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.442 automatic empty zone: 118.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.442 automatic empty zone: 119.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.442 automatic empty zone: 120.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.442 automatic empty zone: 121.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.442 automatic empty zone: 122.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.442 automatic empty zone: 123.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.442 automatic empty zone: 124.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.442 automatic empty zone: 125.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.442 automatic empty zone: 126.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.442 automatic empty zone: 127.100.IN-ADDR.ARPA +09-Apr-2017 13:53:40.442 automatic empty zone: 0.IN-ADDR.ARPA +09-Apr-2017 13:53:40.442 automatic empty zone: 127.IN-ADDR.ARPA +09-Apr-2017 13:53:40.442 automatic empty zone: 254.169.IN-ADDR.ARPA +09-Apr-2017 13:53:40.442 automatic empty zone: 2.0.192.IN-ADDR.ARPA +09-Apr-2017 13:53:40.442 automatic empty zone: 100.51.198.IN-ADDR.ARPA +09-Apr-2017 13:53:40.442 automatic empty zone: 113.0.203.IN-ADDR.ARPA +09-Apr-2017 13:53:40.442 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +09-Apr-2017 13:53:40.442 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +09-Apr-2017 13:53:40.442 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +09-Apr-2017 13:53:40.442 automatic empty zone: D.F.IP6.ARPA +09-Apr-2017 13:53:40.442 automatic empty zone: 8.E.F.IP6.ARPA +09-Apr-2017 13:53:40.442 automatic empty zone: 9.E.F.IP6.ARPA +09-Apr-2017 13:53:40.442 automatic empty zone: A.E.F.IP6.ARPA +09-Apr-2017 13:53:40.442 automatic empty zone: B.E.F.IP6.ARPA +09-Apr-2017 13:53:40.442 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +09-Apr-2017 13:53:40.442 automatic empty zone: EMPTY.AS112.ARPA +09-Apr-2017 13:53:40.442 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +09-Apr-2017 13:53:40.444 configuring command channel from '/opt/local/etc/rndc.key' +09-Apr-2017 13:53:40.444 couldn't add command channel 127.0.0.1#953: file not found +09-Apr-2017 13:53:40.444 configuring command channel from '/opt/local/etc/rndc.key' +09-Apr-2017 13:53:40.444 couldn't add command channel ::1#953: file not found +09-Apr-2017 13:53:40.444 not using config file logging statement for logging due to -g option +09-Apr-2017 13:53:40.445 managed-keys-zone: loaded serial 0 +09-Apr-2017 13:53:40.478 zone local/IN: loaded serial 2 +09-Apr-2017 13:53:40.478 all zones loaded +09-Apr-2017 13:53:40.478 running +09-Apr-2017 13:53:47.204 shutting down +09-Apr-2017 13:53:47.204 no longer listening on 127.0.0.1#5400 +09-Apr-2017 13:53:47.275 exiting +=== Log Marked @ 2017-04-09 14:14:28 +1200 [81442] === +09-Apr-2017 14:14:28.602 starting BIND 9.11.0-P3 +09-Apr-2017 14:14:28.602 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +09-Apr-2017 14:14:28.602 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +09-Apr-2017 14:14:28.602 running as: named -c named.conf -f -p 5400 -g +09-Apr-2017 14:14:28.602 ---------------------------------------------------- +09-Apr-2017 14:14:28.602 BIND 9 is maintained by Internet Systems Consortium, +09-Apr-2017 14:14:28.602 Inc. (ISC), a non-profit 501(c)(3) public-benefit +09-Apr-2017 14:14:28.602 corporation. Support and training for BIND 9 are +09-Apr-2017 14:14:28.602 available at https://www.isc.org/support +09-Apr-2017 14:14:28.602 ---------------------------------------------------- +09-Apr-2017 14:14:28.602 found 8 CPUs, using 8 worker threads +09-Apr-2017 14:14:28.602 using 7 UDP listeners per interface +09-Apr-2017 14:14:28.602 using up to 4096 sockets +09-Apr-2017 14:14:28.618 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +09-Apr-2017 14:14:28.618 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +09-Apr-2017 14:14:28.618 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +09-Apr-2017 14:14:28.620 using default UDP/IPv4 port range: [49152, 65535] +09-Apr-2017 14:14:28.620 using default UDP/IPv6 port range: [49152, 65535] +09-Apr-2017 14:14:28.620 listening on IPv4 interface lo0, 127.0.0.1#5400 +09-Apr-2017 14:14:28.623 generating session key for dynamic DNS +09-Apr-2017 14:14:28.623 could not open file '/opt/local/var/run/named/session.key': Permission denied +09-Apr-2017 14:14:28.623 could not create /opt/local/var/run/named/session.key +09-Apr-2017 14:14:28.623 failed to generate session key for dynamic DNS: permission denied +09-Apr-2017 14:14:28.623 sizing zone task pool based on 1 zones +09-Apr-2017 14:14:28.624 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +09-Apr-2017 14:14:28.628 set up managed keys zone for view _default, file 'managed-keys.bind' +09-Apr-2017 14:14:28.628 automatic empty zone: 10.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 16.172.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 17.172.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 18.172.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 19.172.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 20.172.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 21.172.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 22.172.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 23.172.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 24.172.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 25.172.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 26.172.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 27.172.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 28.172.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 29.172.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 30.172.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 31.172.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 168.192.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 64.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 65.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 66.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 67.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 68.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 69.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 70.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 71.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 72.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 73.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 74.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 75.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 76.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 77.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 78.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 79.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 80.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 81.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 82.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 83.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 84.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 85.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 86.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 87.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 88.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 89.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 90.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 91.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 92.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 93.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 94.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 95.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 96.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 97.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 98.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 99.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.628 automatic empty zone: 100.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 101.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 102.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 103.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 104.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 105.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 106.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 107.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 108.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 109.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 110.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 111.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 112.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 113.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 114.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 115.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 116.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 117.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 118.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 119.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 120.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 121.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 122.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 123.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 124.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 125.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 126.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 127.100.IN-ADDR.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 0.IN-ADDR.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 127.IN-ADDR.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 254.169.IN-ADDR.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 2.0.192.IN-ADDR.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 100.51.198.IN-ADDR.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 113.0.203.IN-ADDR.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: D.F.IP6.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 8.E.F.IP6.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 9.E.F.IP6.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: A.E.F.IP6.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: B.E.F.IP6.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +09-Apr-2017 14:14:28.629 automatic empty zone: EMPTY.AS112.ARPA +09-Apr-2017 14:14:28.629 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +09-Apr-2017 14:14:28.632 configuring command channel from '/opt/local/etc/rndc.key' +09-Apr-2017 14:14:28.632 couldn't add command channel 127.0.0.1#953: file not found +09-Apr-2017 14:14:28.632 configuring command channel from '/opt/local/etc/rndc.key' +09-Apr-2017 14:14:28.632 couldn't add command channel ::1#953: file not found +09-Apr-2017 14:14:28.632 not using config file logging statement for logging due to -g option +09-Apr-2017 14:14:28.632 managed-keys-zone: loaded serial 0 +09-Apr-2017 14:14:28.662 zone local/IN: loaded serial 2 +09-Apr-2017 14:14:28.662 all zones loaded +09-Apr-2017 14:14:28.663 running +09-Apr-2017 14:14:34.691 shutting down +09-Apr-2017 14:14:34.691 no longer listening on 127.0.0.1#5400 +09-Apr-2017 14:14:34.769 exiting +=== Log Marked @ 2017-04-09 14:17:46 +1200 [81526] === +09-Apr-2017 14:17:46.616 starting BIND 9.11.0-P3 +09-Apr-2017 14:17:46.617 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +09-Apr-2017 14:17:46.617 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +09-Apr-2017 14:17:46.617 running as: named -c named.conf -f -p 5400 -g +09-Apr-2017 14:17:46.617 ---------------------------------------------------- +09-Apr-2017 14:17:46.617 BIND 9 is maintained by Internet Systems Consortium, +09-Apr-2017 14:17:46.617 Inc. (ISC), a non-profit 501(c)(3) public-benefit +09-Apr-2017 14:17:46.617 corporation. Support and training for BIND 9 are +09-Apr-2017 14:17:46.617 available at https://www.isc.org/support +09-Apr-2017 14:17:46.617 ---------------------------------------------------- +09-Apr-2017 14:17:46.617 found 8 CPUs, using 8 worker threads +09-Apr-2017 14:17:46.617 using 7 UDP listeners per interface +09-Apr-2017 14:17:46.617 using up to 4096 sockets +09-Apr-2017 14:17:46.633 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +09-Apr-2017 14:17:46.633 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +09-Apr-2017 14:17:46.634 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +09-Apr-2017 14:17:46.635 using default UDP/IPv4 port range: [49152, 65535] +09-Apr-2017 14:17:46.635 using default UDP/IPv6 port range: [49152, 65535] +09-Apr-2017 14:17:46.635 listening on IPv4 interface lo0, 127.0.0.1#5400 +09-Apr-2017 14:17:46.638 generating session key for dynamic DNS +09-Apr-2017 14:17:46.638 could not open file '/opt/local/var/run/named/session.key': Permission denied +09-Apr-2017 14:17:46.638 could not create /opt/local/var/run/named/session.key +09-Apr-2017 14:17:46.638 failed to generate session key for dynamic DNS: permission denied +09-Apr-2017 14:17:46.639 sizing zone task pool based on 1 zones +09-Apr-2017 14:17:46.640 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +09-Apr-2017 14:17:46.643 set up managed keys zone for view _default, file 'managed-keys.bind' +09-Apr-2017 14:17:46.643 automatic empty zone: 10.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 16.172.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 17.172.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 18.172.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 19.172.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 20.172.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 21.172.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 22.172.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 23.172.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 24.172.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 25.172.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 26.172.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 27.172.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 28.172.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 29.172.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 30.172.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 31.172.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 168.192.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 64.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 65.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 66.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 67.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 68.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 69.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 70.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 71.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 72.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 73.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 74.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 75.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 76.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 77.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 78.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 79.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 80.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 81.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 82.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 83.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 84.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 85.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 86.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 87.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 88.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 89.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 90.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 91.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 92.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 93.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 94.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 95.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 96.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 97.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 98.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 99.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 100.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 101.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 102.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 103.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 104.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.643 automatic empty zone: 105.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: 106.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: 107.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: 108.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: 109.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: 110.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: 111.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: 112.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: 113.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: 114.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: 115.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: 116.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: 117.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: 118.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: 119.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: 120.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: 121.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: 122.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: 123.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: 124.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: 125.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: 126.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: 127.100.IN-ADDR.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: 0.IN-ADDR.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: 127.IN-ADDR.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: 254.169.IN-ADDR.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: 2.0.192.IN-ADDR.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: 100.51.198.IN-ADDR.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: 113.0.203.IN-ADDR.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: D.F.IP6.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: 8.E.F.IP6.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: 9.E.F.IP6.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: A.E.F.IP6.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: B.E.F.IP6.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +09-Apr-2017 14:17:46.644 automatic empty zone: EMPTY.AS112.ARPA +09-Apr-2017 14:17:46.644 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +09-Apr-2017 14:17:46.647 configuring command channel from '/opt/local/etc/rndc.key' +09-Apr-2017 14:17:46.647 couldn't add command channel 127.0.0.1#953: file not found +09-Apr-2017 14:17:46.647 configuring command channel from '/opt/local/etc/rndc.key' +09-Apr-2017 14:17:46.647 couldn't add command channel ::1#953: file not found +09-Apr-2017 14:17:46.647 not using config file logging statement for logging due to -g option +09-Apr-2017 14:17:46.647 managed-keys-zone: loaded serial 0 +09-Apr-2017 14:17:46.681 zone local/IN: loaded serial 2 +09-Apr-2017 14:17:46.681 all zones loaded +09-Apr-2017 14:17:46.681 running +09-Apr-2017 14:17:46.808 shutting down +09-Apr-2017 14:17:46.808 no longer listening on 127.0.0.1#5400 +09-Apr-2017 14:17:46.885 exiting +=== Log Marked @ 2017-04-09 14:18:58 +1200 [81534] === +09-Apr-2017 14:18:58.244 starting BIND 9.11.0-P3 +09-Apr-2017 14:18:58.244 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +09-Apr-2017 14:18:58.244 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +09-Apr-2017 14:18:58.244 running as: named -c named.conf -f -p 5400 -g +09-Apr-2017 14:18:58.244 ---------------------------------------------------- +09-Apr-2017 14:18:58.244 BIND 9 is maintained by Internet Systems Consortium, +09-Apr-2017 14:18:58.244 Inc. (ISC), a non-profit 501(c)(3) public-benefit +09-Apr-2017 14:18:58.244 corporation. Support and training for BIND 9 are +09-Apr-2017 14:18:58.244 available at https://www.isc.org/support +09-Apr-2017 14:18:58.244 ---------------------------------------------------- +09-Apr-2017 14:18:58.244 found 8 CPUs, using 8 worker threads +09-Apr-2017 14:18:58.244 using 7 UDP listeners per interface +09-Apr-2017 14:18:58.245 using up to 4096 sockets +09-Apr-2017 14:18:58.249 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +09-Apr-2017 14:18:58.249 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +09-Apr-2017 14:18:58.249 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +09-Apr-2017 14:18:58.249 using default UDP/IPv4 port range: [49152, 65535] +09-Apr-2017 14:18:58.249 using default UDP/IPv6 port range: [49152, 65535] +09-Apr-2017 14:18:58.250 listening on IPv4 interface lo0, 127.0.0.1#5400 +09-Apr-2017 14:18:58.252 generating session key for dynamic DNS +09-Apr-2017 14:18:58.252 could not open file '/opt/local/var/run/named/session.key': Permission denied +09-Apr-2017 14:18:58.252 could not create /opt/local/var/run/named/session.key +09-Apr-2017 14:18:58.252 failed to generate session key for dynamic DNS: permission denied +09-Apr-2017 14:18:58.252 sizing zone task pool based on 1 zones +09-Apr-2017 14:18:58.252 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +09-Apr-2017 14:18:58.255 set up managed keys zone for view _default, file 'managed-keys.bind' +09-Apr-2017 14:18:58.255 automatic empty zone: 10.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 16.172.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 17.172.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 18.172.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 19.172.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 20.172.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 21.172.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 22.172.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 23.172.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 24.172.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 25.172.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 26.172.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 27.172.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 28.172.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 29.172.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 30.172.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 31.172.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 168.192.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 64.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 65.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 66.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 67.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 68.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 69.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 70.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 71.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 72.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 73.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 74.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 75.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 76.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 77.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 78.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 79.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 80.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 81.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 82.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 83.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 84.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 85.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 86.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 87.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 88.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 89.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 90.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 91.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 92.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 93.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 94.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 95.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 96.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 97.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 98.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 99.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 100.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 101.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 102.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 103.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 104.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 105.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 106.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 107.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 108.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 109.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 110.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 111.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 112.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 113.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 114.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 115.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 116.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 117.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 118.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 119.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 120.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 121.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 122.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 123.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.255 automatic empty zone: 124.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.256 automatic empty zone: 125.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.256 automatic empty zone: 126.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.256 automatic empty zone: 127.100.IN-ADDR.ARPA +09-Apr-2017 14:18:58.256 automatic empty zone: 0.IN-ADDR.ARPA +09-Apr-2017 14:18:58.256 automatic empty zone: 127.IN-ADDR.ARPA +09-Apr-2017 14:18:58.256 automatic empty zone: 254.169.IN-ADDR.ARPA +09-Apr-2017 14:18:58.256 automatic empty zone: 2.0.192.IN-ADDR.ARPA +09-Apr-2017 14:18:58.256 automatic empty zone: 100.51.198.IN-ADDR.ARPA +09-Apr-2017 14:18:58.256 automatic empty zone: 113.0.203.IN-ADDR.ARPA +09-Apr-2017 14:18:58.256 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +09-Apr-2017 14:18:58.256 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +09-Apr-2017 14:18:58.256 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +09-Apr-2017 14:18:58.256 automatic empty zone: D.F.IP6.ARPA +09-Apr-2017 14:18:58.256 automatic empty zone: 8.E.F.IP6.ARPA +09-Apr-2017 14:18:58.256 automatic empty zone: 9.E.F.IP6.ARPA +09-Apr-2017 14:18:58.256 automatic empty zone: A.E.F.IP6.ARPA +09-Apr-2017 14:18:58.256 automatic empty zone: B.E.F.IP6.ARPA +09-Apr-2017 14:18:58.256 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +09-Apr-2017 14:18:58.256 automatic empty zone: EMPTY.AS112.ARPA +09-Apr-2017 14:18:58.256 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +09-Apr-2017 14:18:58.258 configuring command channel from '/opt/local/etc/rndc.key' +09-Apr-2017 14:18:58.258 couldn't add command channel 127.0.0.1#953: file not found +09-Apr-2017 14:18:58.258 configuring command channel from '/opt/local/etc/rndc.key' +09-Apr-2017 14:18:58.258 couldn't add command channel ::1#953: file not found +09-Apr-2017 14:18:58.258 not using config file logging statement for logging due to -g option +09-Apr-2017 14:18:58.259 managed-keys-zone: loaded serial 0 +09-Apr-2017 14:18:58.291 zone local/IN: loaded serial 2 +09-Apr-2017 14:18:58.291 all zones loaded +09-Apr-2017 14:18:58.292 running +09-Apr-2017 14:19:00.717 shutting down +09-Apr-2017 14:19:00.717 no longer listening on 127.0.0.1#5400 +09-Apr-2017 14:19:00.782 exiting +=== Log Marked @ 2017-04-09 14:19:46 +1200 [81543] === +09-Apr-2017 14:19:46.303 starting BIND 9.11.0-P3 +09-Apr-2017 14:19:46.304 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +09-Apr-2017 14:19:46.304 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +09-Apr-2017 14:19:46.304 running as: named -c named.conf -f -p 5400 -g +09-Apr-2017 14:19:46.304 ---------------------------------------------------- +09-Apr-2017 14:19:46.304 BIND 9 is maintained by Internet Systems Consortium, +09-Apr-2017 14:19:46.304 Inc. (ISC), a non-profit 501(c)(3) public-benefit +09-Apr-2017 14:19:46.304 corporation. Support and training for BIND 9 are +09-Apr-2017 14:19:46.304 available at https://www.isc.org/support +09-Apr-2017 14:19:46.304 ---------------------------------------------------- +09-Apr-2017 14:19:46.304 found 8 CPUs, using 8 worker threads +09-Apr-2017 14:19:46.304 using 7 UDP listeners per interface +09-Apr-2017 14:19:46.304 using up to 4096 sockets +09-Apr-2017 14:19:46.308 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +09-Apr-2017 14:19:46.308 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +09-Apr-2017 14:19:46.308 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +09-Apr-2017 14:19:46.308 using default UDP/IPv4 port range: [49152, 65535] +09-Apr-2017 14:19:46.308 using default UDP/IPv6 port range: [49152, 65535] +09-Apr-2017 14:19:46.309 listening on IPv4 interface lo0, 127.0.0.1#5400 +09-Apr-2017 14:19:46.311 generating session key for dynamic DNS +09-Apr-2017 14:19:46.311 could not open file '/opt/local/var/run/named/session.key': Permission denied +09-Apr-2017 14:19:46.311 could not create /opt/local/var/run/named/session.key +09-Apr-2017 14:19:46.311 failed to generate session key for dynamic DNS: permission denied +09-Apr-2017 14:19:46.311 sizing zone task pool based on 1 zones +09-Apr-2017 14:19:46.312 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +09-Apr-2017 14:19:46.314 set up managed keys zone for view _default, file 'managed-keys.bind' +09-Apr-2017 14:19:46.314 automatic empty zone: 10.IN-ADDR.ARPA +09-Apr-2017 14:19:46.314 automatic empty zone: 16.172.IN-ADDR.ARPA +09-Apr-2017 14:19:46.314 automatic empty zone: 17.172.IN-ADDR.ARPA +09-Apr-2017 14:19:46.314 automatic empty zone: 18.172.IN-ADDR.ARPA +09-Apr-2017 14:19:46.314 automatic empty zone: 19.172.IN-ADDR.ARPA +09-Apr-2017 14:19:46.314 automatic empty zone: 20.172.IN-ADDR.ARPA +09-Apr-2017 14:19:46.314 automatic empty zone: 21.172.IN-ADDR.ARPA +09-Apr-2017 14:19:46.314 automatic empty zone: 22.172.IN-ADDR.ARPA +09-Apr-2017 14:19:46.314 automatic empty zone: 23.172.IN-ADDR.ARPA +09-Apr-2017 14:19:46.314 automatic empty zone: 24.172.IN-ADDR.ARPA +09-Apr-2017 14:19:46.314 automatic empty zone: 25.172.IN-ADDR.ARPA +09-Apr-2017 14:19:46.314 automatic empty zone: 26.172.IN-ADDR.ARPA +09-Apr-2017 14:19:46.314 automatic empty zone: 27.172.IN-ADDR.ARPA +09-Apr-2017 14:19:46.314 automatic empty zone: 28.172.IN-ADDR.ARPA +09-Apr-2017 14:19:46.314 automatic empty zone: 29.172.IN-ADDR.ARPA +09-Apr-2017 14:19:46.314 automatic empty zone: 30.172.IN-ADDR.ARPA +09-Apr-2017 14:19:46.314 automatic empty zone: 31.172.IN-ADDR.ARPA +09-Apr-2017 14:19:46.314 automatic empty zone: 168.192.IN-ADDR.ARPA +09-Apr-2017 14:19:46.314 automatic empty zone: 64.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.314 automatic empty zone: 65.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.314 automatic empty zone: 66.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.314 automatic empty zone: 67.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.314 automatic empty zone: 68.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.314 automatic empty zone: 69.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.314 automatic empty zone: 70.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.314 automatic empty zone: 71.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.314 automatic empty zone: 72.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.314 automatic empty zone: 73.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 74.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 75.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 76.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 77.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 78.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 79.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 80.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 81.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 82.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 83.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 84.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 85.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 86.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 87.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 88.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 89.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 90.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 91.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 92.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 93.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 94.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 95.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 96.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 97.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 98.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 99.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 100.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 101.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 102.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 103.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 104.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 105.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 106.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 107.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 108.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 109.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 110.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 111.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 112.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 113.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 114.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 115.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 116.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 117.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 118.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 119.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 120.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 121.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 122.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 123.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 124.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 125.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 126.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 127.100.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 0.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 127.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 254.169.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 2.0.192.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 100.51.198.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 113.0.203.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: D.F.IP6.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 8.E.F.IP6.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 9.E.F.IP6.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: A.E.F.IP6.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: B.E.F.IP6.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +09-Apr-2017 14:19:46.315 automatic empty zone: EMPTY.AS112.ARPA +09-Apr-2017 14:19:46.315 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +09-Apr-2017 14:19:46.318 configuring command channel from '/opt/local/etc/rndc.key' +09-Apr-2017 14:19:46.318 couldn't add command channel 127.0.0.1#953: file not found +09-Apr-2017 14:19:46.318 configuring command channel from '/opt/local/etc/rndc.key' +09-Apr-2017 14:19:46.318 couldn't add command channel ::1#953: file not found +09-Apr-2017 14:19:46.318 not using config file logging statement for logging due to -g option +09-Apr-2017 14:19:46.318 managed-keys-zone: loaded serial 0 +09-Apr-2017 14:19:46.347 zone local/IN: loaded serial 2 +09-Apr-2017 14:19:46.347 all zones loaded +09-Apr-2017 14:19:46.347 running +09-Apr-2017 14:19:52.440 shutting down +09-Apr-2017 14:19:52.440 no longer listening on 127.0.0.1#5400 +09-Apr-2017 14:19:52.508 exiting +=== Log Marked @ 2017-04-09 14:36:57 +1200 [83341] === +09-Apr-2017 14:36:57.921 starting BIND 9.11.0-P3 +09-Apr-2017 14:36:57.921 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +09-Apr-2017 14:36:57.921 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +09-Apr-2017 14:36:57.921 running as: named -c named.conf -f -p 5400 -g +09-Apr-2017 14:36:57.921 ---------------------------------------------------- +09-Apr-2017 14:36:57.921 BIND 9 is maintained by Internet Systems Consortium, +09-Apr-2017 14:36:57.921 Inc. (ISC), a non-profit 501(c)(3) public-benefit +09-Apr-2017 14:36:57.921 corporation. Support and training for BIND 9 are +09-Apr-2017 14:36:57.921 available at https://www.isc.org/support +09-Apr-2017 14:36:57.921 ---------------------------------------------------- +09-Apr-2017 14:36:57.921 found 8 CPUs, using 8 worker threads +09-Apr-2017 14:36:57.921 using 7 UDP listeners per interface +09-Apr-2017 14:36:57.921 using up to 4096 sockets +09-Apr-2017 14:36:57.937 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +09-Apr-2017 14:36:57.937 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +09-Apr-2017 14:36:57.937 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +09-Apr-2017 14:36:57.938 using default UDP/IPv4 port range: [49152, 65535] +09-Apr-2017 14:36:57.938 using default UDP/IPv6 port range: [49152, 65535] +09-Apr-2017 14:36:57.939 listening on IPv4 interface lo0, 127.0.0.1#5400 +09-Apr-2017 14:36:57.941 generating session key for dynamic DNS +09-Apr-2017 14:36:57.941 could not open file '/opt/local/var/run/named/session.key': Permission denied +09-Apr-2017 14:36:57.941 could not create /opt/local/var/run/named/session.key +09-Apr-2017 14:36:57.941 failed to generate session key for dynamic DNS: permission denied +09-Apr-2017 14:36:57.942 sizing zone task pool based on 1 zones +09-Apr-2017 14:36:57.943 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +09-Apr-2017 14:36:57.946 set up managed keys zone for view _default, file 'managed-keys.bind' +09-Apr-2017 14:36:57.946 automatic empty zone: 10.IN-ADDR.ARPA +09-Apr-2017 14:36:57.946 automatic empty zone: 16.172.IN-ADDR.ARPA +09-Apr-2017 14:36:57.946 automatic empty zone: 17.172.IN-ADDR.ARPA +09-Apr-2017 14:36:57.946 automatic empty zone: 18.172.IN-ADDR.ARPA +09-Apr-2017 14:36:57.946 automatic empty zone: 19.172.IN-ADDR.ARPA +09-Apr-2017 14:36:57.946 automatic empty zone: 20.172.IN-ADDR.ARPA +09-Apr-2017 14:36:57.946 automatic empty zone: 21.172.IN-ADDR.ARPA +09-Apr-2017 14:36:57.946 automatic empty zone: 22.172.IN-ADDR.ARPA +09-Apr-2017 14:36:57.946 automatic empty zone: 23.172.IN-ADDR.ARPA +09-Apr-2017 14:36:57.946 automatic empty zone: 24.172.IN-ADDR.ARPA +09-Apr-2017 14:36:57.946 automatic empty zone: 25.172.IN-ADDR.ARPA +09-Apr-2017 14:36:57.946 automatic empty zone: 26.172.IN-ADDR.ARPA +09-Apr-2017 14:36:57.946 automatic empty zone: 27.172.IN-ADDR.ARPA +09-Apr-2017 14:36:57.946 automatic empty zone: 28.172.IN-ADDR.ARPA +09-Apr-2017 14:36:57.946 automatic empty zone: 29.172.IN-ADDR.ARPA +09-Apr-2017 14:36:57.946 automatic empty zone: 30.172.IN-ADDR.ARPA +09-Apr-2017 14:36:57.946 automatic empty zone: 31.172.IN-ADDR.ARPA +09-Apr-2017 14:36:57.946 automatic empty zone: 168.192.IN-ADDR.ARPA +09-Apr-2017 14:36:57.946 automatic empty zone: 64.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.946 automatic empty zone: 65.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.946 automatic empty zone: 66.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 67.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 68.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 69.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 70.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 71.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 72.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 73.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 74.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 75.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 76.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 77.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 78.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 79.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 80.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 81.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 82.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 83.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 84.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 85.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 86.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 87.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 88.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 89.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 90.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 91.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 92.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 93.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 94.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 95.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 96.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 97.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 98.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 99.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 100.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 101.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 102.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 103.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 104.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 105.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 106.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 107.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 108.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 109.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 110.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 111.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 112.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 113.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 114.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 115.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 116.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 117.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 118.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 119.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 120.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 121.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 122.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 123.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 124.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 125.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 126.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 127.100.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 0.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 127.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 254.169.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 2.0.192.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 100.51.198.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 113.0.203.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: D.F.IP6.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 8.E.F.IP6.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 9.E.F.IP6.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: A.E.F.IP6.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: B.E.F.IP6.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +09-Apr-2017 14:36:57.947 automatic empty zone: EMPTY.AS112.ARPA +09-Apr-2017 14:36:57.947 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +09-Apr-2017 14:36:57.950 configuring command channel from '/opt/local/etc/rndc.key' +09-Apr-2017 14:36:57.950 couldn't add command channel 127.0.0.1#953: file not found +09-Apr-2017 14:36:57.950 configuring command channel from '/opt/local/etc/rndc.key' +09-Apr-2017 14:36:57.950 couldn't add command channel ::1#953: file not found +09-Apr-2017 14:36:57.950 not using config file logging statement for logging due to -g option +09-Apr-2017 14:36:57.950 managed-keys-zone: loaded serial 0 +09-Apr-2017 14:36:57.983 zone local/IN: loaded serial 2 +09-Apr-2017 14:36:57.983 all zones loaded +09-Apr-2017 14:36:57.983 running +09-Apr-2017 14:37:04.341 shutting down +09-Apr-2017 14:37:04.342 no longer listening on 127.0.0.1#5400 +09-Apr-2017 14:37:04.412 exiting +=== Log Marked @ 2017-04-18 02:15:49 +1200 [19517] === +18-Apr-2017 02:15:49.907 starting BIND 9.11.0-P3 +18-Apr-2017 02:15:49.907 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +18-Apr-2017 02:15:49.907 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +18-Apr-2017 02:15:49.907 running as: named -c named.conf -f -p 5400 -g +18-Apr-2017 02:15:49.907 ---------------------------------------------------- +18-Apr-2017 02:15:49.907 BIND 9 is maintained by Internet Systems Consortium, +18-Apr-2017 02:15:49.907 Inc. (ISC), a non-profit 501(c)(3) public-benefit +18-Apr-2017 02:15:49.907 corporation. Support and training for BIND 9 are +18-Apr-2017 02:15:49.907 available at https://www.isc.org/support +18-Apr-2017 02:15:49.907 ---------------------------------------------------- +18-Apr-2017 02:15:49.910 found 8 CPUs, using 8 worker threads +18-Apr-2017 02:15:49.910 using 7 UDP listeners per interface +18-Apr-2017 02:15:49.914 using up to 4096 sockets +18-Apr-2017 02:15:49.984 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +18-Apr-2017 02:15:49.985 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +18-Apr-2017 02:15:49.988 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +18-Apr-2017 02:15:49.992 using default UDP/IPv4 port range: [49152, 65535] +18-Apr-2017 02:15:49.992 using default UDP/IPv6 port range: [49152, 65535] +18-Apr-2017 02:15:49.992 listening on IPv4 interface lo0, 127.0.0.1#5400 +18-Apr-2017 02:15:49.994 generating session key for dynamic DNS +18-Apr-2017 02:15:50.002 could not open file '/opt/local/var/run/named/session.key': Permission denied +18-Apr-2017 02:15:50.002 could not create /opt/local/var/run/named/session.key +18-Apr-2017 02:15:50.002 failed to generate session key for dynamic DNS: permission denied +18-Apr-2017 02:15:50.007 sizing zone task pool based on 1 zones +18-Apr-2017 02:15:50.012 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +18-Apr-2017 02:15:50.023 set up managed keys zone for view _default, file 'managed-keys.bind' +18-Apr-2017 02:15:50.023 automatic empty zone: 10.IN-ADDR.ARPA +18-Apr-2017 02:15:50.023 automatic empty zone: 16.172.IN-ADDR.ARPA +18-Apr-2017 02:15:50.023 automatic empty zone: 17.172.IN-ADDR.ARPA +18-Apr-2017 02:15:50.023 automatic empty zone: 18.172.IN-ADDR.ARPA +18-Apr-2017 02:15:50.023 automatic empty zone: 19.172.IN-ADDR.ARPA +18-Apr-2017 02:15:50.023 automatic empty zone: 20.172.IN-ADDR.ARPA +18-Apr-2017 02:15:50.023 automatic empty zone: 21.172.IN-ADDR.ARPA +18-Apr-2017 02:15:50.023 automatic empty zone: 22.172.IN-ADDR.ARPA +18-Apr-2017 02:15:50.023 automatic empty zone: 23.172.IN-ADDR.ARPA +18-Apr-2017 02:15:50.023 automatic empty zone: 24.172.IN-ADDR.ARPA +18-Apr-2017 02:15:50.023 automatic empty zone: 25.172.IN-ADDR.ARPA +18-Apr-2017 02:15:50.023 automatic empty zone: 26.172.IN-ADDR.ARPA +18-Apr-2017 02:15:50.023 automatic empty zone: 27.172.IN-ADDR.ARPA +18-Apr-2017 02:15:50.023 automatic empty zone: 28.172.IN-ADDR.ARPA +18-Apr-2017 02:15:50.023 automatic empty zone: 29.172.IN-ADDR.ARPA +18-Apr-2017 02:15:50.023 automatic empty zone: 30.172.IN-ADDR.ARPA +18-Apr-2017 02:15:50.023 automatic empty zone: 31.172.IN-ADDR.ARPA +18-Apr-2017 02:15:50.023 automatic empty zone: 168.192.IN-ADDR.ARPA +18-Apr-2017 02:15:50.023 automatic empty zone: 64.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 65.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 66.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 67.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 68.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 69.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 70.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 71.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 72.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 73.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 74.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 75.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 76.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 77.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 78.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 79.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 80.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 81.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 82.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 83.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 84.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 85.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 86.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 87.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 88.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 89.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 90.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 91.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 92.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 93.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 94.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 95.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 96.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 97.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 98.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 99.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 100.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 101.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 102.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 103.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 104.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 105.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 106.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 107.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 108.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 109.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 110.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 111.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 112.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 113.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 114.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 115.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 116.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 117.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 118.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 119.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 120.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 121.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 122.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 123.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 124.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 125.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 126.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 127.100.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 0.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 127.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 254.169.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 2.0.192.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 100.51.198.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 113.0.203.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: D.F.IP6.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 8.E.F.IP6.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 9.E.F.IP6.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: A.E.F.IP6.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: B.E.F.IP6.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +18-Apr-2017 02:15:50.024 automatic empty zone: EMPTY.AS112.ARPA +18-Apr-2017 02:15:50.025 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +18-Apr-2017 02:15:50.029 configuring command channel from '/opt/local/etc/rndc.key' +18-Apr-2017 02:15:50.029 couldn't add command channel 127.0.0.1#953: file not found +18-Apr-2017 02:15:50.029 configuring command channel from '/opt/local/etc/rndc.key' +18-Apr-2017 02:15:50.029 couldn't add command channel ::1#953: file not found +18-Apr-2017 02:15:50.029 not using config file logging statement for logging due to -g option +18-Apr-2017 02:15:50.029 managed-keys-zone: loaded serial 0 +18-Apr-2017 02:15:50.062 zone local/IN: loaded serial 2 +18-Apr-2017 02:15:50.062 all zones loaded +18-Apr-2017 02:15:50.063 running +18-Apr-2017 02:15:56.286 shutting down +18-Apr-2017 02:15:56.287 no longer listening on 127.0.0.1#5400 +18-Apr-2017 02:15:56.370 exiting +=== Log Marked @ 2017-04-18 02:19:03 +1200 [19586] === +18-Apr-2017 02:19:03.205 starting BIND 9.11.0-P3 +18-Apr-2017 02:19:03.205 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +18-Apr-2017 02:19:03.205 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +18-Apr-2017 02:19:03.205 running as: named -c named.conf -f -p 5400 -g +18-Apr-2017 02:19:03.205 ---------------------------------------------------- +18-Apr-2017 02:19:03.205 BIND 9 is maintained by Internet Systems Consortium, +18-Apr-2017 02:19:03.205 Inc. (ISC), a non-profit 501(c)(3) public-benefit +18-Apr-2017 02:19:03.205 corporation. Support and training for BIND 9 are +18-Apr-2017 02:19:03.205 available at https://www.isc.org/support +18-Apr-2017 02:19:03.205 ---------------------------------------------------- +18-Apr-2017 02:19:03.205 found 8 CPUs, using 8 worker threads +18-Apr-2017 02:19:03.205 using 7 UDP listeners per interface +18-Apr-2017 02:19:03.205 using up to 4096 sockets +18-Apr-2017 02:19:03.209 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +18-Apr-2017 02:19:03.209 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +18-Apr-2017 02:19:03.209 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +18-Apr-2017 02:19:03.210 using default UDP/IPv4 port range: [49152, 65535] +18-Apr-2017 02:19:03.210 using default UDP/IPv6 port range: [49152, 65535] +18-Apr-2017 02:19:03.211 listening on IPv4 interface lo0, 127.0.0.1#5400 +18-Apr-2017 02:19:03.214 generating session key for dynamic DNS +18-Apr-2017 02:19:03.214 could not open file '/opt/local/var/run/named/session.key': Permission denied +18-Apr-2017 02:19:03.214 could not create /opt/local/var/run/named/session.key +18-Apr-2017 02:19:03.214 failed to generate session key for dynamic DNS: permission denied +18-Apr-2017 02:19:03.214 sizing zone task pool based on 1 zones +18-Apr-2017 02:19:03.214 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +18-Apr-2017 02:19:03.216 set up managed keys zone for view _default, file 'managed-keys.bind' +18-Apr-2017 02:19:03.217 automatic empty zone: 10.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 16.172.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 17.172.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 18.172.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 19.172.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 20.172.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 21.172.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 22.172.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 23.172.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 24.172.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 25.172.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 26.172.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 27.172.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 28.172.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 29.172.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 30.172.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 31.172.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 168.192.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 64.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 65.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 66.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 67.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 68.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 69.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 70.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 71.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 72.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 73.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 74.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 75.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 76.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 77.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 78.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 79.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 80.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 81.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 82.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 83.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 84.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 85.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 86.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 87.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 88.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 89.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 90.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 91.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 92.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 93.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 94.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 95.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 96.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 97.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 98.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 99.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 100.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 101.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 102.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 103.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 104.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 105.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 106.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 107.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 108.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 109.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 110.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 111.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 112.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 113.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 114.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 115.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 116.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 117.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 118.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 119.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 120.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 121.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 122.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 123.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 124.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 125.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 126.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 127.100.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 0.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 127.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 254.169.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 2.0.192.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 100.51.198.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 113.0.203.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: D.F.IP6.ARPA +18-Apr-2017 02:19:03.217 automatic empty zone: 8.E.F.IP6.ARPA +18-Apr-2017 02:19:03.218 automatic empty zone: 9.E.F.IP6.ARPA +18-Apr-2017 02:19:03.218 automatic empty zone: A.E.F.IP6.ARPA +18-Apr-2017 02:19:03.218 automatic empty zone: B.E.F.IP6.ARPA +18-Apr-2017 02:19:03.218 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +18-Apr-2017 02:19:03.218 automatic empty zone: EMPTY.AS112.ARPA +18-Apr-2017 02:19:03.218 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +18-Apr-2017 02:19:03.220 configuring command channel from '/opt/local/etc/rndc.key' +18-Apr-2017 02:19:03.220 couldn't add command channel 127.0.0.1#953: file not found +18-Apr-2017 02:19:03.220 configuring command channel from '/opt/local/etc/rndc.key' +18-Apr-2017 02:19:03.220 couldn't add command channel ::1#953: file not found +18-Apr-2017 02:19:03.220 not using config file logging statement for logging due to -g option +18-Apr-2017 02:19:03.221 managed-keys-zone: loaded serial 0 +18-Apr-2017 02:19:03.257 zone local/IN: loaded serial 2 +18-Apr-2017 02:19:03.257 all zones loaded +18-Apr-2017 02:19:03.257 running +18-Apr-2017 02:19:09.384 shutting down +18-Apr-2017 02:19:09.385 no longer listening on 127.0.0.1#5400 +18-Apr-2017 02:19:09.464 exiting +=== Log Marked @ 2017-04-18 02:20:32 +1200 [19596] === +18-Apr-2017 02:20:32.258 starting BIND 9.11.0-P3 +18-Apr-2017 02:20:32.258 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +18-Apr-2017 02:20:32.258 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +18-Apr-2017 02:20:32.258 running as: named -c named.conf -f -p 5400 -g +18-Apr-2017 02:20:32.258 ---------------------------------------------------- +18-Apr-2017 02:20:32.258 BIND 9 is maintained by Internet Systems Consortium, +18-Apr-2017 02:20:32.258 Inc. (ISC), a non-profit 501(c)(3) public-benefit +18-Apr-2017 02:20:32.258 corporation. Support and training for BIND 9 are +18-Apr-2017 02:20:32.258 available at https://www.isc.org/support +18-Apr-2017 02:20:32.258 ---------------------------------------------------- +18-Apr-2017 02:20:32.258 found 8 CPUs, using 8 worker threads +18-Apr-2017 02:20:32.258 using 7 UDP listeners per interface +18-Apr-2017 02:20:32.258 using up to 4096 sockets +18-Apr-2017 02:20:32.262 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +18-Apr-2017 02:20:32.262 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +18-Apr-2017 02:20:32.262 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +18-Apr-2017 02:20:32.262 using default UDP/IPv4 port range: [49152, 65535] +18-Apr-2017 02:20:32.262 using default UDP/IPv6 port range: [49152, 65535] +18-Apr-2017 02:20:32.263 listening on IPv4 interface lo0, 127.0.0.1#5400 +18-Apr-2017 02:20:32.265 generating session key for dynamic DNS +18-Apr-2017 02:20:32.265 could not open file '/opt/local/var/run/named/session.key': Permission denied +18-Apr-2017 02:20:32.265 could not create /opt/local/var/run/named/session.key +18-Apr-2017 02:20:32.265 failed to generate session key for dynamic DNS: permission denied +18-Apr-2017 02:20:32.265 sizing zone task pool based on 1 zones +18-Apr-2017 02:20:32.266 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +18-Apr-2017 02:20:32.268 set up managed keys zone for view _default, file 'managed-keys.bind' +18-Apr-2017 02:20:32.268 automatic empty zone: 10.IN-ADDR.ARPA +18-Apr-2017 02:20:32.268 automatic empty zone: 16.172.IN-ADDR.ARPA +18-Apr-2017 02:20:32.268 automatic empty zone: 17.172.IN-ADDR.ARPA +18-Apr-2017 02:20:32.268 automatic empty zone: 18.172.IN-ADDR.ARPA +18-Apr-2017 02:20:32.268 automatic empty zone: 19.172.IN-ADDR.ARPA +18-Apr-2017 02:20:32.268 automatic empty zone: 20.172.IN-ADDR.ARPA +18-Apr-2017 02:20:32.268 automatic empty zone: 21.172.IN-ADDR.ARPA +18-Apr-2017 02:20:32.268 automatic empty zone: 22.172.IN-ADDR.ARPA +18-Apr-2017 02:20:32.268 automatic empty zone: 23.172.IN-ADDR.ARPA +18-Apr-2017 02:20:32.268 automatic empty zone: 24.172.IN-ADDR.ARPA +18-Apr-2017 02:20:32.268 automatic empty zone: 25.172.IN-ADDR.ARPA +18-Apr-2017 02:20:32.268 automatic empty zone: 26.172.IN-ADDR.ARPA +18-Apr-2017 02:20:32.268 automatic empty zone: 27.172.IN-ADDR.ARPA +18-Apr-2017 02:20:32.268 automatic empty zone: 28.172.IN-ADDR.ARPA +18-Apr-2017 02:20:32.268 automatic empty zone: 29.172.IN-ADDR.ARPA +18-Apr-2017 02:20:32.268 automatic empty zone: 30.172.IN-ADDR.ARPA +18-Apr-2017 02:20:32.268 automatic empty zone: 31.172.IN-ADDR.ARPA +18-Apr-2017 02:20:32.268 automatic empty zone: 168.192.IN-ADDR.ARPA +18-Apr-2017 02:20:32.268 automatic empty zone: 64.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.268 automatic empty zone: 65.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.268 automatic empty zone: 66.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.268 automatic empty zone: 67.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.268 automatic empty zone: 68.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.268 automatic empty zone: 69.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.268 automatic empty zone: 70.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.268 automatic empty zone: 71.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.268 automatic empty zone: 72.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.268 automatic empty zone: 73.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.268 automatic empty zone: 74.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.268 automatic empty zone: 75.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.268 automatic empty zone: 76.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.268 automatic empty zone: 77.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.268 automatic empty zone: 78.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 79.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 80.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 81.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 82.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 83.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 84.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 85.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 86.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 87.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 88.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 89.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 90.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 91.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 92.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 93.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 94.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 95.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 96.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 97.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 98.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 99.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 100.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 101.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 102.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 103.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 104.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 105.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 106.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 107.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 108.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 109.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 110.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 111.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 112.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 113.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 114.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 115.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 116.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 117.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 118.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 119.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 120.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 121.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 122.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 123.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 124.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 125.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 126.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 127.100.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 0.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 127.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 254.169.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 2.0.192.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 100.51.198.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 113.0.203.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: D.F.IP6.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 8.E.F.IP6.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 9.E.F.IP6.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: A.E.F.IP6.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: B.E.F.IP6.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +18-Apr-2017 02:20:32.269 automatic empty zone: EMPTY.AS112.ARPA +18-Apr-2017 02:20:32.269 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +18-Apr-2017 02:20:32.272 configuring command channel from '/opt/local/etc/rndc.key' +18-Apr-2017 02:20:32.272 couldn't add command channel 127.0.0.1#953: file not found +18-Apr-2017 02:20:32.272 configuring command channel from '/opt/local/etc/rndc.key' +18-Apr-2017 02:20:32.272 couldn't add command channel ::1#953: file not found +18-Apr-2017 02:20:32.272 not using config file logging statement for logging due to -g option +18-Apr-2017 02:20:32.273 managed-keys-zone: loaded serial 0 +18-Apr-2017 02:20:32.306 zone local/IN: loaded serial 2 +18-Apr-2017 02:20:32.306 all zones loaded +18-Apr-2017 02:20:32.306 running +18-Apr-2017 02:20:38.277 shutting down +18-Apr-2017 02:20:38.278 no longer listening on 127.0.0.1#5400 +18-Apr-2017 02:20:38.344 exiting +=== Log Marked @ 2017-04-18 03:03:39 +1200 [20089] === +18-Apr-2017 03:03:39.535 starting BIND 9.11.0-P3 +18-Apr-2017 03:03:39.535 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +18-Apr-2017 03:03:39.535 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +18-Apr-2017 03:03:39.535 running as: named -c named.conf -f -p 5400 -g +18-Apr-2017 03:03:39.535 ---------------------------------------------------- +18-Apr-2017 03:03:39.535 BIND 9 is maintained by Internet Systems Consortium, +18-Apr-2017 03:03:39.535 Inc. (ISC), a non-profit 501(c)(3) public-benefit +18-Apr-2017 03:03:39.535 corporation. Support and training for BIND 9 are +18-Apr-2017 03:03:39.535 available at https://www.isc.org/support +18-Apr-2017 03:03:39.535 ---------------------------------------------------- +18-Apr-2017 03:03:39.535 found 8 CPUs, using 8 worker threads +18-Apr-2017 03:03:39.535 using 7 UDP listeners per interface +18-Apr-2017 03:03:39.536 using up to 4096 sockets +18-Apr-2017 03:03:39.554 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +18-Apr-2017 03:03:39.554 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +18-Apr-2017 03:03:39.555 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +18-Apr-2017 03:03:39.556 using default UDP/IPv4 port range: [49152, 65535] +18-Apr-2017 03:03:39.556 using default UDP/IPv6 port range: [49152, 65535] +18-Apr-2017 03:03:39.556 listening on IPv4 interface lo0, 127.0.0.1#5400 +18-Apr-2017 03:03:39.559 generating session key for dynamic DNS +18-Apr-2017 03:03:39.560 could not open file '/opt/local/var/run/named/session.key': Permission denied +18-Apr-2017 03:03:39.560 could not create /opt/local/var/run/named/session.key +18-Apr-2017 03:03:39.560 failed to generate session key for dynamic DNS: permission denied +18-Apr-2017 03:03:39.562 sizing zone task pool based on 1 zones +18-Apr-2017 03:03:39.563 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +18-Apr-2017 03:03:39.568 set up managed keys zone for view _default, file 'managed-keys.bind' +18-Apr-2017 03:03:39.568 automatic empty zone: 10.IN-ADDR.ARPA +18-Apr-2017 03:03:39.568 automatic empty zone: 16.172.IN-ADDR.ARPA +18-Apr-2017 03:03:39.568 automatic empty zone: 17.172.IN-ADDR.ARPA +18-Apr-2017 03:03:39.568 automatic empty zone: 18.172.IN-ADDR.ARPA +18-Apr-2017 03:03:39.568 automatic empty zone: 19.172.IN-ADDR.ARPA +18-Apr-2017 03:03:39.568 automatic empty zone: 20.172.IN-ADDR.ARPA +18-Apr-2017 03:03:39.568 automatic empty zone: 21.172.IN-ADDR.ARPA +18-Apr-2017 03:03:39.568 automatic empty zone: 22.172.IN-ADDR.ARPA +18-Apr-2017 03:03:39.568 automatic empty zone: 23.172.IN-ADDR.ARPA +18-Apr-2017 03:03:39.568 automatic empty zone: 24.172.IN-ADDR.ARPA +18-Apr-2017 03:03:39.568 automatic empty zone: 25.172.IN-ADDR.ARPA +18-Apr-2017 03:03:39.568 automatic empty zone: 26.172.IN-ADDR.ARPA +18-Apr-2017 03:03:39.568 automatic empty zone: 27.172.IN-ADDR.ARPA +18-Apr-2017 03:03:39.568 automatic empty zone: 28.172.IN-ADDR.ARPA +18-Apr-2017 03:03:39.568 automatic empty zone: 29.172.IN-ADDR.ARPA +18-Apr-2017 03:03:39.568 automatic empty zone: 30.172.IN-ADDR.ARPA +18-Apr-2017 03:03:39.568 automatic empty zone: 31.172.IN-ADDR.ARPA +18-Apr-2017 03:03:39.568 automatic empty zone: 168.192.IN-ADDR.ARPA +18-Apr-2017 03:03:39.568 automatic empty zone: 64.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.568 automatic empty zone: 65.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.568 automatic empty zone: 66.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.568 automatic empty zone: 67.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.568 automatic empty zone: 68.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.568 automatic empty zone: 69.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.568 automatic empty zone: 70.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.568 automatic empty zone: 71.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.568 automatic empty zone: 72.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.568 automatic empty zone: 73.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.568 automatic empty zone: 74.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.568 automatic empty zone: 75.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.568 automatic empty zone: 76.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 77.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 78.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 79.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 80.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 81.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 82.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 83.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 84.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 85.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 86.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 87.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 88.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 89.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 90.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 91.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 92.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 93.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 94.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 95.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 96.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 97.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 98.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 99.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 100.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 101.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 102.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 103.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 104.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 105.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 106.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 107.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 108.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 109.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 110.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 111.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 112.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 113.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 114.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 115.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 116.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 117.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 118.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 119.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 120.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 121.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 122.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 123.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 124.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 125.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 126.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 127.100.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 0.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 127.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 254.169.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 2.0.192.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 100.51.198.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 113.0.203.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: D.F.IP6.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 8.E.F.IP6.ARPA +18-Apr-2017 03:03:39.569 automatic empty zone: 9.E.F.IP6.ARPA +18-Apr-2017 03:03:39.570 automatic empty zone: A.E.F.IP6.ARPA +18-Apr-2017 03:03:39.570 automatic empty zone: B.E.F.IP6.ARPA +18-Apr-2017 03:03:39.570 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +18-Apr-2017 03:03:39.570 automatic empty zone: EMPTY.AS112.ARPA +18-Apr-2017 03:03:39.570 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +18-Apr-2017 03:03:39.574 configuring command channel from '/opt/local/etc/rndc.key' +18-Apr-2017 03:03:39.574 couldn't add command channel 127.0.0.1#953: file not found +18-Apr-2017 03:03:39.574 configuring command channel from '/opt/local/etc/rndc.key' +18-Apr-2017 03:03:39.574 couldn't add command channel ::1#953: file not found +18-Apr-2017 03:03:39.574 not using config file logging statement for logging due to -g option +18-Apr-2017 03:03:39.574 managed-keys-zone: loaded serial 0 +18-Apr-2017 03:03:39.609 zone local/IN: loaded serial 2 +18-Apr-2017 03:03:39.609 all zones loaded +18-Apr-2017 03:03:39.609 running +18-Apr-2017 03:03:45.691 shutting down +18-Apr-2017 03:03:45.691 no longer listening on 127.0.0.1#5400 +18-Apr-2017 03:03:45.761 exiting +=== Log Marked @ 2017-04-18 03:04:46 +1200 [20134] === +18-Apr-2017 03:04:46.651 starting BIND 9.11.0-P3 +18-Apr-2017 03:04:46.651 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +18-Apr-2017 03:04:46.651 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +18-Apr-2017 03:04:46.651 running as: named -c named.conf -f -p 5400 -g +18-Apr-2017 03:04:46.651 ---------------------------------------------------- +18-Apr-2017 03:04:46.651 BIND 9 is maintained by Internet Systems Consortium, +18-Apr-2017 03:04:46.651 Inc. (ISC), a non-profit 501(c)(3) public-benefit +18-Apr-2017 03:04:46.651 corporation. Support and training for BIND 9 are +18-Apr-2017 03:04:46.651 available at https://www.isc.org/support +18-Apr-2017 03:04:46.651 ---------------------------------------------------- +18-Apr-2017 03:04:46.651 found 8 CPUs, using 8 worker threads +18-Apr-2017 03:04:46.651 using 7 UDP listeners per interface +18-Apr-2017 03:04:46.651 using up to 4096 sockets +18-Apr-2017 03:04:46.655 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +18-Apr-2017 03:04:46.655 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +18-Apr-2017 03:04:46.655 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +18-Apr-2017 03:04:46.656 using default UDP/IPv4 port range: [49152, 65535] +18-Apr-2017 03:04:46.656 using default UDP/IPv6 port range: [49152, 65535] +18-Apr-2017 03:04:46.656 listening on IPv4 interface lo0, 127.0.0.1#5400 +18-Apr-2017 03:04:46.658 generating session key for dynamic DNS +18-Apr-2017 03:04:46.659 could not open file '/opt/local/var/run/named/session.key': Permission denied +18-Apr-2017 03:04:46.659 could not create /opt/local/var/run/named/session.key +18-Apr-2017 03:04:46.659 failed to generate session key for dynamic DNS: permission denied +18-Apr-2017 03:04:46.659 sizing zone task pool based on 1 zones +18-Apr-2017 03:04:46.659 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +18-Apr-2017 03:04:46.661 set up managed keys zone for view _default, file 'managed-keys.bind' +18-Apr-2017 03:04:46.661 automatic empty zone: 10.IN-ADDR.ARPA +18-Apr-2017 03:04:46.661 automatic empty zone: 16.172.IN-ADDR.ARPA +18-Apr-2017 03:04:46.661 automatic empty zone: 17.172.IN-ADDR.ARPA +18-Apr-2017 03:04:46.661 automatic empty zone: 18.172.IN-ADDR.ARPA +18-Apr-2017 03:04:46.661 automatic empty zone: 19.172.IN-ADDR.ARPA +18-Apr-2017 03:04:46.661 automatic empty zone: 20.172.IN-ADDR.ARPA +18-Apr-2017 03:04:46.661 automatic empty zone: 21.172.IN-ADDR.ARPA +18-Apr-2017 03:04:46.661 automatic empty zone: 22.172.IN-ADDR.ARPA +18-Apr-2017 03:04:46.661 automatic empty zone: 23.172.IN-ADDR.ARPA +18-Apr-2017 03:04:46.661 automatic empty zone: 24.172.IN-ADDR.ARPA +18-Apr-2017 03:04:46.661 automatic empty zone: 25.172.IN-ADDR.ARPA +18-Apr-2017 03:04:46.661 automatic empty zone: 26.172.IN-ADDR.ARPA +18-Apr-2017 03:04:46.661 automatic empty zone: 27.172.IN-ADDR.ARPA +18-Apr-2017 03:04:46.661 automatic empty zone: 28.172.IN-ADDR.ARPA +18-Apr-2017 03:04:46.661 automatic empty zone: 29.172.IN-ADDR.ARPA +18-Apr-2017 03:04:46.661 automatic empty zone: 30.172.IN-ADDR.ARPA +18-Apr-2017 03:04:46.661 automatic empty zone: 31.172.IN-ADDR.ARPA +18-Apr-2017 03:04:46.661 automatic empty zone: 168.192.IN-ADDR.ARPA +18-Apr-2017 03:04:46.661 automatic empty zone: 64.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.661 automatic empty zone: 65.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.661 automatic empty zone: 66.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.661 automatic empty zone: 67.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.661 automatic empty zone: 68.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.661 automatic empty zone: 69.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.661 automatic empty zone: 70.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.661 automatic empty zone: 71.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.661 automatic empty zone: 72.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.661 automatic empty zone: 73.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 74.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 75.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 76.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 77.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 78.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 79.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 80.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 81.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 82.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 83.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 84.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 85.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 86.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 87.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 88.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 89.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 90.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 91.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 92.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 93.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 94.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 95.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 96.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 97.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 98.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 99.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 100.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 101.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 102.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 103.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 104.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 105.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 106.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 107.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 108.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 109.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 110.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 111.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 112.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 113.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 114.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 115.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 116.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 117.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 118.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 119.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 120.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 121.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 122.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 123.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 124.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 125.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 126.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 127.100.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 0.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 127.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 254.169.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 2.0.192.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 100.51.198.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 113.0.203.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: D.F.IP6.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 8.E.F.IP6.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 9.E.F.IP6.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: A.E.F.IP6.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: B.E.F.IP6.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +18-Apr-2017 03:04:46.662 automatic empty zone: EMPTY.AS112.ARPA +18-Apr-2017 03:04:46.662 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +18-Apr-2017 03:04:46.665 configuring command channel from '/opt/local/etc/rndc.key' +18-Apr-2017 03:04:46.665 couldn't add command channel 127.0.0.1#953: file not found +18-Apr-2017 03:04:46.665 configuring command channel from '/opt/local/etc/rndc.key' +18-Apr-2017 03:04:46.665 couldn't add command channel ::1#953: file not found +18-Apr-2017 03:04:46.665 not using config file logging statement for logging due to -g option +18-Apr-2017 03:04:46.665 managed-keys-zone: loaded serial 0 +18-Apr-2017 03:04:46.694 zone local/IN: loaded serial 2 +18-Apr-2017 03:04:46.694 all zones loaded +18-Apr-2017 03:04:46.694 running +18-Apr-2017 03:04:52.560 shutting down +18-Apr-2017 03:04:52.561 no longer listening on 127.0.0.1#5400 +18-Apr-2017 03:04:52.636 exiting +=== Log Marked @ 2017-05-23 23:16:18 +1200 [86472] === +23-May-2017 23:16:18.334 starting BIND 9.11.0-P3 +23-May-2017 23:16:18.334 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +23-May-2017 23:16:18.334 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +23-May-2017 23:16:18.334 running as: named -c named.conf -f -p 5400 -g +23-May-2017 23:16:18.334 ---------------------------------------------------- +23-May-2017 23:16:18.334 BIND 9 is maintained by Internet Systems Consortium, +23-May-2017 23:16:18.334 Inc. (ISC), a non-profit 501(c)(3) public-benefit +23-May-2017 23:16:18.334 corporation. Support and training for BIND 9 are +23-May-2017 23:16:18.334 available at https://www.isc.org/support +23-May-2017 23:16:18.334 ---------------------------------------------------- +23-May-2017 23:16:18.334 found 8 CPUs, using 8 worker threads +23-May-2017 23:16:18.334 using 7 UDP listeners per interface +23-May-2017 23:16:18.335 using up to 4096 sockets +23-May-2017 23:16:18.354 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +23-May-2017 23:16:18.354 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +23-May-2017 23:16:18.355 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +23-May-2017 23:16:18.356 using default UDP/IPv4 port range: [49152, 65535] +23-May-2017 23:16:18.356 using default UDP/IPv6 port range: [49152, 65535] +23-May-2017 23:16:18.357 listening on IPv4 interface lo0, 127.0.0.1#5400 +23-May-2017 23:16:18.359 generating session key for dynamic DNS +23-May-2017 23:16:18.362 could not open file '/opt/local/var/run/named/session.key': Permission denied +23-May-2017 23:16:18.362 could not create /opt/local/var/run/named/session.key +23-May-2017 23:16:18.362 failed to generate session key for dynamic DNS: permission denied +23-May-2017 23:16:18.363 sizing zone task pool based on 1 zones +23-May-2017 23:16:18.365 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +23-May-2017 23:16:18.370 set up managed keys zone for view _default, file 'managed-keys.bind' +23-May-2017 23:16:18.370 automatic empty zone: 10.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 16.172.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 17.172.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 18.172.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 19.172.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 20.172.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 21.172.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 22.172.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 23.172.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 24.172.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 25.172.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 26.172.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 27.172.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 28.172.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 29.172.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 30.172.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 31.172.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 168.192.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 64.100.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 65.100.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 66.100.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 67.100.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 68.100.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 69.100.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 70.100.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 71.100.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 72.100.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 73.100.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 74.100.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 75.100.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 76.100.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 77.100.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 78.100.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 79.100.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 80.100.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 81.100.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 82.100.IN-ADDR.ARPA +23-May-2017 23:16:18.370 automatic empty zone: 83.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 84.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 85.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 86.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 87.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 88.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 89.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 90.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 91.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 92.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 93.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 94.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 95.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 96.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 97.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 98.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 99.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 100.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 101.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 102.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 103.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 104.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 105.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 106.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 107.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 108.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 109.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 110.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 111.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 112.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 113.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 114.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 115.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 116.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 117.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 118.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 119.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 120.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 121.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 122.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 123.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 124.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 125.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 126.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 127.100.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 0.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 127.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 254.169.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 2.0.192.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 100.51.198.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 113.0.203.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +23-May-2017 23:16:18.371 automatic empty zone: D.F.IP6.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 8.E.F.IP6.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 9.E.F.IP6.ARPA +23-May-2017 23:16:18.371 automatic empty zone: A.E.F.IP6.ARPA +23-May-2017 23:16:18.371 automatic empty zone: B.E.F.IP6.ARPA +23-May-2017 23:16:18.371 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +23-May-2017 23:16:18.371 automatic empty zone: EMPTY.AS112.ARPA +23-May-2017 23:16:18.372 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +23-May-2017 23:16:18.376 configuring command channel from '/opt/local/etc/rndc.key' +23-May-2017 23:16:18.376 couldn't add command channel 127.0.0.1#953: file not found +23-May-2017 23:16:18.376 configuring command channel from '/opt/local/etc/rndc.key' +23-May-2017 23:16:18.376 couldn't add command channel ::1#953: file not found +23-May-2017 23:16:18.376 not using config file logging statement for logging due to -g option +23-May-2017 23:16:18.376 managed-keys-zone: loaded serial 0 +23-May-2017 23:16:18.403 zone local/IN: loaded serial 2 +23-May-2017 23:16:18.403 all zones loaded +23-May-2017 23:16:18.403 running +23-May-2017 23:16:18.416 shutting down +23-May-2017 23:16:18.417 no longer listening on 127.0.0.1#5400 +23-May-2017 23:16:18.479 exiting +=== Log Marked @ 2017-05-23 23:45:13 +1200 [86556] === +23-May-2017 23:45:13.602 starting BIND 9.11.0-P3 +23-May-2017 23:45:13.602 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +23-May-2017 23:45:13.602 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +23-May-2017 23:45:13.602 running as: named -c named.conf -f -p 5400 -g +23-May-2017 23:45:13.602 ---------------------------------------------------- +23-May-2017 23:45:13.602 BIND 9 is maintained by Internet Systems Consortium, +23-May-2017 23:45:13.602 Inc. (ISC), a non-profit 501(c)(3) public-benefit +23-May-2017 23:45:13.602 corporation. Support and training for BIND 9 are +23-May-2017 23:45:13.602 available at https://www.isc.org/support +23-May-2017 23:45:13.602 ---------------------------------------------------- +23-May-2017 23:45:13.602 found 8 CPUs, using 8 worker threads +23-May-2017 23:45:13.602 using 7 UDP listeners per interface +23-May-2017 23:45:13.602 using up to 4096 sockets +23-May-2017 23:45:13.619 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +23-May-2017 23:45:13.620 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +23-May-2017 23:45:13.620 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +23-May-2017 23:45:13.621 using default UDP/IPv4 port range: [49152, 65535] +23-May-2017 23:45:13.621 using default UDP/IPv6 port range: [49152, 65535] +23-May-2017 23:45:13.622 listening on IPv4 interface lo0, 127.0.0.1#5400 +23-May-2017 23:45:13.624 generating session key for dynamic DNS +23-May-2017 23:45:13.624 could not open file '/opt/local/var/run/named/session.key': Permission denied +23-May-2017 23:45:13.624 could not create /opt/local/var/run/named/session.key +23-May-2017 23:45:13.624 failed to generate session key for dynamic DNS: permission denied +23-May-2017 23:45:13.625 sizing zone task pool based on 1 zones +23-May-2017 23:45:13.626 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +23-May-2017 23:45:13.630 set up managed keys zone for view _default, file 'managed-keys.bind' +23-May-2017 23:45:13.630 automatic empty zone: 10.IN-ADDR.ARPA +23-May-2017 23:45:13.630 automatic empty zone: 16.172.IN-ADDR.ARPA +23-May-2017 23:45:13.630 automatic empty zone: 17.172.IN-ADDR.ARPA +23-May-2017 23:45:13.630 automatic empty zone: 18.172.IN-ADDR.ARPA +23-May-2017 23:45:13.630 automatic empty zone: 19.172.IN-ADDR.ARPA +23-May-2017 23:45:13.630 automatic empty zone: 20.172.IN-ADDR.ARPA +23-May-2017 23:45:13.630 automatic empty zone: 21.172.IN-ADDR.ARPA +23-May-2017 23:45:13.630 automatic empty zone: 22.172.IN-ADDR.ARPA +23-May-2017 23:45:13.630 automatic empty zone: 23.172.IN-ADDR.ARPA +23-May-2017 23:45:13.630 automatic empty zone: 24.172.IN-ADDR.ARPA +23-May-2017 23:45:13.630 automatic empty zone: 25.172.IN-ADDR.ARPA +23-May-2017 23:45:13.630 automatic empty zone: 26.172.IN-ADDR.ARPA +23-May-2017 23:45:13.630 automatic empty zone: 27.172.IN-ADDR.ARPA +23-May-2017 23:45:13.630 automatic empty zone: 28.172.IN-ADDR.ARPA +23-May-2017 23:45:13.630 automatic empty zone: 29.172.IN-ADDR.ARPA +23-May-2017 23:45:13.630 automatic empty zone: 30.172.IN-ADDR.ARPA +23-May-2017 23:45:13.630 automatic empty zone: 31.172.IN-ADDR.ARPA +23-May-2017 23:45:13.630 automatic empty zone: 168.192.IN-ADDR.ARPA +23-May-2017 23:45:13.630 automatic empty zone: 64.100.IN-ADDR.ARPA +23-May-2017 23:45:13.630 automatic empty zone: 65.100.IN-ADDR.ARPA +23-May-2017 23:45:13.630 automatic empty zone: 66.100.IN-ADDR.ARPA +23-May-2017 23:45:13.630 automatic empty zone: 67.100.IN-ADDR.ARPA +23-May-2017 23:45:13.630 automatic empty zone: 68.100.IN-ADDR.ARPA +23-May-2017 23:45:13.631 automatic empty zone: 69.100.IN-ADDR.ARPA +23-May-2017 23:45:13.631 automatic empty zone: 70.100.IN-ADDR.ARPA +23-May-2017 23:45:13.631 automatic empty zone: 71.100.IN-ADDR.ARPA +23-May-2017 23:45:13.631 automatic empty zone: 72.100.IN-ADDR.ARPA +23-May-2017 23:45:13.631 automatic empty zone: 73.100.IN-ADDR.ARPA +23-May-2017 23:45:13.631 automatic empty zone: 74.100.IN-ADDR.ARPA +23-May-2017 23:45:13.631 automatic empty zone: 75.100.IN-ADDR.ARPA +23-May-2017 23:45:13.631 automatic empty zone: 76.100.IN-ADDR.ARPA +23-May-2017 23:45:13.631 automatic empty zone: 77.100.IN-ADDR.ARPA +23-May-2017 23:45:13.631 automatic empty zone: 78.100.IN-ADDR.ARPA +23-May-2017 23:45:13.631 automatic empty zone: 79.100.IN-ADDR.ARPA +23-May-2017 23:45:13.631 automatic empty zone: 80.100.IN-ADDR.ARPA +23-May-2017 23:45:13.631 automatic empty zone: 81.100.IN-ADDR.ARPA +23-May-2017 23:45:13.631 automatic empty zone: 82.100.IN-ADDR.ARPA +23-May-2017 23:45:13.631 automatic empty zone: 83.100.IN-ADDR.ARPA +23-May-2017 23:45:13.631 automatic empty zone: 84.100.IN-ADDR.ARPA +23-May-2017 23:45:13.631 automatic empty zone: 85.100.IN-ADDR.ARPA +23-May-2017 23:45:13.631 automatic empty zone: 86.100.IN-ADDR.ARPA +23-May-2017 23:45:13.631 automatic empty zone: 87.100.IN-ADDR.ARPA +23-May-2017 23:45:13.631 automatic empty zone: 88.100.IN-ADDR.ARPA +23-May-2017 23:45:13.631 automatic empty zone: 89.100.IN-ADDR.ARPA +23-May-2017 23:45:13.631 automatic empty zone: 90.100.IN-ADDR.ARPA +23-May-2017 23:45:13.631 automatic empty zone: 91.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 92.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 93.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 94.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 95.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 96.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 97.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 98.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 99.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 100.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 101.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 102.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 103.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 104.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 105.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 106.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 107.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 108.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 109.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 110.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 111.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 112.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 113.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 114.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 115.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 116.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 117.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 118.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 119.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 120.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 121.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 122.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 123.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 124.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 125.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 126.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 127.100.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 0.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 127.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 254.169.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 2.0.192.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 100.51.198.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 113.0.203.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +23-May-2017 23:45:13.632 automatic empty zone: D.F.IP6.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 8.E.F.IP6.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 9.E.F.IP6.ARPA +23-May-2017 23:45:13.632 automatic empty zone: A.E.F.IP6.ARPA +23-May-2017 23:45:13.632 automatic empty zone: B.E.F.IP6.ARPA +23-May-2017 23:45:13.632 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +23-May-2017 23:45:13.632 automatic empty zone: EMPTY.AS112.ARPA +23-May-2017 23:45:13.633 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +23-May-2017 23:45:13.635 configuring command channel from '/opt/local/etc/rndc.key' +23-May-2017 23:45:13.635 couldn't add command channel 127.0.0.1#953: file not found +23-May-2017 23:45:13.635 configuring command channel from '/opt/local/etc/rndc.key' +23-May-2017 23:45:13.635 couldn't add command channel ::1#953: file not found +23-May-2017 23:45:13.635 not using config file logging statement for logging due to -g option +23-May-2017 23:45:13.635 managed-keys-zone: loaded serial 0 +23-May-2017 23:45:13.664 zone local/IN: loaded serial 2 +23-May-2017 23:45:13.664 all zones loaded +23-May-2017 23:45:13.664 running +23-May-2017 23:45:13.687 shutting down +23-May-2017 23:45:13.688 no longer listening on 127.0.0.1#5400 +23-May-2017 23:45:13.751 exiting +=== Log Marked @ 2017-05-23 23:45:43 +1200 [86565] === +23-May-2017 23:45:43.483 starting BIND 9.11.0-P3 +23-May-2017 23:45:43.483 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +23-May-2017 23:45:43.483 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +23-May-2017 23:45:43.483 running as: named -c named.conf -f -p 5400 -g +23-May-2017 23:45:43.483 ---------------------------------------------------- +23-May-2017 23:45:43.483 BIND 9 is maintained by Internet Systems Consortium, +23-May-2017 23:45:43.483 Inc. (ISC), a non-profit 501(c)(3) public-benefit +23-May-2017 23:45:43.483 corporation. Support and training for BIND 9 are +23-May-2017 23:45:43.483 available at https://www.isc.org/support +23-May-2017 23:45:43.483 ---------------------------------------------------- +23-May-2017 23:45:43.483 found 8 CPUs, using 8 worker threads +23-May-2017 23:45:43.483 using 7 UDP listeners per interface +23-May-2017 23:45:43.483 using up to 4096 sockets +23-May-2017 23:45:43.501 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +23-May-2017 23:45:43.502 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +23-May-2017 23:45:43.502 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +23-May-2017 23:45:43.503 using default UDP/IPv4 port range: [49152, 65535] +23-May-2017 23:45:43.503 using default UDP/IPv6 port range: [49152, 65535] +23-May-2017 23:45:43.504 listening on IPv4 interface lo0, 127.0.0.1#5400 +23-May-2017 23:45:43.506 generating session key for dynamic DNS +23-May-2017 23:45:43.506 could not open file '/opt/local/var/run/named/session.key': Permission denied +23-May-2017 23:45:43.506 could not create /opt/local/var/run/named/session.key +23-May-2017 23:45:43.506 failed to generate session key for dynamic DNS: permission denied +23-May-2017 23:45:43.507 sizing zone task pool based on 1 zones +23-May-2017 23:45:43.508 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +23-May-2017 23:45:43.512 set up managed keys zone for view _default, file 'managed-keys.bind' +23-May-2017 23:45:43.512 automatic empty zone: 10.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 16.172.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 17.172.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 18.172.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 19.172.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 20.172.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 21.172.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 22.172.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 23.172.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 24.172.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 25.172.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 26.172.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 27.172.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 28.172.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 29.172.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 30.172.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 31.172.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 168.192.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 64.100.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 65.100.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 66.100.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 67.100.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 68.100.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 69.100.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 70.100.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 71.100.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 72.100.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 73.100.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 74.100.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 75.100.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 76.100.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 77.100.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 78.100.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 79.100.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 80.100.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 81.100.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 82.100.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 83.100.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 84.100.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 85.100.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 86.100.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 87.100.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 88.100.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 89.100.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 90.100.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 91.100.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 92.100.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 93.100.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 94.100.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 95.100.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 96.100.IN-ADDR.ARPA +23-May-2017 23:45:43.512 automatic empty zone: 97.100.IN-ADDR.ARPA +23-May-2017 23:45:43.513 automatic empty zone: 98.100.IN-ADDR.ARPA +23-May-2017 23:45:43.513 automatic empty zone: 99.100.IN-ADDR.ARPA +23-May-2017 23:45:43.513 automatic empty zone: 100.100.IN-ADDR.ARPA +23-May-2017 23:45:43.513 automatic empty zone: 101.100.IN-ADDR.ARPA +23-May-2017 23:45:43.513 automatic empty zone: 102.100.IN-ADDR.ARPA +23-May-2017 23:45:43.513 automatic empty zone: 103.100.IN-ADDR.ARPA +23-May-2017 23:45:43.513 automatic empty zone: 104.100.IN-ADDR.ARPA +23-May-2017 23:45:43.513 automatic empty zone: 105.100.IN-ADDR.ARPA +23-May-2017 23:45:43.513 automatic empty zone: 106.100.IN-ADDR.ARPA +23-May-2017 23:45:43.513 automatic empty zone: 107.100.IN-ADDR.ARPA +23-May-2017 23:45:43.513 automatic empty zone: 108.100.IN-ADDR.ARPA +23-May-2017 23:45:43.513 automatic empty zone: 109.100.IN-ADDR.ARPA +23-May-2017 23:45:43.513 automatic empty zone: 110.100.IN-ADDR.ARPA +23-May-2017 23:45:43.513 automatic empty zone: 111.100.IN-ADDR.ARPA +23-May-2017 23:45:43.513 automatic empty zone: 112.100.IN-ADDR.ARPA +23-May-2017 23:45:43.513 automatic empty zone: 113.100.IN-ADDR.ARPA +23-May-2017 23:45:43.513 automatic empty zone: 114.100.IN-ADDR.ARPA +23-May-2017 23:45:43.513 automatic empty zone: 115.100.IN-ADDR.ARPA +23-May-2017 23:45:43.513 automatic empty zone: 116.100.IN-ADDR.ARPA +23-May-2017 23:45:43.513 automatic empty zone: 117.100.IN-ADDR.ARPA +23-May-2017 23:45:43.513 automatic empty zone: 118.100.IN-ADDR.ARPA +23-May-2017 23:45:43.513 automatic empty zone: 119.100.IN-ADDR.ARPA +23-May-2017 23:45:43.513 automatic empty zone: 120.100.IN-ADDR.ARPA +23-May-2017 23:45:43.513 automatic empty zone: 121.100.IN-ADDR.ARPA +23-May-2017 23:45:43.513 automatic empty zone: 122.100.IN-ADDR.ARPA +23-May-2017 23:45:43.513 automatic empty zone: 123.100.IN-ADDR.ARPA +23-May-2017 23:45:43.513 automatic empty zone: 124.100.IN-ADDR.ARPA +23-May-2017 23:45:43.513 automatic empty zone: 125.100.IN-ADDR.ARPA +23-May-2017 23:45:43.513 automatic empty zone: 126.100.IN-ADDR.ARPA +23-May-2017 23:45:43.513 automatic empty zone: 127.100.IN-ADDR.ARPA +23-May-2017 23:45:43.513 automatic empty zone: 0.IN-ADDR.ARPA +23-May-2017 23:45:43.513 automatic empty zone: 127.IN-ADDR.ARPA +23-May-2017 23:45:43.514 automatic empty zone: 254.169.IN-ADDR.ARPA +23-May-2017 23:45:43.514 automatic empty zone: 2.0.192.IN-ADDR.ARPA +23-May-2017 23:45:43.514 automatic empty zone: 100.51.198.IN-ADDR.ARPA +23-May-2017 23:45:43.514 automatic empty zone: 113.0.203.IN-ADDR.ARPA +23-May-2017 23:45:43.514 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +23-May-2017 23:45:43.514 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +23-May-2017 23:45:43.514 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +23-May-2017 23:45:43.514 automatic empty zone: D.F.IP6.ARPA +23-May-2017 23:45:43.514 automatic empty zone: 8.E.F.IP6.ARPA +23-May-2017 23:45:43.514 automatic empty zone: 9.E.F.IP6.ARPA +23-May-2017 23:45:43.514 automatic empty zone: A.E.F.IP6.ARPA +23-May-2017 23:45:43.514 automatic empty zone: B.E.F.IP6.ARPA +23-May-2017 23:45:43.514 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +23-May-2017 23:45:43.514 automatic empty zone: EMPTY.AS112.ARPA +23-May-2017 23:45:43.514 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +23-May-2017 23:45:43.517 configuring command channel from '/opt/local/etc/rndc.key' +23-May-2017 23:45:43.517 couldn't add command channel 127.0.0.1#953: file not found +23-May-2017 23:45:43.517 configuring command channel from '/opt/local/etc/rndc.key' +23-May-2017 23:45:43.517 couldn't add command channel ::1#953: file not found +23-May-2017 23:45:43.517 not using config file logging statement for logging due to -g option +23-May-2017 23:45:43.517 managed-keys-zone: loaded serial 0 +23-May-2017 23:45:43.547 zone local/IN: loaded serial 2 +23-May-2017 23:45:43.547 all zones loaded +23-May-2017 23:45:43.547 running +23-May-2017 23:45:43.680 shutting down +23-May-2017 23:45:43.681 no longer listening on 127.0.0.1#5400 +23-May-2017 23:45:43.751 exiting +=== Log Marked @ 2017-05-23 23:59:36 +1200 [86683] === +23-May-2017 23:59:36.588 starting BIND 9.11.0-P3 +23-May-2017 23:59:36.588 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +23-May-2017 23:59:36.588 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +23-May-2017 23:59:36.588 running as: named -c named.conf -f -p 5400 -g +23-May-2017 23:59:36.588 ---------------------------------------------------- +23-May-2017 23:59:36.588 BIND 9 is maintained by Internet Systems Consortium, +23-May-2017 23:59:36.588 Inc. (ISC), a non-profit 501(c)(3) public-benefit +23-May-2017 23:59:36.588 corporation. Support and training for BIND 9 are +23-May-2017 23:59:36.588 available at https://www.isc.org/support +23-May-2017 23:59:36.588 ---------------------------------------------------- +23-May-2017 23:59:36.588 found 8 CPUs, using 8 worker threads +23-May-2017 23:59:36.588 using 7 UDP listeners per interface +23-May-2017 23:59:36.588 using up to 4096 sockets +23-May-2017 23:59:36.592 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +23-May-2017 23:59:36.592 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +23-May-2017 23:59:36.592 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +23-May-2017 23:59:36.593 using default UDP/IPv4 port range: [49152, 65535] +23-May-2017 23:59:36.593 using default UDP/IPv6 port range: [49152, 65535] +23-May-2017 23:59:36.593 listening on IPv4 interface lo0, 127.0.0.1#5400 +23-May-2017 23:59:36.596 generating session key for dynamic DNS +23-May-2017 23:59:36.596 could not open file '/opt/local/var/run/named/session.key': Permission denied +23-May-2017 23:59:36.596 could not create /opt/local/var/run/named/session.key +23-May-2017 23:59:36.596 failed to generate session key for dynamic DNS: permission denied +23-May-2017 23:59:36.596 sizing zone task pool based on 1 zones +23-May-2017 23:59:36.596 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +23-May-2017 23:59:36.599 set up managed keys zone for view _default, file 'managed-keys.bind' +23-May-2017 23:59:36.599 automatic empty zone: 10.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 16.172.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 17.172.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 18.172.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 19.172.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 20.172.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 21.172.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 22.172.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 23.172.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 24.172.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 25.172.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 26.172.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 27.172.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 28.172.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 29.172.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 30.172.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 31.172.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 168.192.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 64.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 65.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 66.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 67.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 68.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 69.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 70.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 71.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 72.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 73.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 74.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 75.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 76.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 77.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 78.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 79.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 80.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 81.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 82.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 83.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 84.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 85.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 86.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 87.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 88.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 89.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 90.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 91.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 92.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 93.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 94.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 95.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 96.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 97.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 98.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 99.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 100.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 101.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 102.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 103.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 104.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 105.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 106.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 107.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 108.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 109.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 110.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 111.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 112.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 113.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 114.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 115.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 116.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 117.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 118.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 119.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 120.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 121.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 122.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 123.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 124.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 125.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 126.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 127.100.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 0.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 127.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 254.169.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 2.0.192.IN-ADDR.ARPA +23-May-2017 23:59:36.599 automatic empty zone: 100.51.198.IN-ADDR.ARPA +23-May-2017 23:59:36.600 automatic empty zone: 113.0.203.IN-ADDR.ARPA +23-May-2017 23:59:36.600 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +23-May-2017 23:59:36.600 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +23-May-2017 23:59:36.600 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +23-May-2017 23:59:36.600 automatic empty zone: D.F.IP6.ARPA +23-May-2017 23:59:36.600 automatic empty zone: 8.E.F.IP6.ARPA +23-May-2017 23:59:36.600 automatic empty zone: 9.E.F.IP6.ARPA +23-May-2017 23:59:36.600 automatic empty zone: A.E.F.IP6.ARPA +23-May-2017 23:59:36.600 automatic empty zone: B.E.F.IP6.ARPA +23-May-2017 23:59:36.600 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +23-May-2017 23:59:36.600 automatic empty zone: EMPTY.AS112.ARPA +23-May-2017 23:59:36.600 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +23-May-2017 23:59:36.602 configuring command channel from '/opt/local/etc/rndc.key' +23-May-2017 23:59:36.602 couldn't add command channel 127.0.0.1#953: file not found +23-May-2017 23:59:36.602 configuring command channel from '/opt/local/etc/rndc.key' +23-May-2017 23:59:36.602 couldn't add command channel ::1#953: file not found +23-May-2017 23:59:36.602 not using config file logging statement for logging due to -g option +23-May-2017 23:59:36.603 managed-keys-zone: loaded serial 0 +23-May-2017 23:59:36.630 zone local/IN: loaded serial 2 +23-May-2017 23:59:36.630 all zones loaded +23-May-2017 23:59:36.630 running +23-May-2017 23:59:42.677 shutting down +23-May-2017 23:59:42.677 no longer listening on 127.0.0.1#5400 +23-May-2017 23:59:42.743 exiting +=== Log Marked @ 2017-05-24 00:34:45 +1200 [86818] === +24-May-2017 00:34:45.601 starting BIND 9.11.0-P3 +24-May-2017 00:34:45.601 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +24-May-2017 00:34:45.601 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +24-May-2017 00:34:45.601 running as: named -c named.conf -f -p 5400 -g +24-May-2017 00:34:45.601 ---------------------------------------------------- +24-May-2017 00:34:45.601 BIND 9 is maintained by Internet Systems Consortium, +24-May-2017 00:34:45.601 Inc. (ISC), a non-profit 501(c)(3) public-benefit +24-May-2017 00:34:45.601 corporation. Support and training for BIND 9 are +24-May-2017 00:34:45.601 available at https://www.isc.org/support +24-May-2017 00:34:45.601 ---------------------------------------------------- +24-May-2017 00:34:45.601 found 8 CPUs, using 8 worker threads +24-May-2017 00:34:45.602 using 7 UDP listeners per interface +24-May-2017 00:34:45.602 using up to 4096 sockets +24-May-2017 00:34:45.617 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +24-May-2017 00:34:45.617 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +24-May-2017 00:34:45.618 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +24-May-2017 00:34:45.619 using default UDP/IPv4 port range: [49152, 65535] +24-May-2017 00:34:45.619 using default UDP/IPv6 port range: [49152, 65535] +24-May-2017 00:34:45.620 listening on IPv4 interface lo0, 127.0.0.1#5400 +24-May-2017 00:34:45.622 generating session key for dynamic DNS +24-May-2017 00:34:45.622 could not open file '/opt/local/var/run/named/session.key': Permission denied +24-May-2017 00:34:45.622 could not create /opt/local/var/run/named/session.key +24-May-2017 00:34:45.622 failed to generate session key for dynamic DNS: permission denied +24-May-2017 00:34:45.623 sizing zone task pool based on 1 zones +24-May-2017 00:34:45.624 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +24-May-2017 00:34:45.627 set up managed keys zone for view _default, file 'managed-keys.bind' +24-May-2017 00:34:45.627 automatic empty zone: 10.IN-ADDR.ARPA +24-May-2017 00:34:45.627 automatic empty zone: 16.172.IN-ADDR.ARPA +24-May-2017 00:34:45.627 automatic empty zone: 17.172.IN-ADDR.ARPA +24-May-2017 00:34:45.627 automatic empty zone: 18.172.IN-ADDR.ARPA +24-May-2017 00:34:45.627 automatic empty zone: 19.172.IN-ADDR.ARPA +24-May-2017 00:34:45.627 automatic empty zone: 20.172.IN-ADDR.ARPA +24-May-2017 00:34:45.627 automatic empty zone: 21.172.IN-ADDR.ARPA +24-May-2017 00:34:45.627 automatic empty zone: 22.172.IN-ADDR.ARPA +24-May-2017 00:34:45.627 automatic empty zone: 23.172.IN-ADDR.ARPA +24-May-2017 00:34:45.627 automatic empty zone: 24.172.IN-ADDR.ARPA +24-May-2017 00:34:45.627 automatic empty zone: 25.172.IN-ADDR.ARPA +24-May-2017 00:34:45.627 automatic empty zone: 26.172.IN-ADDR.ARPA +24-May-2017 00:34:45.627 automatic empty zone: 27.172.IN-ADDR.ARPA +24-May-2017 00:34:45.627 automatic empty zone: 28.172.IN-ADDR.ARPA +24-May-2017 00:34:45.627 automatic empty zone: 29.172.IN-ADDR.ARPA +24-May-2017 00:34:45.627 automatic empty zone: 30.172.IN-ADDR.ARPA +24-May-2017 00:34:45.627 automatic empty zone: 31.172.IN-ADDR.ARPA +24-May-2017 00:34:45.627 automatic empty zone: 168.192.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 64.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 65.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 66.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 67.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 68.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 69.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 70.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 71.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 72.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 73.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 74.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 75.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 76.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 77.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 78.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 79.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 80.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 81.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 82.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 83.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 84.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 85.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 86.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 87.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 88.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 89.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 90.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 91.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 92.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 93.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 94.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 95.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 96.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 97.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 98.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 99.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 100.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 101.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 102.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 103.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 104.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 105.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 106.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 107.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 108.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 109.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 110.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 111.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 112.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 113.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 114.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 115.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 116.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 117.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 118.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 119.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 120.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 121.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 122.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 123.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 124.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 125.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 126.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 127.100.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 0.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 127.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 254.169.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 2.0.192.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 100.51.198.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 113.0.203.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +24-May-2017 00:34:45.628 automatic empty zone: D.F.IP6.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 8.E.F.IP6.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 9.E.F.IP6.ARPA +24-May-2017 00:34:45.628 automatic empty zone: A.E.F.IP6.ARPA +24-May-2017 00:34:45.628 automatic empty zone: B.E.F.IP6.ARPA +24-May-2017 00:34:45.628 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +24-May-2017 00:34:45.628 automatic empty zone: EMPTY.AS112.ARPA +24-May-2017 00:34:45.628 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +24-May-2017 00:34:45.631 configuring command channel from '/opt/local/etc/rndc.key' +24-May-2017 00:34:45.631 couldn't add command channel 127.0.0.1#953: file not found +24-May-2017 00:34:45.631 configuring command channel from '/opt/local/etc/rndc.key' +24-May-2017 00:34:45.631 couldn't add command channel ::1#953: file not found +24-May-2017 00:34:45.631 not using config file logging statement for logging due to -g option +24-May-2017 00:34:45.632 managed-keys-zone: loaded serial 0 +24-May-2017 00:34:45.665 zone local/IN: loaded serial 2 +24-May-2017 00:34:45.665 all zones loaded +24-May-2017 00:34:45.665 running +24-May-2017 00:34:54.590 shutting down +24-May-2017 00:34:54.591 no longer listening on 127.0.0.1#5400 +24-May-2017 00:34:54.670 exiting +=== Log Marked @ 2017-05-25 00:26:16 +1200 [92173] === +25-May-2017 00:26:16.688 starting BIND 9.11.0-P3 +25-May-2017 00:26:16.689 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +25-May-2017 00:26:16.689 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +25-May-2017 00:26:16.689 running as: named -c named.conf -f -p 5400 -g +25-May-2017 00:26:16.689 ---------------------------------------------------- +25-May-2017 00:26:16.689 BIND 9 is maintained by Internet Systems Consortium, +25-May-2017 00:26:16.689 Inc. (ISC), a non-profit 501(c)(3) public-benefit +25-May-2017 00:26:16.689 corporation. Support and training for BIND 9 are +25-May-2017 00:26:16.689 available at https://www.isc.org/support +25-May-2017 00:26:16.689 ---------------------------------------------------- +25-May-2017 00:26:16.689 found 8 CPUs, using 8 worker threads +25-May-2017 00:26:16.689 using 7 UDP listeners per interface +25-May-2017 00:26:16.690 using up to 4096 sockets +25-May-2017 00:26:16.710 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +25-May-2017 00:26:16.710 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +25-May-2017 00:26:16.710 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +25-May-2017 00:26:16.712 using default UDP/IPv4 port range: [49152, 65535] +25-May-2017 00:26:16.712 using default UDP/IPv6 port range: [49152, 65535] +25-May-2017 00:26:16.713 listening on IPv4 interface lo0, 127.0.0.1#5400 +25-May-2017 00:26:16.715 generating session key for dynamic DNS +25-May-2017 00:26:16.717 could not open file '/opt/local/var/run/named/session.key': Permission denied +25-May-2017 00:26:16.717 could not create /opt/local/var/run/named/session.key +25-May-2017 00:26:16.717 failed to generate session key for dynamic DNS: permission denied +25-May-2017 00:26:16.718 sizing zone task pool based on 1 zones +25-May-2017 00:26:16.722 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-May-2017 00:26:16.727 set up managed keys zone for view _default, file 'managed-keys.bind' +25-May-2017 00:26:16.727 automatic empty zone: 10.IN-ADDR.ARPA +25-May-2017 00:26:16.727 automatic empty zone: 16.172.IN-ADDR.ARPA +25-May-2017 00:26:16.727 automatic empty zone: 17.172.IN-ADDR.ARPA +25-May-2017 00:26:16.727 automatic empty zone: 18.172.IN-ADDR.ARPA +25-May-2017 00:26:16.727 automatic empty zone: 19.172.IN-ADDR.ARPA +25-May-2017 00:26:16.727 automatic empty zone: 20.172.IN-ADDR.ARPA +25-May-2017 00:26:16.727 automatic empty zone: 21.172.IN-ADDR.ARPA +25-May-2017 00:26:16.727 automatic empty zone: 22.172.IN-ADDR.ARPA +25-May-2017 00:26:16.727 automatic empty zone: 23.172.IN-ADDR.ARPA +25-May-2017 00:26:16.727 automatic empty zone: 24.172.IN-ADDR.ARPA +25-May-2017 00:26:16.727 automatic empty zone: 25.172.IN-ADDR.ARPA +25-May-2017 00:26:16.727 automatic empty zone: 26.172.IN-ADDR.ARPA +25-May-2017 00:26:16.727 automatic empty zone: 27.172.IN-ADDR.ARPA +25-May-2017 00:26:16.727 automatic empty zone: 28.172.IN-ADDR.ARPA +25-May-2017 00:26:16.727 automatic empty zone: 29.172.IN-ADDR.ARPA +25-May-2017 00:26:16.727 automatic empty zone: 30.172.IN-ADDR.ARPA +25-May-2017 00:26:16.727 automatic empty zone: 31.172.IN-ADDR.ARPA +25-May-2017 00:26:16.727 automatic empty zone: 168.192.IN-ADDR.ARPA +25-May-2017 00:26:16.727 automatic empty zone: 64.100.IN-ADDR.ARPA +25-May-2017 00:26:16.727 automatic empty zone: 65.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 66.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 67.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 68.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 69.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 70.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 71.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 72.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 73.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 74.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 75.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 76.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 77.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 78.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 79.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 80.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 81.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 82.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 83.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 84.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 85.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 86.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 87.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 88.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 89.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 90.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 91.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 92.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 93.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 94.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 95.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 96.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 97.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 98.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 99.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 100.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 101.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 102.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 103.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 104.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 105.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 106.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 107.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 108.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 109.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 110.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 111.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 112.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 113.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 114.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 115.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 116.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 117.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 118.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 119.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 120.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 121.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 122.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 123.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 124.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 125.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 126.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 127.100.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 0.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 127.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 254.169.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 2.0.192.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 100.51.198.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 113.0.203.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-May-2017 00:26:16.728 automatic empty zone: D.F.IP6.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 8.E.F.IP6.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 9.E.F.IP6.ARPA +25-May-2017 00:26:16.728 automatic empty zone: A.E.F.IP6.ARPA +25-May-2017 00:26:16.728 automatic empty zone: B.E.F.IP6.ARPA +25-May-2017 00:26:16.728 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +25-May-2017 00:26:16.728 automatic empty zone: EMPTY.AS112.ARPA +25-May-2017 00:26:16.728 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-May-2017 00:26:16.731 configuring command channel from '/opt/local/etc/rndc.key' +25-May-2017 00:26:16.731 couldn't add command channel 127.0.0.1#953: file not found +25-May-2017 00:26:16.731 configuring command channel from '/opt/local/etc/rndc.key' +25-May-2017 00:26:16.731 couldn't add command channel ::1#953: file not found +25-May-2017 00:26:16.731 not using config file logging statement for logging due to -g option +25-May-2017 00:26:16.732 managed-keys-zone: loaded serial 0 +25-May-2017 00:26:16.762 zone local/IN: loaded serial 2 +25-May-2017 00:26:16.763 all zones loaded +25-May-2017 00:26:16.763 running +25-May-2017 00:26:22.913 shutting down +25-May-2017 00:26:22.913 no longer listening on 127.0.0.1#5400 +25-May-2017 00:26:22.991 exiting +=== Log Marked @ 2017-05-25 00:29:07 +1200 [92195] === +25-May-2017 00:29:07.921 starting BIND 9.11.0-P3 +25-May-2017 00:29:07.921 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +25-May-2017 00:29:07.921 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +25-May-2017 00:29:07.921 running as: named -c named.conf -f -p 5400 -g +25-May-2017 00:29:07.921 ---------------------------------------------------- +25-May-2017 00:29:07.921 BIND 9 is maintained by Internet Systems Consortium, +25-May-2017 00:29:07.921 Inc. (ISC), a non-profit 501(c)(3) public-benefit +25-May-2017 00:29:07.921 corporation. Support and training for BIND 9 are +25-May-2017 00:29:07.921 available at https://www.isc.org/support +25-May-2017 00:29:07.921 ---------------------------------------------------- +25-May-2017 00:29:07.921 found 8 CPUs, using 8 worker threads +25-May-2017 00:29:07.921 using 7 UDP listeners per interface +25-May-2017 00:29:07.921 using up to 4096 sockets +25-May-2017 00:29:07.925 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +25-May-2017 00:29:07.925 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +25-May-2017 00:29:07.925 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +25-May-2017 00:29:07.925 using default UDP/IPv4 port range: [49152, 65535] +25-May-2017 00:29:07.925 using default UDP/IPv6 port range: [49152, 65535] +25-May-2017 00:29:07.926 listening on IPv4 interface lo0, 127.0.0.1#5400 +25-May-2017 00:29:07.928 generating session key for dynamic DNS +25-May-2017 00:29:07.928 could not open file '/opt/local/var/run/named/session.key': Permission denied +25-May-2017 00:29:07.928 could not create /opt/local/var/run/named/session.key +25-May-2017 00:29:07.928 failed to generate session key for dynamic DNS: permission denied +25-May-2017 00:29:07.928 sizing zone task pool based on 1 zones +25-May-2017 00:29:07.928 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-May-2017 00:29:07.931 set up managed keys zone for view _default, file 'managed-keys.bind' +25-May-2017 00:29:07.931 automatic empty zone: 10.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 16.172.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 17.172.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 18.172.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 19.172.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 20.172.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 21.172.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 22.172.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 23.172.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 24.172.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 25.172.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 26.172.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 27.172.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 28.172.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 29.172.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 30.172.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 31.172.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 168.192.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 64.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 65.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 66.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 67.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 68.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 69.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 70.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 71.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 72.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 73.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 74.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 75.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 76.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 77.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 78.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 79.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 80.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 81.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 82.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 83.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 84.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 85.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 86.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 87.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 88.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 89.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 90.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 91.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 92.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 93.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 94.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 95.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 96.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 97.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 98.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 99.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 100.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 101.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 102.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 103.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 104.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 105.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 106.100.IN-ADDR.ARPA +25-May-2017 00:29:07.931 automatic empty zone: 107.100.IN-ADDR.ARPA +25-May-2017 00:29:07.932 automatic empty zone: 108.100.IN-ADDR.ARPA +25-May-2017 00:29:07.932 automatic empty zone: 109.100.IN-ADDR.ARPA +25-May-2017 00:29:07.932 automatic empty zone: 110.100.IN-ADDR.ARPA +25-May-2017 00:29:07.932 automatic empty zone: 111.100.IN-ADDR.ARPA +25-May-2017 00:29:07.932 automatic empty zone: 112.100.IN-ADDR.ARPA +25-May-2017 00:29:07.932 automatic empty zone: 113.100.IN-ADDR.ARPA +25-May-2017 00:29:07.932 automatic empty zone: 114.100.IN-ADDR.ARPA +25-May-2017 00:29:07.932 automatic empty zone: 115.100.IN-ADDR.ARPA +25-May-2017 00:29:07.932 automatic empty zone: 116.100.IN-ADDR.ARPA +25-May-2017 00:29:07.932 automatic empty zone: 117.100.IN-ADDR.ARPA +25-May-2017 00:29:07.932 automatic empty zone: 118.100.IN-ADDR.ARPA +25-May-2017 00:29:07.932 automatic empty zone: 119.100.IN-ADDR.ARPA +25-May-2017 00:29:07.932 automatic empty zone: 120.100.IN-ADDR.ARPA +25-May-2017 00:29:07.932 automatic empty zone: 121.100.IN-ADDR.ARPA +25-May-2017 00:29:07.932 automatic empty zone: 122.100.IN-ADDR.ARPA +25-May-2017 00:29:07.932 automatic empty zone: 123.100.IN-ADDR.ARPA +25-May-2017 00:29:07.932 automatic empty zone: 124.100.IN-ADDR.ARPA +25-May-2017 00:29:07.932 automatic empty zone: 125.100.IN-ADDR.ARPA +25-May-2017 00:29:07.932 automatic empty zone: 126.100.IN-ADDR.ARPA +25-May-2017 00:29:07.932 automatic empty zone: 127.100.IN-ADDR.ARPA +25-May-2017 00:29:07.932 automatic empty zone: 0.IN-ADDR.ARPA +25-May-2017 00:29:07.932 automatic empty zone: 127.IN-ADDR.ARPA +25-May-2017 00:29:07.932 automatic empty zone: 254.169.IN-ADDR.ARPA +25-May-2017 00:29:07.932 automatic empty zone: 2.0.192.IN-ADDR.ARPA +25-May-2017 00:29:07.932 automatic empty zone: 100.51.198.IN-ADDR.ARPA +25-May-2017 00:29:07.932 automatic empty zone: 113.0.203.IN-ADDR.ARPA +25-May-2017 00:29:07.932 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +25-May-2017 00:29:07.932 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-May-2017 00:29:07.932 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-May-2017 00:29:07.932 automatic empty zone: D.F.IP6.ARPA +25-May-2017 00:29:07.932 automatic empty zone: 8.E.F.IP6.ARPA +25-May-2017 00:29:07.932 automatic empty zone: 9.E.F.IP6.ARPA +25-May-2017 00:29:07.932 automatic empty zone: A.E.F.IP6.ARPA +25-May-2017 00:29:07.932 automatic empty zone: B.E.F.IP6.ARPA +25-May-2017 00:29:07.932 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +25-May-2017 00:29:07.932 automatic empty zone: EMPTY.AS112.ARPA +25-May-2017 00:29:07.932 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-May-2017 00:29:07.935 configuring command channel from '/opt/local/etc/rndc.key' +25-May-2017 00:29:07.935 couldn't add command channel 127.0.0.1#953: file not found +25-May-2017 00:29:07.935 configuring command channel from '/opt/local/etc/rndc.key' +25-May-2017 00:29:07.935 couldn't add command channel ::1#953: file not found +25-May-2017 00:29:07.935 not using config file logging statement for logging due to -g option +25-May-2017 00:29:07.935 managed-keys-zone: loaded serial 0 +25-May-2017 00:29:07.969 zone local/IN: loaded serial 2 +25-May-2017 00:29:07.969 all zones loaded +25-May-2017 00:29:07.969 running +25-May-2017 00:29:13.982 shutting down +25-May-2017 00:29:13.982 no longer listening on 127.0.0.1#5400 +25-May-2017 00:29:14.058 exiting +=== Log Marked @ 2017-05-25 00:47:47 +1200 [92409] === +25-May-2017 00:47:47.282 starting BIND 9.11.0-P3 +25-May-2017 00:47:47.282 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +25-May-2017 00:47:47.282 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +25-May-2017 00:47:47.282 running as: named -c named.conf -f -p 5400 -g +25-May-2017 00:47:47.282 ---------------------------------------------------- +25-May-2017 00:47:47.282 BIND 9 is maintained by Internet Systems Consortium, +25-May-2017 00:47:47.282 Inc. (ISC), a non-profit 501(c)(3) public-benefit +25-May-2017 00:47:47.282 corporation. Support and training for BIND 9 are +25-May-2017 00:47:47.282 available at https://www.isc.org/support +25-May-2017 00:47:47.282 ---------------------------------------------------- +25-May-2017 00:47:47.282 found 8 CPUs, using 8 worker threads +25-May-2017 00:47:47.282 using 7 UDP listeners per interface +25-May-2017 00:47:47.283 using up to 4096 sockets +25-May-2017 00:47:47.291 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +25-May-2017 00:47:47.291 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +25-May-2017 00:47:47.291 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +25-May-2017 00:47:47.291 using default UDP/IPv4 port range: [49152, 65535] +25-May-2017 00:47:47.292 using default UDP/IPv6 port range: [49152, 65535] +25-May-2017 00:47:47.292 listening on IPv4 interface lo0, 127.0.0.1#5400 +25-May-2017 00:47:47.294 generating session key for dynamic DNS +25-May-2017 00:47:47.295 could not open file '/opt/local/var/run/named/session.key': Permission denied +25-May-2017 00:47:47.295 could not create /opt/local/var/run/named/session.key +25-May-2017 00:47:47.295 failed to generate session key for dynamic DNS: permission denied +25-May-2017 00:47:47.295 sizing zone task pool based on 1 zones +25-May-2017 00:47:47.296 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-May-2017 00:47:47.298 set up managed keys zone for view _default, file 'managed-keys.bind' +25-May-2017 00:47:47.298 automatic empty zone: 10.IN-ADDR.ARPA +25-May-2017 00:47:47.298 automatic empty zone: 16.172.IN-ADDR.ARPA +25-May-2017 00:47:47.298 automatic empty zone: 17.172.IN-ADDR.ARPA +25-May-2017 00:47:47.298 automatic empty zone: 18.172.IN-ADDR.ARPA +25-May-2017 00:47:47.298 automatic empty zone: 19.172.IN-ADDR.ARPA +25-May-2017 00:47:47.298 automatic empty zone: 20.172.IN-ADDR.ARPA +25-May-2017 00:47:47.298 automatic empty zone: 21.172.IN-ADDR.ARPA +25-May-2017 00:47:47.298 automatic empty zone: 22.172.IN-ADDR.ARPA +25-May-2017 00:47:47.298 automatic empty zone: 23.172.IN-ADDR.ARPA +25-May-2017 00:47:47.298 automatic empty zone: 24.172.IN-ADDR.ARPA +25-May-2017 00:47:47.298 automatic empty zone: 25.172.IN-ADDR.ARPA +25-May-2017 00:47:47.298 automatic empty zone: 26.172.IN-ADDR.ARPA +25-May-2017 00:47:47.298 automatic empty zone: 27.172.IN-ADDR.ARPA +25-May-2017 00:47:47.298 automatic empty zone: 28.172.IN-ADDR.ARPA +25-May-2017 00:47:47.298 automatic empty zone: 29.172.IN-ADDR.ARPA +25-May-2017 00:47:47.298 automatic empty zone: 30.172.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 31.172.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 168.192.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 64.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 65.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 66.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 67.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 68.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 69.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 70.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 71.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 72.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 73.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 74.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 75.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 76.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 77.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 78.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 79.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 80.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 81.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 82.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 83.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 84.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 85.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 86.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 87.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 88.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 89.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 90.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 91.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 92.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 93.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 94.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 95.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 96.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 97.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 98.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 99.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 100.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 101.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 102.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 103.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 104.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 105.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 106.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 107.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 108.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 109.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 110.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 111.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 112.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 113.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 114.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 115.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 116.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 117.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 118.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 119.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 120.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 121.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 122.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 123.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 124.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 125.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 126.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 127.100.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 0.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 127.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 254.169.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 2.0.192.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 100.51.198.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 113.0.203.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-May-2017 00:47:47.299 automatic empty zone: D.F.IP6.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 8.E.F.IP6.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 9.E.F.IP6.ARPA +25-May-2017 00:47:47.299 automatic empty zone: A.E.F.IP6.ARPA +25-May-2017 00:47:47.299 automatic empty zone: B.E.F.IP6.ARPA +25-May-2017 00:47:47.299 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +25-May-2017 00:47:47.299 automatic empty zone: EMPTY.AS112.ARPA +25-May-2017 00:47:47.299 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-May-2017 00:47:47.302 configuring command channel from '/opt/local/etc/rndc.key' +25-May-2017 00:47:47.302 couldn't add command channel 127.0.0.1#953: file not found +25-May-2017 00:47:47.302 configuring command channel from '/opt/local/etc/rndc.key' +25-May-2017 00:47:47.302 couldn't add command channel ::1#953: file not found +25-May-2017 00:47:47.302 not using config file logging statement for logging due to -g option +25-May-2017 00:47:47.303 managed-keys-zone: loaded serial 0 +25-May-2017 00:47:47.331 zone local/IN: loaded serial 2 +25-May-2017 00:47:47.331 all zones loaded +25-May-2017 00:47:47.331 running +25-May-2017 00:47:47.509 shutting down +25-May-2017 00:47:47.509 no longer listening on 127.0.0.1#5400 +25-May-2017 00:47:47.574 exiting +=== Log Marked @ 2017-05-25 00:48:36 +1200 [92418] === +25-May-2017 00:48:36.167 starting BIND 9.11.0-P3 +25-May-2017 00:48:36.167 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +25-May-2017 00:48:36.167 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +25-May-2017 00:48:36.167 running as: named -c named.conf -f -p 5400 -g +25-May-2017 00:48:36.167 ---------------------------------------------------- +25-May-2017 00:48:36.167 BIND 9 is maintained by Internet Systems Consortium, +25-May-2017 00:48:36.167 Inc. (ISC), a non-profit 501(c)(3) public-benefit +25-May-2017 00:48:36.167 corporation. Support and training for BIND 9 are +25-May-2017 00:48:36.167 available at https://www.isc.org/support +25-May-2017 00:48:36.167 ---------------------------------------------------- +25-May-2017 00:48:36.167 found 8 CPUs, using 8 worker threads +25-May-2017 00:48:36.167 using 7 UDP listeners per interface +25-May-2017 00:48:36.167 using up to 4096 sockets +25-May-2017 00:48:36.172 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +25-May-2017 00:48:36.172 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +25-May-2017 00:48:36.173 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +25-May-2017 00:48:36.173 using default UDP/IPv4 port range: [49152, 65535] +25-May-2017 00:48:36.173 using default UDP/IPv6 port range: [49152, 65535] +25-May-2017 00:48:36.174 listening on IPv4 interface lo0, 127.0.0.1#5400 +25-May-2017 00:48:36.176 generating session key for dynamic DNS +25-May-2017 00:48:36.176 could not open file '/opt/local/var/run/named/session.key': Permission denied +25-May-2017 00:48:36.176 could not create /opt/local/var/run/named/session.key +25-May-2017 00:48:36.176 failed to generate session key for dynamic DNS: permission denied +25-May-2017 00:48:36.176 sizing zone task pool based on 1 zones +25-May-2017 00:48:36.176 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-May-2017 00:48:36.179 set up managed keys zone for view _default, file 'managed-keys.bind' +25-May-2017 00:48:36.179 automatic empty zone: 10.IN-ADDR.ARPA +25-May-2017 00:48:36.179 automatic empty zone: 16.172.IN-ADDR.ARPA +25-May-2017 00:48:36.179 automatic empty zone: 17.172.IN-ADDR.ARPA +25-May-2017 00:48:36.179 automatic empty zone: 18.172.IN-ADDR.ARPA +25-May-2017 00:48:36.179 automatic empty zone: 19.172.IN-ADDR.ARPA +25-May-2017 00:48:36.179 automatic empty zone: 20.172.IN-ADDR.ARPA +25-May-2017 00:48:36.179 automatic empty zone: 21.172.IN-ADDR.ARPA +25-May-2017 00:48:36.179 automatic empty zone: 22.172.IN-ADDR.ARPA +25-May-2017 00:48:36.179 automatic empty zone: 23.172.IN-ADDR.ARPA +25-May-2017 00:48:36.179 automatic empty zone: 24.172.IN-ADDR.ARPA +25-May-2017 00:48:36.179 automatic empty zone: 25.172.IN-ADDR.ARPA +25-May-2017 00:48:36.179 automatic empty zone: 26.172.IN-ADDR.ARPA +25-May-2017 00:48:36.179 automatic empty zone: 27.172.IN-ADDR.ARPA +25-May-2017 00:48:36.179 automatic empty zone: 28.172.IN-ADDR.ARPA +25-May-2017 00:48:36.179 automatic empty zone: 29.172.IN-ADDR.ARPA +25-May-2017 00:48:36.179 automatic empty zone: 30.172.IN-ADDR.ARPA +25-May-2017 00:48:36.179 automatic empty zone: 31.172.IN-ADDR.ARPA +25-May-2017 00:48:36.179 automatic empty zone: 168.192.IN-ADDR.ARPA +25-May-2017 00:48:36.179 automatic empty zone: 64.100.IN-ADDR.ARPA +25-May-2017 00:48:36.179 automatic empty zone: 65.100.IN-ADDR.ARPA +25-May-2017 00:48:36.179 automatic empty zone: 66.100.IN-ADDR.ARPA +25-May-2017 00:48:36.179 automatic empty zone: 67.100.IN-ADDR.ARPA +25-May-2017 00:48:36.179 automatic empty zone: 68.100.IN-ADDR.ARPA +25-May-2017 00:48:36.179 automatic empty zone: 69.100.IN-ADDR.ARPA +25-May-2017 00:48:36.179 automatic empty zone: 70.100.IN-ADDR.ARPA +25-May-2017 00:48:36.179 automatic empty zone: 71.100.IN-ADDR.ARPA +25-May-2017 00:48:36.179 automatic empty zone: 72.100.IN-ADDR.ARPA +25-May-2017 00:48:36.179 automatic empty zone: 73.100.IN-ADDR.ARPA +25-May-2017 00:48:36.179 automatic empty zone: 74.100.IN-ADDR.ARPA +25-May-2017 00:48:36.179 automatic empty zone: 75.100.IN-ADDR.ARPA +25-May-2017 00:48:36.179 automatic empty zone: 76.100.IN-ADDR.ARPA +25-May-2017 00:48:36.179 automatic empty zone: 77.100.IN-ADDR.ARPA +25-May-2017 00:48:36.179 automatic empty zone: 78.100.IN-ADDR.ARPA +25-May-2017 00:48:36.179 automatic empty zone: 79.100.IN-ADDR.ARPA +25-May-2017 00:48:36.179 automatic empty zone: 80.100.IN-ADDR.ARPA +25-May-2017 00:48:36.179 automatic empty zone: 81.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 82.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 83.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 84.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 85.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 86.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 87.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 88.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 89.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 90.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 91.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 92.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 93.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 94.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 95.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 96.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 97.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 98.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 99.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 100.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 101.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 102.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 103.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 104.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 105.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 106.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 107.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 108.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 109.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 110.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 111.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 112.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 113.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 114.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 115.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 116.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 117.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 118.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 119.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 120.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 121.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 122.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 123.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 124.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 125.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 126.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 127.100.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 0.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 127.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 254.169.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 2.0.192.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 100.51.198.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 113.0.203.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-May-2017 00:48:36.180 automatic empty zone: D.F.IP6.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 8.E.F.IP6.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 9.E.F.IP6.ARPA +25-May-2017 00:48:36.180 automatic empty zone: A.E.F.IP6.ARPA +25-May-2017 00:48:36.180 automatic empty zone: B.E.F.IP6.ARPA +25-May-2017 00:48:36.180 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +25-May-2017 00:48:36.180 automatic empty zone: EMPTY.AS112.ARPA +25-May-2017 00:48:36.180 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-May-2017 00:48:36.183 configuring command channel from '/opt/local/etc/rndc.key' +25-May-2017 00:48:36.183 couldn't add command channel 127.0.0.1#953: file not found +25-May-2017 00:48:36.183 configuring command channel from '/opt/local/etc/rndc.key' +25-May-2017 00:48:36.183 couldn't add command channel ::1#953: file not found +25-May-2017 00:48:36.183 not using config file logging statement for logging due to -g option +25-May-2017 00:48:36.183 managed-keys-zone: loaded serial 0 +25-May-2017 00:48:36.217 zone local/IN: loaded serial 2 +25-May-2017 00:48:36.217 all zones loaded +25-May-2017 00:48:36.218 running +25-May-2017 00:48:36.389 shutting down +25-May-2017 00:48:36.389 no longer listening on 127.0.0.1#5400 +25-May-2017 00:48:36.469 exiting +=== Log Marked @ 2017-05-25 00:49:03 +1200 [92430] === +25-May-2017 00:49:03.193 starting BIND 9.11.0-P3 +25-May-2017 00:49:03.193 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +25-May-2017 00:49:03.193 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +25-May-2017 00:49:03.193 running as: named -c named.conf -f -p 5400 -g +25-May-2017 00:49:03.193 ---------------------------------------------------- +25-May-2017 00:49:03.193 BIND 9 is maintained by Internet Systems Consortium, +25-May-2017 00:49:03.193 Inc. (ISC), a non-profit 501(c)(3) public-benefit +25-May-2017 00:49:03.193 corporation. Support and training for BIND 9 are +25-May-2017 00:49:03.193 available at https://www.isc.org/support +25-May-2017 00:49:03.193 ---------------------------------------------------- +25-May-2017 00:49:03.193 found 8 CPUs, using 8 worker threads +25-May-2017 00:49:03.193 using 7 UDP listeners per interface +25-May-2017 00:49:03.194 using up to 4096 sockets +25-May-2017 00:49:03.197 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +25-May-2017 00:49:03.197 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +25-May-2017 00:49:03.198 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +25-May-2017 00:49:03.198 using default UDP/IPv4 port range: [49152, 65535] +25-May-2017 00:49:03.198 using default UDP/IPv6 port range: [49152, 65535] +25-May-2017 00:49:03.199 listening on IPv4 interface lo0, 127.0.0.1#5400 +25-May-2017 00:49:03.201 generating session key for dynamic DNS +25-May-2017 00:49:03.201 could not open file '/opt/local/var/run/named/session.key': Permission denied +25-May-2017 00:49:03.201 could not create /opt/local/var/run/named/session.key +25-May-2017 00:49:03.201 failed to generate session key for dynamic DNS: permission denied +25-May-2017 00:49:03.201 sizing zone task pool based on 1 zones +25-May-2017 00:49:03.201 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-May-2017 00:49:03.204 set up managed keys zone for view _default, file 'managed-keys.bind' +25-May-2017 00:49:03.204 automatic empty zone: 10.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 16.172.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 17.172.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 18.172.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 19.172.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 20.172.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 21.172.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 22.172.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 23.172.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 24.172.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 25.172.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 26.172.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 27.172.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 28.172.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 29.172.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 30.172.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 31.172.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 168.192.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 64.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 65.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 66.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 67.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 68.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 69.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 70.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 71.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 72.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 73.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 74.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 75.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 76.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 77.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 78.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 79.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 80.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 81.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 82.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 83.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 84.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 85.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 86.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 87.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 88.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 89.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 90.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 91.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 92.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 93.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 94.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 95.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 96.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 97.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 98.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 99.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 100.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 101.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 102.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 103.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 104.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 105.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 106.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 107.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 108.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 109.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 110.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 111.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 112.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 113.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 114.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 115.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 116.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 117.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 118.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 119.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 120.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 121.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 122.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 123.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 124.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 125.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 126.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 127.100.IN-ADDR.ARPA +25-May-2017 00:49:03.204 automatic empty zone: 0.IN-ADDR.ARPA +25-May-2017 00:49:03.205 automatic empty zone: 127.IN-ADDR.ARPA +25-May-2017 00:49:03.205 automatic empty zone: 254.169.IN-ADDR.ARPA +25-May-2017 00:49:03.205 automatic empty zone: 2.0.192.IN-ADDR.ARPA +25-May-2017 00:49:03.205 automatic empty zone: 100.51.198.IN-ADDR.ARPA +25-May-2017 00:49:03.205 automatic empty zone: 113.0.203.IN-ADDR.ARPA +25-May-2017 00:49:03.205 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +25-May-2017 00:49:03.205 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-May-2017 00:49:03.205 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-May-2017 00:49:03.205 automatic empty zone: D.F.IP6.ARPA +25-May-2017 00:49:03.205 automatic empty zone: 8.E.F.IP6.ARPA +25-May-2017 00:49:03.205 automatic empty zone: 9.E.F.IP6.ARPA +25-May-2017 00:49:03.205 automatic empty zone: A.E.F.IP6.ARPA +25-May-2017 00:49:03.205 automatic empty zone: B.E.F.IP6.ARPA +25-May-2017 00:49:03.205 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +25-May-2017 00:49:03.205 automatic empty zone: EMPTY.AS112.ARPA +25-May-2017 00:49:03.205 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-May-2017 00:49:03.207 configuring command channel from '/opt/local/etc/rndc.key' +25-May-2017 00:49:03.207 couldn't add command channel 127.0.0.1#953: file not found +25-May-2017 00:49:03.207 configuring command channel from '/opt/local/etc/rndc.key' +25-May-2017 00:49:03.207 couldn't add command channel ::1#953: file not found +25-May-2017 00:49:03.207 not using config file logging statement for logging due to -g option +25-May-2017 00:49:03.208 managed-keys-zone: loaded serial 0 +25-May-2017 00:49:03.237 zone local/IN: loaded serial 2 +25-May-2017 00:49:03.237 all zones loaded +25-May-2017 00:49:03.237 running +25-May-2017 00:49:03.422 shutting down +25-May-2017 00:49:03.422 no longer listening on 127.0.0.1#5400 +25-May-2017 00:49:03.501 exiting +=== Log Marked @ 2017-05-25 00:49:52 +1200 [92441] === +25-May-2017 00:49:52.147 starting BIND 9.11.0-P3 +25-May-2017 00:49:52.147 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +25-May-2017 00:49:52.147 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +25-May-2017 00:49:52.147 running as: named -c named.conf -f -p 5400 -g +25-May-2017 00:49:52.147 ---------------------------------------------------- +25-May-2017 00:49:52.147 BIND 9 is maintained by Internet Systems Consortium, +25-May-2017 00:49:52.147 Inc. (ISC), a non-profit 501(c)(3) public-benefit +25-May-2017 00:49:52.147 corporation. Support and training for BIND 9 are +25-May-2017 00:49:52.147 available at https://www.isc.org/support +25-May-2017 00:49:52.147 ---------------------------------------------------- +25-May-2017 00:49:52.148 found 8 CPUs, using 8 worker threads +25-May-2017 00:49:52.148 using 7 UDP listeners per interface +25-May-2017 00:49:52.148 using up to 4096 sockets +25-May-2017 00:49:52.152 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +25-May-2017 00:49:52.152 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +25-May-2017 00:49:52.152 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +25-May-2017 00:49:52.153 using default UDP/IPv4 port range: [49152, 65535] +25-May-2017 00:49:52.153 using default UDP/IPv6 port range: [49152, 65535] +25-May-2017 00:49:52.153 listening on IPv4 interface lo0, 127.0.0.1#5400 +25-May-2017 00:49:52.155 generating session key for dynamic DNS +25-May-2017 00:49:52.155 could not open file '/opt/local/var/run/named/session.key': Permission denied +25-May-2017 00:49:52.155 could not create /opt/local/var/run/named/session.key +25-May-2017 00:49:52.155 failed to generate session key for dynamic DNS: permission denied +25-May-2017 00:49:52.155 sizing zone task pool based on 1 zones +25-May-2017 00:49:52.156 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-May-2017 00:49:52.158 set up managed keys zone for view _default, file 'managed-keys.bind' +25-May-2017 00:49:52.158 automatic empty zone: 10.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 16.172.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 17.172.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 18.172.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 19.172.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 20.172.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 21.172.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 22.172.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 23.172.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 24.172.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 25.172.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 26.172.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 27.172.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 28.172.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 29.172.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 30.172.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 31.172.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 168.192.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 64.100.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 65.100.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 66.100.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 67.100.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 68.100.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 69.100.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 70.100.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 71.100.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 72.100.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 73.100.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 74.100.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 75.100.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 76.100.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 77.100.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 78.100.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 79.100.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 80.100.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 81.100.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 82.100.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 83.100.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 84.100.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 85.100.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 86.100.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 87.100.IN-ADDR.ARPA +25-May-2017 00:49:52.158 automatic empty zone: 88.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 89.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 90.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 91.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 92.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 93.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 94.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 95.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 96.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 97.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 98.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 99.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 100.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 101.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 102.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 103.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 104.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 105.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 106.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 107.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 108.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 109.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 110.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 111.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 112.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 113.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 114.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 115.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 116.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 117.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 118.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 119.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 120.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 121.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 122.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 123.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 124.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 125.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 126.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 127.100.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 0.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 127.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 254.169.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 2.0.192.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 100.51.198.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 113.0.203.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-May-2017 00:49:52.159 automatic empty zone: D.F.IP6.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 8.E.F.IP6.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 9.E.F.IP6.ARPA +25-May-2017 00:49:52.159 automatic empty zone: A.E.F.IP6.ARPA +25-May-2017 00:49:52.159 automatic empty zone: B.E.F.IP6.ARPA +25-May-2017 00:49:52.159 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +25-May-2017 00:49:52.159 automatic empty zone: EMPTY.AS112.ARPA +25-May-2017 00:49:52.159 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-May-2017 00:49:52.162 configuring command channel from '/opt/local/etc/rndc.key' +25-May-2017 00:49:52.162 couldn't add command channel 127.0.0.1#953: file not found +25-May-2017 00:49:52.162 configuring command channel from '/opt/local/etc/rndc.key' +25-May-2017 00:49:52.162 couldn't add command channel ::1#953: file not found +25-May-2017 00:49:52.162 not using config file logging statement for logging due to -g option +25-May-2017 00:49:52.162 managed-keys-zone: loaded serial 0 +25-May-2017 00:49:52.191 zone local/IN: loaded serial 2 +25-May-2017 00:49:52.191 all zones loaded +25-May-2017 00:49:52.191 running +25-May-2017 00:49:58.738 shutting down +25-May-2017 00:49:58.739 no longer listening on 127.0.0.1#5400 +25-May-2017 00:49:58.812 exiting +=== Log Marked @ 2017-05-25 00:50:28 +1200 [92453] === +25-May-2017 00:50:28.954 starting BIND 9.11.0-P3 +25-May-2017 00:50:28.954 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +25-May-2017 00:50:28.954 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +25-May-2017 00:50:28.954 running as: named -c named.conf -f -p 5400 -g +25-May-2017 00:50:28.954 ---------------------------------------------------- +25-May-2017 00:50:28.954 BIND 9 is maintained by Internet Systems Consortium, +25-May-2017 00:50:28.955 Inc. (ISC), a non-profit 501(c)(3) public-benefit +25-May-2017 00:50:28.955 corporation. Support and training for BIND 9 are +25-May-2017 00:50:28.955 available at https://www.isc.org/support +25-May-2017 00:50:28.955 ---------------------------------------------------- +25-May-2017 00:50:28.955 found 8 CPUs, using 8 worker threads +25-May-2017 00:50:28.955 using 7 UDP listeners per interface +25-May-2017 00:50:28.955 using up to 4096 sockets +25-May-2017 00:50:28.974 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +25-May-2017 00:50:28.975 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +25-May-2017 00:50:28.975 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +25-May-2017 00:50:28.976 using default UDP/IPv4 port range: [49152, 65535] +25-May-2017 00:50:28.976 using default UDP/IPv6 port range: [49152, 65535] +25-May-2017 00:50:28.977 listening on IPv4 interface lo0, 127.0.0.1#5400 +25-May-2017 00:50:28.980 generating session key for dynamic DNS +25-May-2017 00:50:28.980 could not open file '/opt/local/var/run/named/session.key': Permission denied +25-May-2017 00:50:28.980 could not create /opt/local/var/run/named/session.key +25-May-2017 00:50:28.980 failed to generate session key for dynamic DNS: permission denied +25-May-2017 00:50:28.981 sizing zone task pool based on 1 zones +25-May-2017 00:50:28.982 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-May-2017 00:50:28.986 set up managed keys zone for view _default, file 'managed-keys.bind' +25-May-2017 00:50:28.986 automatic empty zone: 10.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 16.172.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 17.172.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 18.172.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 19.172.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 20.172.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 21.172.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 22.172.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 23.172.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 24.172.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 25.172.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 26.172.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 27.172.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 28.172.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 29.172.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 30.172.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 31.172.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 168.192.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 64.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 65.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 66.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 67.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 68.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 69.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 70.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 71.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 72.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 73.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 74.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 75.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 76.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 77.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 78.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 79.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 80.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 81.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 82.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 83.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 84.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 85.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 86.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 87.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 88.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 89.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 90.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 91.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 92.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 93.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 94.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 95.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 96.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 97.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 98.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 99.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 100.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 101.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 102.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 103.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 104.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 105.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 106.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 107.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 108.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 109.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 110.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 111.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 112.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 113.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 114.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 115.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 116.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 117.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 118.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 119.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 120.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 121.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 122.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 123.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 124.100.IN-ADDR.ARPA +25-May-2017 00:50:28.986 automatic empty zone: 125.100.IN-ADDR.ARPA +25-May-2017 00:50:28.987 automatic empty zone: 126.100.IN-ADDR.ARPA +25-May-2017 00:50:28.987 automatic empty zone: 127.100.IN-ADDR.ARPA +25-May-2017 00:50:28.987 automatic empty zone: 0.IN-ADDR.ARPA +25-May-2017 00:50:28.987 automatic empty zone: 127.IN-ADDR.ARPA +25-May-2017 00:50:28.987 automatic empty zone: 254.169.IN-ADDR.ARPA +25-May-2017 00:50:28.987 automatic empty zone: 2.0.192.IN-ADDR.ARPA +25-May-2017 00:50:28.987 automatic empty zone: 100.51.198.IN-ADDR.ARPA +25-May-2017 00:50:28.987 automatic empty zone: 113.0.203.IN-ADDR.ARPA +25-May-2017 00:50:28.987 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +25-May-2017 00:50:28.987 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-May-2017 00:50:28.987 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-May-2017 00:50:28.987 automatic empty zone: D.F.IP6.ARPA +25-May-2017 00:50:28.987 automatic empty zone: 8.E.F.IP6.ARPA +25-May-2017 00:50:28.987 automatic empty zone: 9.E.F.IP6.ARPA +25-May-2017 00:50:28.987 automatic empty zone: A.E.F.IP6.ARPA +25-May-2017 00:50:28.987 automatic empty zone: B.E.F.IP6.ARPA +25-May-2017 00:50:28.987 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +25-May-2017 00:50:28.987 automatic empty zone: EMPTY.AS112.ARPA +25-May-2017 00:50:28.987 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-May-2017 00:50:28.989 configuring command channel from '/opt/local/etc/rndc.key' +25-May-2017 00:50:28.989 couldn't add command channel 127.0.0.1#953: file not found +25-May-2017 00:50:28.989 configuring command channel from '/opt/local/etc/rndc.key' +25-May-2017 00:50:28.989 couldn't add command channel ::1#953: file not found +25-May-2017 00:50:28.990 not using config file logging statement for logging due to -g option +25-May-2017 00:50:28.990 managed-keys-zone: loaded serial 0 +25-May-2017 00:50:29.025 zone local/IN: loaded serial 2 +25-May-2017 00:50:29.025 all zones loaded +25-May-2017 00:50:29.025 running +25-May-2017 00:50:35.310 shutting down +25-May-2017 00:50:35.310 no longer listening on 127.0.0.1#5400 +25-May-2017 00:50:35.380 exiting +=== Log Marked @ 2017-05-25 01:00:03 +1200 [92572] === +25-May-2017 01:00:03.551 starting BIND 9.11.0-P3 +25-May-2017 01:00:03.551 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +25-May-2017 01:00:03.551 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +25-May-2017 01:00:03.551 running as: named -c named.conf -f -p 5400 -g +25-May-2017 01:00:03.551 ---------------------------------------------------- +25-May-2017 01:00:03.551 BIND 9 is maintained by Internet Systems Consortium, +25-May-2017 01:00:03.551 Inc. (ISC), a non-profit 501(c)(3) public-benefit +25-May-2017 01:00:03.551 corporation. Support and training for BIND 9 are +25-May-2017 01:00:03.551 available at https://www.isc.org/support +25-May-2017 01:00:03.551 ---------------------------------------------------- +25-May-2017 01:00:03.551 found 8 CPUs, using 8 worker threads +25-May-2017 01:00:03.551 using 7 UDP listeners per interface +25-May-2017 01:00:03.551 using up to 4096 sockets +25-May-2017 01:00:03.569 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +25-May-2017 01:00:03.570 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +25-May-2017 01:00:03.570 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +25-May-2017 01:00:03.571 using default UDP/IPv4 port range: [49152, 65535] +25-May-2017 01:00:03.571 using default UDP/IPv6 port range: [49152, 65535] +25-May-2017 01:00:03.572 listening on IPv4 interface lo0, 127.0.0.1#5400 +25-May-2017 01:00:03.575 generating session key for dynamic DNS +25-May-2017 01:00:03.575 could not open file '/opt/local/var/run/named/session.key': Permission denied +25-May-2017 01:00:03.575 could not create /opt/local/var/run/named/session.key +25-May-2017 01:00:03.575 failed to generate session key for dynamic DNS: permission denied +25-May-2017 01:00:03.576 sizing zone task pool based on 1 zones +25-May-2017 01:00:03.577 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-May-2017 01:00:03.582 set up managed keys zone for view _default, file 'managed-keys.bind' +25-May-2017 01:00:03.582 automatic empty zone: 10.IN-ADDR.ARPA +25-May-2017 01:00:03.582 automatic empty zone: 16.172.IN-ADDR.ARPA +25-May-2017 01:00:03.582 automatic empty zone: 17.172.IN-ADDR.ARPA +25-May-2017 01:00:03.582 automatic empty zone: 18.172.IN-ADDR.ARPA +25-May-2017 01:00:03.582 automatic empty zone: 19.172.IN-ADDR.ARPA +25-May-2017 01:00:03.582 automatic empty zone: 20.172.IN-ADDR.ARPA +25-May-2017 01:00:03.582 automatic empty zone: 21.172.IN-ADDR.ARPA +25-May-2017 01:00:03.582 automatic empty zone: 22.172.IN-ADDR.ARPA +25-May-2017 01:00:03.582 automatic empty zone: 23.172.IN-ADDR.ARPA +25-May-2017 01:00:03.582 automatic empty zone: 24.172.IN-ADDR.ARPA +25-May-2017 01:00:03.582 automatic empty zone: 25.172.IN-ADDR.ARPA +25-May-2017 01:00:03.582 automatic empty zone: 26.172.IN-ADDR.ARPA +25-May-2017 01:00:03.582 automatic empty zone: 27.172.IN-ADDR.ARPA +25-May-2017 01:00:03.582 automatic empty zone: 28.172.IN-ADDR.ARPA +25-May-2017 01:00:03.582 automatic empty zone: 29.172.IN-ADDR.ARPA +25-May-2017 01:00:03.582 automatic empty zone: 30.172.IN-ADDR.ARPA +25-May-2017 01:00:03.582 automatic empty zone: 31.172.IN-ADDR.ARPA +25-May-2017 01:00:03.582 automatic empty zone: 168.192.IN-ADDR.ARPA +25-May-2017 01:00:03.582 automatic empty zone: 64.100.IN-ADDR.ARPA +25-May-2017 01:00:03.582 automatic empty zone: 65.100.IN-ADDR.ARPA +25-May-2017 01:00:03.582 automatic empty zone: 66.100.IN-ADDR.ARPA +25-May-2017 01:00:03.582 automatic empty zone: 67.100.IN-ADDR.ARPA +25-May-2017 01:00:03.582 automatic empty zone: 68.100.IN-ADDR.ARPA +25-May-2017 01:00:03.582 automatic empty zone: 69.100.IN-ADDR.ARPA +25-May-2017 01:00:03.582 automatic empty zone: 70.100.IN-ADDR.ARPA +25-May-2017 01:00:03.582 automatic empty zone: 71.100.IN-ADDR.ARPA +25-May-2017 01:00:03.582 automatic empty zone: 72.100.IN-ADDR.ARPA +25-May-2017 01:00:03.582 automatic empty zone: 73.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 74.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 75.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 76.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 77.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 78.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 79.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 80.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 81.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 82.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 83.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 84.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 85.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 86.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 87.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 88.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 89.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 90.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 91.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 92.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 93.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 94.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 95.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 96.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 97.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 98.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 99.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 100.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 101.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 102.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 103.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 104.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 105.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 106.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 107.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 108.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 109.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 110.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 111.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 112.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 113.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 114.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 115.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 116.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 117.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 118.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 119.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 120.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 121.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 122.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 123.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 124.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 125.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 126.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 127.100.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 0.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 127.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 254.169.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 2.0.192.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 100.51.198.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 113.0.203.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-May-2017 01:00:03.583 automatic empty zone: D.F.IP6.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 8.E.F.IP6.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 9.E.F.IP6.ARPA +25-May-2017 01:00:03.583 automatic empty zone: A.E.F.IP6.ARPA +25-May-2017 01:00:03.583 automatic empty zone: B.E.F.IP6.ARPA +25-May-2017 01:00:03.583 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +25-May-2017 01:00:03.583 automatic empty zone: EMPTY.AS112.ARPA +25-May-2017 01:00:03.584 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-May-2017 01:00:03.586 configuring command channel from '/opt/local/etc/rndc.key' +25-May-2017 01:00:03.586 couldn't add command channel 127.0.0.1#953: file not found +25-May-2017 01:00:03.586 configuring command channel from '/opt/local/etc/rndc.key' +25-May-2017 01:00:03.586 couldn't add command channel ::1#953: file not found +25-May-2017 01:00:03.587 not using config file logging statement for logging due to -g option +25-May-2017 01:00:03.587 managed-keys-zone: loaded serial 0 +25-May-2017 01:00:03.616 zone local/IN: loaded serial 2 +25-May-2017 01:00:03.616 all zones loaded +25-May-2017 01:00:03.616 running +25-May-2017 01:00:09.986 shutting down +25-May-2017 01:00:09.986 no longer listening on 127.0.0.1#5400 +25-May-2017 01:00:10.050 exiting +=== Log Marked @ 2017-05-25 02:08:34 +1200 [93255] === +25-May-2017 02:08:34.559 starting BIND 9.11.0-P3 +25-May-2017 02:08:34.560 running on Darwin x86_64 16.5.0 Darwin Kernel Version 16.5.0: Fri Mar 3 16:52:33 PST 2017; root:xnu-3789.51.2~3/RELEASE_X86_64 +25-May-2017 02:08:34.560 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +25-May-2017 02:08:34.560 running as: named -c named.conf -f -p 5400 -g +25-May-2017 02:08:34.560 ---------------------------------------------------- +25-May-2017 02:08:34.560 BIND 9 is maintained by Internet Systems Consortium, +25-May-2017 02:08:34.560 Inc. (ISC), a non-profit 501(c)(3) public-benefit +25-May-2017 02:08:34.560 corporation. Support and training for BIND 9 are +25-May-2017 02:08:34.560 available at https://www.isc.org/support +25-May-2017 02:08:34.560 ---------------------------------------------------- +25-May-2017 02:08:34.560 found 8 CPUs, using 8 worker threads +25-May-2017 02:08:34.560 using 7 UDP listeners per interface +25-May-2017 02:08:34.561 using up to 4096 sockets +25-May-2017 02:08:34.580 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +25-May-2017 02:08:34.580 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +25-May-2017 02:08:34.581 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +25-May-2017 02:08:34.582 using default UDP/IPv4 port range: [49152, 65535] +25-May-2017 02:08:34.582 using default UDP/IPv6 port range: [49152, 65535] +25-May-2017 02:08:34.583 listening on IPv4 interface lo0, 127.0.0.1#5400 +25-May-2017 02:08:34.585 generating session key for dynamic DNS +25-May-2017 02:08:34.586 could not open file '/opt/local/var/run/named/session.key': Permission denied +25-May-2017 02:08:34.586 could not create /opt/local/var/run/named/session.key +25-May-2017 02:08:34.586 failed to generate session key for dynamic DNS: permission denied +25-May-2017 02:08:34.587 sizing zone task pool based on 1 zones +25-May-2017 02:08:34.589 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-May-2017 02:08:34.594 set up managed keys zone for view _default, file 'managed-keys.bind' +25-May-2017 02:08:34.594 automatic empty zone: 10.IN-ADDR.ARPA +25-May-2017 02:08:34.594 automatic empty zone: 16.172.IN-ADDR.ARPA +25-May-2017 02:08:34.594 automatic empty zone: 17.172.IN-ADDR.ARPA +25-May-2017 02:08:34.594 automatic empty zone: 18.172.IN-ADDR.ARPA +25-May-2017 02:08:34.594 automatic empty zone: 19.172.IN-ADDR.ARPA +25-May-2017 02:08:34.594 automatic empty zone: 20.172.IN-ADDR.ARPA +25-May-2017 02:08:34.594 automatic empty zone: 21.172.IN-ADDR.ARPA +25-May-2017 02:08:34.594 automatic empty zone: 22.172.IN-ADDR.ARPA +25-May-2017 02:08:34.594 automatic empty zone: 23.172.IN-ADDR.ARPA +25-May-2017 02:08:34.594 automatic empty zone: 24.172.IN-ADDR.ARPA +25-May-2017 02:08:34.594 automatic empty zone: 25.172.IN-ADDR.ARPA +25-May-2017 02:08:34.594 automatic empty zone: 26.172.IN-ADDR.ARPA +25-May-2017 02:08:34.594 automatic empty zone: 27.172.IN-ADDR.ARPA +25-May-2017 02:08:34.594 automatic empty zone: 28.172.IN-ADDR.ARPA +25-May-2017 02:08:34.594 automatic empty zone: 29.172.IN-ADDR.ARPA +25-May-2017 02:08:34.594 automatic empty zone: 30.172.IN-ADDR.ARPA +25-May-2017 02:08:34.594 automatic empty zone: 31.172.IN-ADDR.ARPA +25-May-2017 02:08:34.594 automatic empty zone: 168.192.IN-ADDR.ARPA +25-May-2017 02:08:34.594 automatic empty zone: 64.100.IN-ADDR.ARPA +25-May-2017 02:08:34.594 automatic empty zone: 65.100.IN-ADDR.ARPA +25-May-2017 02:08:34.594 automatic empty zone: 66.100.IN-ADDR.ARPA +25-May-2017 02:08:34.594 automatic empty zone: 67.100.IN-ADDR.ARPA +25-May-2017 02:08:34.594 automatic empty zone: 68.100.IN-ADDR.ARPA +25-May-2017 02:08:34.594 automatic empty zone: 69.100.IN-ADDR.ARPA +25-May-2017 02:08:34.594 automatic empty zone: 70.100.IN-ADDR.ARPA +25-May-2017 02:08:34.594 automatic empty zone: 71.100.IN-ADDR.ARPA +25-May-2017 02:08:34.594 automatic empty zone: 72.100.IN-ADDR.ARPA +25-May-2017 02:08:34.594 automatic empty zone: 73.100.IN-ADDR.ARPA +25-May-2017 02:08:34.594 automatic empty zone: 74.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 75.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 76.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 77.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 78.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 79.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 80.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 81.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 82.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 83.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 84.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 85.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 86.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 87.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 88.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 89.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 90.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 91.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 92.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 93.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 94.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 95.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 96.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 97.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 98.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 99.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 100.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 101.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 102.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 103.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 104.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 105.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 106.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 107.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 108.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 109.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 110.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 111.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 112.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 113.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 114.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 115.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 116.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 117.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 118.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 119.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 120.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 121.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 122.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 123.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 124.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 125.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 126.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 127.100.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 0.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 127.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 254.169.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 2.0.192.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 100.51.198.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 113.0.203.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-May-2017 02:08:34.595 automatic empty zone: D.F.IP6.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 8.E.F.IP6.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 9.E.F.IP6.ARPA +25-May-2017 02:08:34.595 automatic empty zone: A.E.F.IP6.ARPA +25-May-2017 02:08:34.595 automatic empty zone: B.E.F.IP6.ARPA +25-May-2017 02:08:34.595 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +25-May-2017 02:08:34.595 automatic empty zone: EMPTY.AS112.ARPA +25-May-2017 02:08:34.596 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-May-2017 02:08:34.599 configuring command channel from '/opt/local/etc/rndc.key' +25-May-2017 02:08:34.599 couldn't add command channel 127.0.0.1#953: file not found +25-May-2017 02:08:34.599 configuring command channel from '/opt/local/etc/rndc.key' +25-May-2017 02:08:34.599 couldn't add command channel ::1#953: file not found +25-May-2017 02:08:34.599 not using config file logging statement for logging due to -g option +25-May-2017 02:08:34.600 managed-keys-zone: loaded serial 0 +25-May-2017 02:08:34.634 zone local/IN: loaded serial 2 +25-May-2017 02:08:34.634 all zones loaded +25-May-2017 02:08:34.635 running +25-May-2017 02:08:41.479 shutting down +25-May-2017 02:08:41.479 no longer listening on 127.0.0.1#5400 +25-May-2017 02:08:41.566 exiting +=== Log Marked @ 2017-05-25 23:45:50 +1200 [6423] === +25-May-2017 23:45:50.828 starting BIND 9.11.0-P3 +25-May-2017 23:45:50.828 running on Darwin x86_64 16.6.0 Darwin Kernel Version 16.6.0: Fri Apr 14 16:21:16 PDT 2017; root:xnu-3789.60.24~6/RELEASE_X86_64 +25-May-2017 23:45:50.828 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +25-May-2017 23:45:50.828 running as: named -c named.conf -f -p 5400 -g +25-May-2017 23:45:50.828 ---------------------------------------------------- +25-May-2017 23:45:50.828 BIND 9 is maintained by Internet Systems Consortium, +25-May-2017 23:45:50.828 Inc. (ISC), a non-profit 501(c)(3) public-benefit +25-May-2017 23:45:50.828 corporation. Support and training for BIND 9 are +25-May-2017 23:45:50.828 available at https://www.isc.org/support +25-May-2017 23:45:50.828 ---------------------------------------------------- +25-May-2017 23:45:50.829 found 8 CPUs, using 8 worker threads +25-May-2017 23:45:50.829 using 7 UDP listeners per interface +25-May-2017 23:45:50.829 using up to 4096 sockets +25-May-2017 23:45:50.849 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +25-May-2017 23:45:50.849 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +25-May-2017 23:45:50.850 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +25-May-2017 23:45:50.852 using default UDP/IPv4 port range: [49152, 65535] +25-May-2017 23:45:50.852 using default UDP/IPv6 port range: [49152, 65535] +25-May-2017 23:45:50.853 listening on IPv4 interface lo0, 127.0.0.1#5400 +25-May-2017 23:45:50.855 generating session key for dynamic DNS +25-May-2017 23:45:50.857 could not open file '/opt/local/var/run/named/session.key': Permission denied +25-May-2017 23:45:50.857 could not create /opt/local/var/run/named/session.key +25-May-2017 23:45:50.857 failed to generate session key for dynamic DNS: permission denied +25-May-2017 23:45:50.858 sizing zone task pool based on 1 zones +25-May-2017 23:45:50.860 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-May-2017 23:45:50.864 set up managed keys zone for view _default, file 'managed-keys.bind' +25-May-2017 23:45:50.864 automatic empty zone: 10.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 16.172.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 17.172.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 18.172.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 19.172.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 20.172.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 21.172.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 22.172.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 23.172.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 24.172.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 25.172.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 26.172.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 27.172.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 28.172.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 29.172.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 30.172.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 31.172.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 168.192.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 64.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 65.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 66.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 67.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 68.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 69.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 70.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 71.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 72.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 73.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 74.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 75.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 76.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 77.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 78.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 79.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 80.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 81.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 82.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 83.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 84.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 85.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 86.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 87.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 88.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 89.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 90.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 91.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 92.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 93.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 94.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 95.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 96.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 97.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 98.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 99.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 100.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 101.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 102.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 103.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 104.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 105.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 106.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 107.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 108.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 109.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 110.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 111.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 112.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 113.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 114.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 115.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 116.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 117.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 118.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 119.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 120.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 121.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 122.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 123.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 124.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 125.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 126.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 127.100.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 0.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 127.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 254.169.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 2.0.192.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 100.51.198.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 113.0.203.IN-ADDR.ARPA +25-May-2017 23:45:50.865 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +25-May-2017 23:45:50.866 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-May-2017 23:45:50.866 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-May-2017 23:45:50.866 automatic empty zone: D.F.IP6.ARPA +25-May-2017 23:45:50.866 automatic empty zone: 8.E.F.IP6.ARPA +25-May-2017 23:45:50.866 automatic empty zone: 9.E.F.IP6.ARPA +25-May-2017 23:45:50.866 automatic empty zone: A.E.F.IP6.ARPA +25-May-2017 23:45:50.866 automatic empty zone: B.E.F.IP6.ARPA +25-May-2017 23:45:50.866 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +25-May-2017 23:45:50.866 automatic empty zone: EMPTY.AS112.ARPA +25-May-2017 23:45:50.866 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-May-2017 23:45:50.869 configuring command channel from '/opt/local/etc/rndc.key' +25-May-2017 23:45:50.869 couldn't add command channel 127.0.0.1#953: file not found +25-May-2017 23:45:50.869 configuring command channel from '/opt/local/etc/rndc.key' +25-May-2017 23:45:50.869 couldn't add command channel ::1#953: file not found +25-May-2017 23:45:50.869 not using config file logging statement for logging due to -g option +25-May-2017 23:45:50.869 managed-keys-zone: loaded serial 0 +25-May-2017 23:45:50.904 zone local/IN: loaded serial 2 +25-May-2017 23:45:50.904 all zones loaded +25-May-2017 23:45:50.904 running +25-May-2017 23:45:56.715 shutting down +25-May-2017 23:45:56.715 no longer listening on 127.0.0.1#5400 +25-May-2017 23:45:56.802 exiting +=== Log Marked @ 2017-05-26 00:23:06 +1200 [6835] === +26-May-2017 00:23:06.660 starting BIND 9.11.0-P3 +26-May-2017 00:23:06.660 running on Darwin x86_64 16.6.0 Darwin Kernel Version 16.6.0: Fri Apr 14 16:21:16 PDT 2017; root:xnu-3789.60.24~6/RELEASE_X86_64 +26-May-2017 00:23:06.660 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +26-May-2017 00:23:06.660 running as: named -c named.conf -f -p 5400 -g +26-May-2017 00:23:06.660 ---------------------------------------------------- +26-May-2017 00:23:06.660 BIND 9 is maintained by Internet Systems Consortium, +26-May-2017 00:23:06.660 Inc. (ISC), a non-profit 501(c)(3) public-benefit +26-May-2017 00:23:06.660 corporation. Support and training for BIND 9 are +26-May-2017 00:23:06.660 available at https://www.isc.org/support +26-May-2017 00:23:06.660 ---------------------------------------------------- +26-May-2017 00:23:06.661 found 8 CPUs, using 8 worker threads +26-May-2017 00:23:06.661 using 7 UDP listeners per interface +26-May-2017 00:23:06.662 using up to 4096 sockets +26-May-2017 00:23:06.677 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +26-May-2017 00:23:06.678 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +26-May-2017 00:23:06.678 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +26-May-2017 00:23:06.679 using default UDP/IPv4 port range: [49152, 65535] +26-May-2017 00:23:06.679 using default UDP/IPv6 port range: [49152, 65535] +26-May-2017 00:23:06.680 listening on IPv4 interface lo0, 127.0.0.1#5400 +26-May-2017 00:23:06.682 generating session key for dynamic DNS +26-May-2017 00:23:06.682 could not open file '/opt/local/var/run/named/session.key': Permission denied +26-May-2017 00:23:06.682 could not create /opt/local/var/run/named/session.key +26-May-2017 00:23:06.682 failed to generate session key for dynamic DNS: permission denied +26-May-2017 00:23:06.683 sizing zone task pool based on 1 zones +26-May-2017 00:23:06.685 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-May-2017 00:23:06.691 set up managed keys zone for view _default, file 'managed-keys.bind' +26-May-2017 00:23:06.691 automatic empty zone: 10.IN-ADDR.ARPA +26-May-2017 00:23:06.691 automatic empty zone: 16.172.IN-ADDR.ARPA +26-May-2017 00:23:06.691 automatic empty zone: 17.172.IN-ADDR.ARPA +26-May-2017 00:23:06.691 automatic empty zone: 18.172.IN-ADDR.ARPA +26-May-2017 00:23:06.691 automatic empty zone: 19.172.IN-ADDR.ARPA +26-May-2017 00:23:06.691 automatic empty zone: 20.172.IN-ADDR.ARPA +26-May-2017 00:23:06.691 automatic empty zone: 21.172.IN-ADDR.ARPA +26-May-2017 00:23:06.691 automatic empty zone: 22.172.IN-ADDR.ARPA +26-May-2017 00:23:06.691 automatic empty zone: 23.172.IN-ADDR.ARPA +26-May-2017 00:23:06.691 automatic empty zone: 24.172.IN-ADDR.ARPA +26-May-2017 00:23:06.691 automatic empty zone: 25.172.IN-ADDR.ARPA +26-May-2017 00:23:06.691 automatic empty zone: 26.172.IN-ADDR.ARPA +26-May-2017 00:23:06.691 automatic empty zone: 27.172.IN-ADDR.ARPA +26-May-2017 00:23:06.691 automatic empty zone: 28.172.IN-ADDR.ARPA +26-May-2017 00:23:06.691 automatic empty zone: 29.172.IN-ADDR.ARPA +26-May-2017 00:23:06.691 automatic empty zone: 30.172.IN-ADDR.ARPA +26-May-2017 00:23:06.691 automatic empty zone: 31.172.IN-ADDR.ARPA +26-May-2017 00:23:06.691 automatic empty zone: 168.192.IN-ADDR.ARPA +26-May-2017 00:23:06.691 automatic empty zone: 64.100.IN-ADDR.ARPA +26-May-2017 00:23:06.691 automatic empty zone: 65.100.IN-ADDR.ARPA +26-May-2017 00:23:06.691 automatic empty zone: 66.100.IN-ADDR.ARPA +26-May-2017 00:23:06.691 automatic empty zone: 67.100.IN-ADDR.ARPA +26-May-2017 00:23:06.691 automatic empty zone: 68.100.IN-ADDR.ARPA +26-May-2017 00:23:06.691 automatic empty zone: 69.100.IN-ADDR.ARPA +26-May-2017 00:23:06.691 automatic empty zone: 70.100.IN-ADDR.ARPA +26-May-2017 00:23:06.691 automatic empty zone: 71.100.IN-ADDR.ARPA +26-May-2017 00:23:06.691 automatic empty zone: 72.100.IN-ADDR.ARPA +26-May-2017 00:23:06.691 automatic empty zone: 73.100.IN-ADDR.ARPA +26-May-2017 00:23:06.691 automatic empty zone: 74.100.IN-ADDR.ARPA +26-May-2017 00:23:06.691 automatic empty zone: 75.100.IN-ADDR.ARPA +26-May-2017 00:23:06.691 automatic empty zone: 76.100.IN-ADDR.ARPA +26-May-2017 00:23:06.691 automatic empty zone: 77.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 78.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 79.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 80.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 81.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 82.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 83.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 84.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 85.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 86.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 87.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 88.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 89.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 90.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 91.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 92.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 93.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 94.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 95.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 96.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 97.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 98.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 99.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 100.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 101.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 102.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 103.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 104.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 105.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 106.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 107.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 108.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 109.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 110.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 111.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 112.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 113.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 114.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 115.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 116.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 117.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 118.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 119.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 120.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 121.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 122.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 123.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 124.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 125.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 126.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 127.100.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 0.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 127.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 254.169.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 2.0.192.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 100.51.198.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 113.0.203.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-May-2017 00:23:06.692 automatic empty zone: D.F.IP6.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 8.E.F.IP6.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 9.E.F.IP6.ARPA +26-May-2017 00:23:06.692 automatic empty zone: A.E.F.IP6.ARPA +26-May-2017 00:23:06.692 automatic empty zone: B.E.F.IP6.ARPA +26-May-2017 00:23:06.692 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +26-May-2017 00:23:06.692 automatic empty zone: EMPTY.AS112.ARPA +26-May-2017 00:23:06.692 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-May-2017 00:23:06.697 configuring command channel from '/opt/local/etc/rndc.key' +26-May-2017 00:23:06.697 couldn't add command channel 127.0.0.1#953: file not found +26-May-2017 00:23:06.697 configuring command channel from '/opt/local/etc/rndc.key' +26-May-2017 00:23:06.697 couldn't add command channel ::1#953: file not found +26-May-2017 00:23:06.697 not using config file logging statement for logging due to -g option +26-May-2017 00:23:06.698 managed-keys-zone: loaded serial 0 +26-May-2017 00:23:06.737 zone local/IN: loaded serial 2 +26-May-2017 00:23:06.737 all zones loaded +26-May-2017 00:23:06.737 running +26-May-2017 00:23:14.458 shutting down +26-May-2017 00:23:14.459 no longer listening on 127.0.0.1#5400 +26-May-2017 00:23:14.518 exiting +=== Log Marked @ 2017-05-26 00:23:56 +1200 [6842] === +26-May-2017 00:23:56.175 starting BIND 9.11.0-P3 +26-May-2017 00:23:56.175 running on Darwin x86_64 16.6.0 Darwin Kernel Version 16.6.0: Fri Apr 14 16:21:16 PDT 2017; root:xnu-3789.60.24~6/RELEASE_X86_64 +26-May-2017 00:23:56.175 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +26-May-2017 00:23:56.175 running as: named -c named.conf -f -p 5400 -g +26-May-2017 00:23:56.175 ---------------------------------------------------- +26-May-2017 00:23:56.175 BIND 9 is maintained by Internet Systems Consortium, +26-May-2017 00:23:56.175 Inc. (ISC), a non-profit 501(c)(3) public-benefit +26-May-2017 00:23:56.175 corporation. Support and training for BIND 9 are +26-May-2017 00:23:56.175 available at https://www.isc.org/support +26-May-2017 00:23:56.175 ---------------------------------------------------- +26-May-2017 00:23:56.175 found 8 CPUs, using 8 worker threads +26-May-2017 00:23:56.175 using 7 UDP listeners per interface +26-May-2017 00:23:56.175 using up to 4096 sockets +26-May-2017 00:23:56.179 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +26-May-2017 00:23:56.179 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +26-May-2017 00:23:56.179 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +26-May-2017 00:23:56.179 using default UDP/IPv4 port range: [49152, 65535] +26-May-2017 00:23:56.179 using default UDP/IPv6 port range: [49152, 65535] +26-May-2017 00:23:56.180 listening on IPv4 interface lo0, 127.0.0.1#5400 +26-May-2017 00:23:56.181 generating session key for dynamic DNS +26-May-2017 00:23:56.181 could not open file '/opt/local/var/run/named/session.key': Permission denied +26-May-2017 00:23:56.181 could not create /opt/local/var/run/named/session.key +26-May-2017 00:23:56.181 failed to generate session key for dynamic DNS: permission denied +26-May-2017 00:23:56.182 sizing zone task pool based on 1 zones +26-May-2017 00:23:56.182 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-May-2017 00:23:56.184 set up managed keys zone for view _default, file 'managed-keys.bind' +26-May-2017 00:23:56.184 automatic empty zone: 10.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 16.172.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 17.172.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 18.172.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 19.172.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 20.172.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 21.172.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 22.172.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 23.172.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 24.172.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 25.172.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 26.172.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 27.172.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 28.172.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 29.172.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 30.172.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 31.172.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 168.192.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 64.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 65.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 66.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 67.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 68.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 69.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 70.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 71.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 72.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 73.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 74.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 75.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 76.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 77.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 78.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 79.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 80.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 81.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 82.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 83.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 84.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 85.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 86.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 87.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 88.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 89.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 90.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 91.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 92.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 93.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 94.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 95.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 96.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 97.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 98.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 99.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 100.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 101.100.IN-ADDR.ARPA +26-May-2017 00:23:56.184 automatic empty zone: 102.100.IN-ADDR.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 103.100.IN-ADDR.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 104.100.IN-ADDR.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 105.100.IN-ADDR.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 106.100.IN-ADDR.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 107.100.IN-ADDR.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 108.100.IN-ADDR.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 109.100.IN-ADDR.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 110.100.IN-ADDR.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 111.100.IN-ADDR.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 112.100.IN-ADDR.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 113.100.IN-ADDR.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 114.100.IN-ADDR.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 115.100.IN-ADDR.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 116.100.IN-ADDR.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 117.100.IN-ADDR.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 118.100.IN-ADDR.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 119.100.IN-ADDR.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 120.100.IN-ADDR.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 121.100.IN-ADDR.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 122.100.IN-ADDR.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 123.100.IN-ADDR.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 124.100.IN-ADDR.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 125.100.IN-ADDR.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 126.100.IN-ADDR.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 127.100.IN-ADDR.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 0.IN-ADDR.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 127.IN-ADDR.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 254.169.IN-ADDR.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 2.0.192.IN-ADDR.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 100.51.198.IN-ADDR.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 113.0.203.IN-ADDR.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-May-2017 00:23:56.185 automatic empty zone: D.F.IP6.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 8.E.F.IP6.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 9.E.F.IP6.ARPA +26-May-2017 00:23:56.185 automatic empty zone: A.E.F.IP6.ARPA +26-May-2017 00:23:56.185 automatic empty zone: B.E.F.IP6.ARPA +26-May-2017 00:23:56.185 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +26-May-2017 00:23:56.185 automatic empty zone: EMPTY.AS112.ARPA +26-May-2017 00:23:56.185 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-May-2017 00:23:56.187 configuring command channel from '/opt/local/etc/rndc.key' +26-May-2017 00:23:56.187 couldn't add command channel 127.0.0.1#953: file not found +26-May-2017 00:23:56.187 configuring command channel from '/opt/local/etc/rndc.key' +26-May-2017 00:23:56.187 couldn't add command channel ::1#953: file not found +26-May-2017 00:23:56.187 not using config file logging statement for logging due to -g option +26-May-2017 00:23:56.188 managed-keys-zone: loaded serial 0 +26-May-2017 00:23:56.214 zone local/IN: loaded serial 2 +26-May-2017 00:23:56.214 all zones loaded +26-May-2017 00:23:56.214 running +26-May-2017 00:24:03.416 shutting down +26-May-2017 00:24:03.416 no longer listening on 127.0.0.1#5400 +26-May-2017 00:24:03.507 exiting +=== Log Marked @ 2017-05-26 00:24:19 +1200 [6849] === +26-May-2017 00:24:19.568 starting BIND 9.11.0-P3 +26-May-2017 00:24:19.568 running on Darwin x86_64 16.6.0 Darwin Kernel Version 16.6.0: Fri Apr 14 16:21:16 PDT 2017; root:xnu-3789.60.24~6/RELEASE_X86_64 +26-May-2017 00:24:19.568 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +26-May-2017 00:24:19.568 running as: named -c named.conf -f -p 5400 -g +26-May-2017 00:24:19.568 ---------------------------------------------------- +26-May-2017 00:24:19.568 BIND 9 is maintained by Internet Systems Consortium, +26-May-2017 00:24:19.568 Inc. (ISC), a non-profit 501(c)(3) public-benefit +26-May-2017 00:24:19.568 corporation. Support and training for BIND 9 are +26-May-2017 00:24:19.568 available at https://www.isc.org/support +26-May-2017 00:24:19.568 ---------------------------------------------------- +26-May-2017 00:24:19.568 found 8 CPUs, using 8 worker threads +26-May-2017 00:24:19.568 using 7 UDP listeners per interface +26-May-2017 00:24:19.568 using up to 4096 sockets +26-May-2017 00:24:19.574 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +26-May-2017 00:24:19.574 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +26-May-2017 00:24:19.574 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +26-May-2017 00:24:19.574 using default UDP/IPv4 port range: [49152, 65535] +26-May-2017 00:24:19.574 using default UDP/IPv6 port range: [49152, 65535] +26-May-2017 00:24:19.575 listening on IPv4 interface lo0, 127.0.0.1#5400 +26-May-2017 00:24:19.577 generating session key for dynamic DNS +26-May-2017 00:24:19.577 could not open file '/opt/local/var/run/named/session.key': Permission denied +26-May-2017 00:24:19.577 could not create /opt/local/var/run/named/session.key +26-May-2017 00:24:19.577 failed to generate session key for dynamic DNS: permission denied +26-May-2017 00:24:19.577 sizing zone task pool based on 1 zones +26-May-2017 00:24:19.577 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-May-2017 00:24:19.580 set up managed keys zone for view _default, file 'managed-keys.bind' +26-May-2017 00:24:19.580 automatic empty zone: 10.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 16.172.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 17.172.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 18.172.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 19.172.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 20.172.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 21.172.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 22.172.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 23.172.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 24.172.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 25.172.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 26.172.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 27.172.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 28.172.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 29.172.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 30.172.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 31.172.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 168.192.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 64.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 65.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 66.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 67.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 68.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 69.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 70.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 71.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 72.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 73.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 74.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 75.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 76.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 77.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 78.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 79.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 80.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 81.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 82.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 83.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 84.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 85.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 86.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 87.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 88.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 89.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 90.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 91.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 92.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 93.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 94.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 95.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 96.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 97.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 98.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 99.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 100.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 101.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 102.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 103.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 104.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 105.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 106.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 107.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 108.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 109.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 110.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 111.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 112.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 113.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 114.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 115.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 116.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 117.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 118.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 119.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 120.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 121.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 122.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 123.100.IN-ADDR.ARPA +26-May-2017 00:24:19.580 automatic empty zone: 124.100.IN-ADDR.ARPA +26-May-2017 00:24:19.581 automatic empty zone: 125.100.IN-ADDR.ARPA +26-May-2017 00:24:19.581 automatic empty zone: 126.100.IN-ADDR.ARPA +26-May-2017 00:24:19.581 automatic empty zone: 127.100.IN-ADDR.ARPA +26-May-2017 00:24:19.581 automatic empty zone: 0.IN-ADDR.ARPA +26-May-2017 00:24:19.581 automatic empty zone: 127.IN-ADDR.ARPA +26-May-2017 00:24:19.581 automatic empty zone: 254.169.IN-ADDR.ARPA +26-May-2017 00:24:19.581 automatic empty zone: 2.0.192.IN-ADDR.ARPA +26-May-2017 00:24:19.581 automatic empty zone: 100.51.198.IN-ADDR.ARPA +26-May-2017 00:24:19.581 automatic empty zone: 113.0.203.IN-ADDR.ARPA +26-May-2017 00:24:19.581 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +26-May-2017 00:24:19.581 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-May-2017 00:24:19.581 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-May-2017 00:24:19.581 automatic empty zone: D.F.IP6.ARPA +26-May-2017 00:24:19.581 automatic empty zone: 8.E.F.IP6.ARPA +26-May-2017 00:24:19.581 automatic empty zone: 9.E.F.IP6.ARPA +26-May-2017 00:24:19.581 automatic empty zone: A.E.F.IP6.ARPA +26-May-2017 00:24:19.581 automatic empty zone: B.E.F.IP6.ARPA +26-May-2017 00:24:19.581 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +26-May-2017 00:24:19.581 automatic empty zone: EMPTY.AS112.ARPA +26-May-2017 00:24:19.581 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-May-2017 00:24:19.583 configuring command channel from '/opt/local/etc/rndc.key' +26-May-2017 00:24:19.583 couldn't add command channel 127.0.0.1#953: file not found +26-May-2017 00:24:19.583 configuring command channel from '/opt/local/etc/rndc.key' +26-May-2017 00:24:19.583 couldn't add command channel ::1#953: file not found +26-May-2017 00:24:19.583 not using config file logging statement for logging due to -g option +26-May-2017 00:24:19.584 managed-keys-zone: loaded serial 0 +26-May-2017 00:24:19.617 zone local/IN: loaded serial 2 +26-May-2017 00:24:19.617 all zones loaded +26-May-2017 00:24:19.617 running +26-May-2017 00:24:26.518 shutting down +26-May-2017 00:24:26.519 no longer listening on 127.0.0.1#5400 +26-May-2017 00:24:26.587 exiting +=== Log Marked @ 2017-05-26 00:24:51 +1200 [6856] === +26-May-2017 00:24:51.137 starting BIND 9.11.0-P3 +26-May-2017 00:24:51.137 running on Darwin x86_64 16.6.0 Darwin Kernel Version 16.6.0: Fri Apr 14 16:21:16 PDT 2017; root:xnu-3789.60.24~6/RELEASE_X86_64 +26-May-2017 00:24:51.137 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +26-May-2017 00:24:51.137 running as: named -c named.conf -f -p 5400 -g +26-May-2017 00:24:51.137 ---------------------------------------------------- +26-May-2017 00:24:51.137 BIND 9 is maintained by Internet Systems Consortium, +26-May-2017 00:24:51.137 Inc. (ISC), a non-profit 501(c)(3) public-benefit +26-May-2017 00:24:51.137 corporation. Support and training for BIND 9 are +26-May-2017 00:24:51.137 available at https://www.isc.org/support +26-May-2017 00:24:51.137 ---------------------------------------------------- +26-May-2017 00:24:51.137 found 8 CPUs, using 8 worker threads +26-May-2017 00:24:51.137 using 7 UDP listeners per interface +26-May-2017 00:24:51.137 using up to 4096 sockets +26-May-2017 00:24:51.142 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +26-May-2017 00:24:51.142 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +26-May-2017 00:24:51.142 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +26-May-2017 00:24:51.142 using default UDP/IPv4 port range: [49152, 65535] +26-May-2017 00:24:51.142 using default UDP/IPv6 port range: [49152, 65535] +26-May-2017 00:24:51.143 listening on IPv4 interface lo0, 127.0.0.1#5400 +26-May-2017 00:24:51.145 generating session key for dynamic DNS +26-May-2017 00:24:51.145 could not open file '/opt/local/var/run/named/session.key': Permission denied +26-May-2017 00:24:51.145 could not create /opt/local/var/run/named/session.key +26-May-2017 00:24:51.145 failed to generate session key for dynamic DNS: permission denied +26-May-2017 00:24:51.146 sizing zone task pool based on 1 zones +26-May-2017 00:24:51.146 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-May-2017 00:24:51.148 set up managed keys zone for view _default, file 'managed-keys.bind' +26-May-2017 00:24:51.148 automatic empty zone: 10.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 16.172.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 17.172.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 18.172.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 19.172.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 20.172.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 21.172.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 22.172.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 23.172.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 24.172.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 25.172.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 26.172.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 27.172.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 28.172.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 29.172.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 30.172.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 31.172.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 168.192.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 64.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 65.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 66.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 67.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 68.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 69.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 70.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 71.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 72.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 73.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 74.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 75.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 76.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 77.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 78.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 79.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 80.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 81.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 82.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 83.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 84.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 85.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 86.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 87.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 88.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 89.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 90.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 91.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 92.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 93.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 94.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 95.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 96.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 97.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 98.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 99.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 100.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 101.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 102.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 103.100.IN-ADDR.ARPA +26-May-2017 00:24:51.148 automatic empty zone: 104.100.IN-ADDR.ARPA +26-May-2017 00:24:51.149 automatic empty zone: 105.100.IN-ADDR.ARPA +26-May-2017 00:24:51.149 automatic empty zone: 106.100.IN-ADDR.ARPA +26-May-2017 00:24:51.149 automatic empty zone: 107.100.IN-ADDR.ARPA +26-May-2017 00:24:51.149 automatic empty zone: 108.100.IN-ADDR.ARPA +26-May-2017 00:24:51.149 automatic empty zone: 109.100.IN-ADDR.ARPA +26-May-2017 00:24:51.149 automatic empty zone: 110.100.IN-ADDR.ARPA +26-May-2017 00:24:51.149 automatic empty zone: 111.100.IN-ADDR.ARPA +26-May-2017 00:24:51.149 automatic empty zone: 112.100.IN-ADDR.ARPA +26-May-2017 00:24:51.149 automatic empty zone: 113.100.IN-ADDR.ARPA +26-May-2017 00:24:51.149 automatic empty zone: 114.100.IN-ADDR.ARPA +26-May-2017 00:24:51.149 automatic empty zone: 115.100.IN-ADDR.ARPA +26-May-2017 00:24:51.149 automatic empty zone: 116.100.IN-ADDR.ARPA +26-May-2017 00:24:51.149 automatic empty zone: 117.100.IN-ADDR.ARPA +26-May-2017 00:24:51.149 automatic empty zone: 118.100.IN-ADDR.ARPA +26-May-2017 00:24:51.149 automatic empty zone: 119.100.IN-ADDR.ARPA +26-May-2017 00:24:51.149 automatic empty zone: 120.100.IN-ADDR.ARPA +26-May-2017 00:24:51.149 automatic empty zone: 121.100.IN-ADDR.ARPA +26-May-2017 00:24:51.149 automatic empty zone: 122.100.IN-ADDR.ARPA +26-May-2017 00:24:51.149 automatic empty zone: 123.100.IN-ADDR.ARPA +26-May-2017 00:24:51.149 automatic empty zone: 124.100.IN-ADDR.ARPA +26-May-2017 00:24:51.149 automatic empty zone: 125.100.IN-ADDR.ARPA +26-May-2017 00:24:51.149 automatic empty zone: 126.100.IN-ADDR.ARPA +26-May-2017 00:24:51.149 automatic empty zone: 127.100.IN-ADDR.ARPA +26-May-2017 00:24:51.149 automatic empty zone: 0.IN-ADDR.ARPA +26-May-2017 00:24:51.149 automatic empty zone: 127.IN-ADDR.ARPA +26-May-2017 00:24:51.149 automatic empty zone: 254.169.IN-ADDR.ARPA +26-May-2017 00:24:51.149 automatic empty zone: 2.0.192.IN-ADDR.ARPA +26-May-2017 00:24:51.149 automatic empty zone: 100.51.198.IN-ADDR.ARPA +26-May-2017 00:24:51.149 automatic empty zone: 113.0.203.IN-ADDR.ARPA +26-May-2017 00:24:51.149 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +26-May-2017 00:24:51.149 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-May-2017 00:24:51.149 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-May-2017 00:24:51.149 automatic empty zone: D.F.IP6.ARPA +26-May-2017 00:24:51.149 automatic empty zone: 8.E.F.IP6.ARPA +26-May-2017 00:24:51.149 automatic empty zone: 9.E.F.IP6.ARPA +26-May-2017 00:24:51.149 automatic empty zone: A.E.F.IP6.ARPA +26-May-2017 00:24:51.149 automatic empty zone: B.E.F.IP6.ARPA +26-May-2017 00:24:51.149 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +26-May-2017 00:24:51.149 automatic empty zone: EMPTY.AS112.ARPA +26-May-2017 00:24:51.149 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-May-2017 00:24:51.151 configuring command channel from '/opt/local/etc/rndc.key' +26-May-2017 00:24:51.151 couldn't add command channel 127.0.0.1#953: file not found +26-May-2017 00:24:51.151 configuring command channel from '/opt/local/etc/rndc.key' +26-May-2017 00:24:51.151 couldn't add command channel ::1#953: file not found +26-May-2017 00:24:51.151 not using config file logging statement for logging due to -g option +26-May-2017 00:24:51.151 managed-keys-zone: loaded serial 0 +26-May-2017 00:24:51.180 zone local/IN: loaded serial 2 +26-May-2017 00:24:51.180 all zones loaded +26-May-2017 00:24:51.180 running +26-May-2017 00:24:58.376 shutting down +26-May-2017 00:24:58.376 no longer listening on 127.0.0.1#5400 +26-May-2017 00:24:58.444 exiting +=== Log Marked @ 2017-07-30 14:34:35 +1200 [4104] === +30-Jul-2017 14:34:35.760 starting BIND 9.11.1 +30-Jul-2017 14:34:35.761 running on Darwin x86_64 16.7.0 Darwin Kernel Version 16.7.0: Thu Jun 15 17:36:27 PDT 2017; root:xnu-3789.70.16~2/RELEASE_X86_64 +30-Jul-2017 14:34:35.761 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +30-Jul-2017 14:34:35.761 running as: named -c named.conf -f -p 5400 -g +30-Jul-2017 14:34:35.761 ---------------------------------------------------- +30-Jul-2017 14:34:35.761 BIND 9 is maintained by Internet Systems Consortium, +30-Jul-2017 14:34:35.761 Inc. (ISC), a non-profit 501(c)(3) public-benefit +30-Jul-2017 14:34:35.761 corporation. Support and training for BIND 9 are +30-Jul-2017 14:34:35.761 available at https://www.isc.org/support +30-Jul-2017 14:34:35.761 ---------------------------------------------------- +30-Jul-2017 14:34:35.761 found 8 CPUs, using 8 worker threads +30-Jul-2017 14:34:35.761 using 7 UDP listeners per interface +30-Jul-2017 14:34:35.762 using up to 4096 sockets +30-Jul-2017 14:34:35.783 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +30-Jul-2017 14:34:35.783 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +30-Jul-2017 14:34:35.783 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +30-Jul-2017 14:34:35.784 set maximum open files to 18446744073709551615: invalid file +30-Jul-2017 14:34:35.785 using default UDP/IPv4 port range: [49152, 65535] +30-Jul-2017 14:34:35.785 using default UDP/IPv6 port range: [49152, 65535] +30-Jul-2017 14:34:35.785 listening on IPv4 interface lo0, 127.0.0.1#5400 +30-Jul-2017 14:34:35.788 generating session key for dynamic DNS +30-Jul-2017 14:34:35.788 could not open file '/opt/local/var/run/named/session.key': Permission denied +30-Jul-2017 14:34:35.788 could not create /opt/local/var/run/named/session.key +30-Jul-2017 14:34:35.790 failed to generate session key for dynamic DNS: permission denied +30-Jul-2017 14:34:35.793 sizing zone task pool based on 1 zones +30-Jul-2017 14:34:35.795 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +30-Jul-2017 14:34:35.800 set up managed keys zone for view _default, file 'managed-keys.bind' +30-Jul-2017 14:34:35.800 automatic empty zone: 10.IN-ADDR.ARPA +30-Jul-2017 14:34:35.800 automatic empty zone: 16.172.IN-ADDR.ARPA +30-Jul-2017 14:34:35.800 automatic empty zone: 17.172.IN-ADDR.ARPA +30-Jul-2017 14:34:35.800 automatic empty zone: 18.172.IN-ADDR.ARPA +30-Jul-2017 14:34:35.800 automatic empty zone: 19.172.IN-ADDR.ARPA +30-Jul-2017 14:34:35.800 automatic empty zone: 20.172.IN-ADDR.ARPA +30-Jul-2017 14:34:35.800 automatic empty zone: 21.172.IN-ADDR.ARPA +30-Jul-2017 14:34:35.800 automatic empty zone: 22.172.IN-ADDR.ARPA +30-Jul-2017 14:34:35.800 automatic empty zone: 23.172.IN-ADDR.ARPA +30-Jul-2017 14:34:35.800 automatic empty zone: 24.172.IN-ADDR.ARPA +30-Jul-2017 14:34:35.800 automatic empty zone: 25.172.IN-ADDR.ARPA +30-Jul-2017 14:34:35.800 automatic empty zone: 26.172.IN-ADDR.ARPA +30-Jul-2017 14:34:35.800 automatic empty zone: 27.172.IN-ADDR.ARPA +30-Jul-2017 14:34:35.800 automatic empty zone: 28.172.IN-ADDR.ARPA +30-Jul-2017 14:34:35.800 automatic empty zone: 29.172.IN-ADDR.ARPA +30-Jul-2017 14:34:35.800 automatic empty zone: 30.172.IN-ADDR.ARPA +30-Jul-2017 14:34:35.800 automatic empty zone: 31.172.IN-ADDR.ARPA +30-Jul-2017 14:34:35.800 automatic empty zone: 168.192.IN-ADDR.ARPA +30-Jul-2017 14:34:35.800 automatic empty zone: 64.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.800 automatic empty zone: 65.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.800 automatic empty zone: 66.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.800 automatic empty zone: 67.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.800 automatic empty zone: 68.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.800 automatic empty zone: 69.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.800 automatic empty zone: 70.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.800 automatic empty zone: 71.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.800 automatic empty zone: 72.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.800 automatic empty zone: 73.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.800 automatic empty zone: 74.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.800 automatic empty zone: 75.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.800 automatic empty zone: 76.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.800 automatic empty zone: 77.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.800 automatic empty zone: 78.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.800 automatic empty zone: 79.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.800 automatic empty zone: 80.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 81.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 82.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 83.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 84.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 85.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 86.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 87.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 88.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 89.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 90.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 91.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 92.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 93.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 94.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 95.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 96.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 97.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 98.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 99.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 100.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 101.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 102.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 103.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 104.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 105.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 106.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 107.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 108.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 109.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 110.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 111.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 112.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 113.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 114.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 115.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 116.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 117.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 118.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 119.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 120.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 121.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 122.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 123.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 124.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 125.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 126.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 127.100.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 0.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 127.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 254.169.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 2.0.192.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 100.51.198.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 113.0.203.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: D.F.IP6.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 8.E.F.IP6.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 9.E.F.IP6.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: A.E.F.IP6.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: B.E.F.IP6.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +30-Jul-2017 14:34:35.801 automatic empty zone: EMPTY.AS112.ARPA +30-Jul-2017 14:34:35.801 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +30-Jul-2017 14:34:35.804 configuring command channel from '/opt/local/etc/rndc.key' +30-Jul-2017 14:34:35.804 couldn't add command channel 127.0.0.1#953: file not found +30-Jul-2017 14:34:35.804 configuring command channel from '/opt/local/etc/rndc.key' +30-Jul-2017 14:34:35.804 couldn't add command channel ::1#953: file not found +30-Jul-2017 14:34:35.804 not using config file logging statement for logging due to -g option +30-Jul-2017 14:34:35.805 managed-keys-zone: loaded serial 0 +30-Jul-2017 14:34:35.834 zone local/IN: loaded serial 2 +30-Jul-2017 14:34:35.834 all zones loaded +30-Jul-2017 14:34:35.834 running +30-Jul-2017 14:34:35.842 shutting down +30-Jul-2017 14:34:35.843 no longer listening on 127.0.0.1#5400 +30-Jul-2017 14:34:35.944 exiting +=== Log Marked @ 2017-07-30 14:55:11 +1200 [4188] === +30-Jul-2017 14:55:11.824 starting BIND 9.11.1 +30-Jul-2017 14:55:11.824 running on Darwin x86_64 16.7.0 Darwin Kernel Version 16.7.0: Thu Jun 15 17:36:27 PDT 2017; root:xnu-3789.70.16~2/RELEASE_X86_64 +30-Jul-2017 14:55:11.824 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +30-Jul-2017 14:55:11.824 running as: named -c named.conf -f -p 5400 -g +30-Jul-2017 14:55:11.824 ---------------------------------------------------- +30-Jul-2017 14:55:11.824 BIND 9 is maintained by Internet Systems Consortium, +30-Jul-2017 14:55:11.824 Inc. (ISC), a non-profit 501(c)(3) public-benefit +30-Jul-2017 14:55:11.824 corporation. Support and training for BIND 9 are +30-Jul-2017 14:55:11.824 available at https://www.isc.org/support +30-Jul-2017 14:55:11.824 ---------------------------------------------------- +30-Jul-2017 14:55:11.824 found 8 CPUs, using 8 worker threads +30-Jul-2017 14:55:11.824 using 7 UDP listeners per interface +30-Jul-2017 14:55:11.825 using up to 4096 sockets +30-Jul-2017 14:55:11.830 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +30-Jul-2017 14:55:11.830 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +30-Jul-2017 14:55:11.830 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +30-Jul-2017 14:55:11.830 set maximum open files to 18446744073709551615: invalid file +30-Jul-2017 14:55:11.830 using default UDP/IPv4 port range: [49152, 65535] +30-Jul-2017 14:55:11.830 using default UDP/IPv6 port range: [49152, 65535] +30-Jul-2017 14:55:11.831 listening on IPv4 interface lo0, 127.0.0.1#5400 +30-Jul-2017 14:55:11.833 generating session key for dynamic DNS +30-Jul-2017 14:55:11.833 could not open file '/opt/local/var/run/named/session.key': Permission denied +30-Jul-2017 14:55:11.833 could not create /opt/local/var/run/named/session.key +30-Jul-2017 14:55:11.833 failed to generate session key for dynamic DNS: permission denied +30-Jul-2017 14:55:11.833 sizing zone task pool based on 1 zones +30-Jul-2017 14:55:11.833 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +30-Jul-2017 14:55:11.836 set up managed keys zone for view _default, file 'managed-keys.bind' +30-Jul-2017 14:55:11.836 automatic empty zone: 10.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 16.172.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 17.172.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 18.172.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 19.172.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 20.172.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 21.172.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 22.172.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 23.172.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 24.172.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 25.172.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 26.172.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 27.172.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 28.172.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 29.172.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 30.172.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 31.172.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 168.192.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 64.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 65.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 66.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 67.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 68.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 69.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 70.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 71.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 72.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 73.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 74.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 75.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 76.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 77.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 78.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 79.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 80.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 81.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 82.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 83.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 84.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 85.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 86.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 87.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 88.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 89.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 90.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 91.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 92.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 93.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 94.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 95.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 96.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 97.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 98.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 99.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 100.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 101.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 102.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 103.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 104.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 105.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 106.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 107.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 108.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 109.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 110.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.836 automatic empty zone: 111.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.837 automatic empty zone: 112.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.837 automatic empty zone: 113.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.837 automatic empty zone: 114.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.837 automatic empty zone: 115.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.837 automatic empty zone: 116.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.837 automatic empty zone: 117.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.837 automatic empty zone: 118.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.837 automatic empty zone: 119.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.837 automatic empty zone: 120.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.837 automatic empty zone: 121.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.837 automatic empty zone: 122.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.837 automatic empty zone: 123.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.837 automatic empty zone: 124.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.837 automatic empty zone: 125.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.837 automatic empty zone: 126.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.837 automatic empty zone: 127.100.IN-ADDR.ARPA +30-Jul-2017 14:55:11.837 automatic empty zone: 0.IN-ADDR.ARPA +30-Jul-2017 14:55:11.837 automatic empty zone: 127.IN-ADDR.ARPA +30-Jul-2017 14:55:11.837 automatic empty zone: 254.169.IN-ADDR.ARPA +30-Jul-2017 14:55:11.837 automatic empty zone: 2.0.192.IN-ADDR.ARPA +30-Jul-2017 14:55:11.837 automatic empty zone: 100.51.198.IN-ADDR.ARPA +30-Jul-2017 14:55:11.837 automatic empty zone: 113.0.203.IN-ADDR.ARPA +30-Jul-2017 14:55:11.837 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +30-Jul-2017 14:55:11.837 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +30-Jul-2017 14:55:11.837 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +30-Jul-2017 14:55:11.837 automatic empty zone: D.F.IP6.ARPA +30-Jul-2017 14:55:11.837 automatic empty zone: 8.E.F.IP6.ARPA +30-Jul-2017 14:55:11.837 automatic empty zone: 9.E.F.IP6.ARPA +30-Jul-2017 14:55:11.837 automatic empty zone: A.E.F.IP6.ARPA +30-Jul-2017 14:55:11.837 automatic empty zone: B.E.F.IP6.ARPA +30-Jul-2017 14:55:11.837 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +30-Jul-2017 14:55:11.837 automatic empty zone: EMPTY.AS112.ARPA +30-Jul-2017 14:55:11.837 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +30-Jul-2017 14:55:11.840 configuring command channel from '/opt/local/etc/rndc.key' +30-Jul-2017 14:55:11.840 couldn't add command channel 127.0.0.1#953: file not found +30-Jul-2017 14:55:11.840 configuring command channel from '/opt/local/etc/rndc.key' +30-Jul-2017 14:55:11.840 couldn't add command channel ::1#953: file not found +30-Jul-2017 14:55:11.840 not using config file logging statement for logging due to -g option +30-Jul-2017 14:55:11.840 managed-keys-zone: loaded serial 0 +30-Jul-2017 14:55:11.876 zone local/IN: loaded serial 2 +30-Jul-2017 14:55:11.876 all zones loaded +30-Jul-2017 14:55:11.876 running +30-Jul-2017 14:55:11.921 shutting down +30-Jul-2017 14:55:11.922 no longer listening on 127.0.0.1#5400 +30-Jul-2017 14:55:12.012 exiting +=== Log Marked @ 2017-07-30 14:55:40 +1200 [4218] === +30-Jul-2017 14:55:40.338 starting BIND 9.11.1 +30-Jul-2017 14:55:40.338 running on Darwin x86_64 16.7.0 Darwin Kernel Version 16.7.0: Thu Jun 15 17:36:27 PDT 2017; root:xnu-3789.70.16~2/RELEASE_X86_64 +30-Jul-2017 14:55:40.338 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +30-Jul-2017 14:55:40.338 running as: named -c named.conf -f -p 5400 -g +30-Jul-2017 14:55:40.338 ---------------------------------------------------- +30-Jul-2017 14:55:40.338 BIND 9 is maintained by Internet Systems Consortium, +30-Jul-2017 14:55:40.338 Inc. (ISC), a non-profit 501(c)(3) public-benefit +30-Jul-2017 14:55:40.338 corporation. Support and training for BIND 9 are +30-Jul-2017 14:55:40.338 available at https://www.isc.org/support +30-Jul-2017 14:55:40.338 ---------------------------------------------------- +30-Jul-2017 14:55:40.338 found 8 CPUs, using 8 worker threads +30-Jul-2017 14:55:40.338 using 7 UDP listeners per interface +30-Jul-2017 14:55:40.338 using up to 4096 sockets +30-Jul-2017 14:55:40.342 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +30-Jul-2017 14:55:40.343 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +30-Jul-2017 14:55:40.343 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +30-Jul-2017 14:55:40.343 set maximum open files to 18446744073709551615: invalid file +30-Jul-2017 14:55:40.343 using default UDP/IPv4 port range: [49152, 65535] +30-Jul-2017 14:55:40.343 using default UDP/IPv6 port range: [49152, 65535] +30-Jul-2017 14:55:40.344 listening on IPv4 interface lo0, 127.0.0.1#5400 +30-Jul-2017 14:55:40.345 generating session key for dynamic DNS +30-Jul-2017 14:55:40.345 could not open file '/opt/local/var/run/named/session.key': Permission denied +30-Jul-2017 14:55:40.345 could not create /opt/local/var/run/named/session.key +30-Jul-2017 14:55:40.345 failed to generate session key for dynamic DNS: permission denied +30-Jul-2017 14:55:40.345 sizing zone task pool based on 1 zones +30-Jul-2017 14:55:40.346 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +30-Jul-2017 14:55:40.348 set up managed keys zone for view _default, file 'managed-keys.bind' +30-Jul-2017 14:55:40.348 automatic empty zone: 10.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 16.172.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 17.172.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 18.172.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 19.172.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 20.172.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 21.172.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 22.172.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 23.172.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 24.172.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 25.172.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 26.172.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 27.172.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 28.172.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 29.172.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 30.172.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 31.172.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 168.192.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 64.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 65.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 66.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 67.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 68.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 69.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 70.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 71.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 72.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 73.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 74.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 75.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 76.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 77.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 78.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 79.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 80.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 81.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 82.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 83.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 84.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 85.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 86.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 87.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 88.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 89.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 90.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 91.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 92.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 93.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 94.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 95.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 96.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 97.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 98.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 99.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 100.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 101.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 102.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 103.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 104.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 105.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 106.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.348 automatic empty zone: 107.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: 108.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: 109.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: 110.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: 111.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: 112.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: 113.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: 114.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: 115.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: 116.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: 117.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: 118.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: 119.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: 120.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: 121.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: 122.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: 123.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: 124.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: 125.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: 126.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: 127.100.IN-ADDR.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: 0.IN-ADDR.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: 127.IN-ADDR.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: 254.169.IN-ADDR.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: 2.0.192.IN-ADDR.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: 100.51.198.IN-ADDR.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: 113.0.203.IN-ADDR.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: D.F.IP6.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: 8.E.F.IP6.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: 9.E.F.IP6.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: A.E.F.IP6.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: B.E.F.IP6.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +30-Jul-2017 14:55:40.349 automatic empty zone: EMPTY.AS112.ARPA +30-Jul-2017 14:55:40.349 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +30-Jul-2017 14:55:40.351 configuring command channel from '/opt/local/etc/rndc.key' +30-Jul-2017 14:55:40.351 couldn't add command channel 127.0.0.1#953: file not found +30-Jul-2017 14:55:40.351 configuring command channel from '/opt/local/etc/rndc.key' +30-Jul-2017 14:55:40.351 couldn't add command channel ::1#953: file not found +30-Jul-2017 14:55:40.351 not using config file logging statement for logging due to -g option +30-Jul-2017 14:55:40.352 managed-keys-zone: loaded serial 0 +30-Jul-2017 14:55:40.393 zone local/IN: loaded serial 2 +30-Jul-2017 14:55:40.393 all zones loaded +30-Jul-2017 14:55:40.393 running +30-Jul-2017 14:55:40.541 shutting down +30-Jul-2017 14:55:40.541 no longer listening on 127.0.0.1#5400 +30-Jul-2017 14:55:40.617 exiting +=== Log Marked @ 2017-07-30 15:47:51 +1200 [4268] === +30-Jul-2017 15:47:51.185 starting BIND 9.11.1 +30-Jul-2017 15:47:51.185 running on Darwin x86_64 16.7.0 Darwin Kernel Version 16.7.0: Thu Jun 15 17:36:27 PDT 2017; root:xnu-3789.70.16~2/RELEASE_X86_64 +30-Jul-2017 15:47:51.185 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +30-Jul-2017 15:47:51.185 running as: named -c named.conf -f -p 5400 -g +30-Jul-2017 15:47:51.185 ---------------------------------------------------- +30-Jul-2017 15:47:51.185 BIND 9 is maintained by Internet Systems Consortium, +30-Jul-2017 15:47:51.185 Inc. (ISC), a non-profit 501(c)(3) public-benefit +30-Jul-2017 15:47:51.185 corporation. Support and training for BIND 9 are +30-Jul-2017 15:47:51.185 available at https://www.isc.org/support +30-Jul-2017 15:47:51.185 ---------------------------------------------------- +30-Jul-2017 15:47:51.185 found 8 CPUs, using 8 worker threads +30-Jul-2017 15:47:51.185 using 7 UDP listeners per interface +30-Jul-2017 15:47:51.185 using up to 4096 sockets +30-Jul-2017 15:47:51.189 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +30-Jul-2017 15:47:51.189 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +30-Jul-2017 15:47:51.189 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +30-Jul-2017 15:47:51.189 set maximum open files to 18446744073709551615: invalid file +30-Jul-2017 15:47:51.190 using default UDP/IPv4 port range: [49152, 65535] +30-Jul-2017 15:47:51.190 using default UDP/IPv6 port range: [49152, 65535] +30-Jul-2017 15:47:51.190 listening on IPv4 interface lo0, 127.0.0.1#5400 +30-Jul-2017 15:47:51.192 generating session key for dynamic DNS +30-Jul-2017 15:47:51.192 could not open file '/opt/local/var/run/named/session.key': Permission denied +30-Jul-2017 15:47:51.192 could not create /opt/local/var/run/named/session.key +30-Jul-2017 15:47:51.192 failed to generate session key for dynamic DNS: permission denied +30-Jul-2017 15:47:51.192 sizing zone task pool based on 1 zones +30-Jul-2017 15:47:51.193 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +30-Jul-2017 15:47:51.195 set up managed keys zone for view _default, file 'managed-keys.bind' +30-Jul-2017 15:47:51.195 automatic empty zone: 10.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 16.172.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 17.172.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 18.172.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 19.172.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 20.172.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 21.172.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 22.172.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 23.172.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 24.172.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 25.172.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 26.172.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 27.172.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 28.172.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 29.172.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 30.172.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 31.172.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 168.192.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 64.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 65.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 66.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 67.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 68.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 69.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 70.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 71.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 72.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 73.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 74.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 75.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 76.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 77.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 78.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 79.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 80.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 81.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 82.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 83.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 84.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 85.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 86.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 87.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 88.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 89.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 90.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 91.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 92.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 93.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 94.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 95.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.195 automatic empty zone: 96.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 97.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 98.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 99.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 100.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 101.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 102.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 103.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 104.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 105.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 106.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 107.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 108.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 109.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 110.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 111.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 112.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 113.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 114.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 115.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 116.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 117.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 118.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 119.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 120.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 121.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 122.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 123.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 124.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 125.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 126.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 127.100.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 0.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 127.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 254.169.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 2.0.192.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 100.51.198.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 113.0.203.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: D.F.IP6.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 8.E.F.IP6.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 9.E.F.IP6.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: A.E.F.IP6.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: B.E.F.IP6.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +30-Jul-2017 15:47:51.196 automatic empty zone: EMPTY.AS112.ARPA +30-Jul-2017 15:47:51.196 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +30-Jul-2017 15:47:51.198 configuring command channel from '/opt/local/etc/rndc.key' +30-Jul-2017 15:47:51.198 couldn't add command channel 127.0.0.1#953: file not found +30-Jul-2017 15:47:51.198 configuring command channel from '/opt/local/etc/rndc.key' +30-Jul-2017 15:47:51.198 couldn't add command channel ::1#953: file not found +30-Jul-2017 15:47:51.198 not using config file logging statement for logging due to -g option +30-Jul-2017 15:47:51.199 managed-keys-zone: loaded serial 0 +30-Jul-2017 15:47:51.233 zone local/IN: loaded serial 2 +30-Jul-2017 15:47:51.233 all zones loaded +30-Jul-2017 15:47:51.233 running +30-Jul-2017 15:47:51.391 shutting down +30-Jul-2017 15:47:51.391 no longer listening on 127.0.0.1#5400 +30-Jul-2017 15:47:51.469 exiting +=== Log Marked @ 2017-07-30 15:49:20 +1200 [4292] === +30-Jul-2017 15:49:20.380 starting BIND 9.11.1 +30-Jul-2017 15:49:20.380 running on Darwin x86_64 16.7.0 Darwin Kernel Version 16.7.0: Thu Jun 15 17:36:27 PDT 2017; root:xnu-3789.70.16~2/RELEASE_X86_64 +30-Jul-2017 15:49:20.380 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +30-Jul-2017 15:49:20.380 running as: named -c named.conf -f -p 5400 -g +30-Jul-2017 15:49:20.380 ---------------------------------------------------- +30-Jul-2017 15:49:20.380 BIND 9 is maintained by Internet Systems Consortium, +30-Jul-2017 15:49:20.380 Inc. (ISC), a non-profit 501(c)(3) public-benefit +30-Jul-2017 15:49:20.380 corporation. Support and training for BIND 9 are +30-Jul-2017 15:49:20.380 available at https://www.isc.org/support +30-Jul-2017 15:49:20.380 ---------------------------------------------------- +30-Jul-2017 15:49:20.380 found 8 CPUs, using 8 worker threads +30-Jul-2017 15:49:20.380 using 7 UDP listeners per interface +30-Jul-2017 15:49:20.380 using up to 4096 sockets +30-Jul-2017 15:49:20.384 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +30-Jul-2017 15:49:20.384 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +30-Jul-2017 15:49:20.385 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +30-Jul-2017 15:49:20.385 set maximum open files to 18446744073709551615: invalid file +30-Jul-2017 15:49:20.385 using default UDP/IPv4 port range: [49152, 65535] +30-Jul-2017 15:49:20.385 using default UDP/IPv6 port range: [49152, 65535] +30-Jul-2017 15:49:20.385 listening on IPv4 interface lo0, 127.0.0.1#5400 +30-Jul-2017 15:49:20.388 generating session key for dynamic DNS +30-Jul-2017 15:49:20.388 could not open file '/opt/local/var/run/named/session.key': Permission denied +30-Jul-2017 15:49:20.388 could not create /opt/local/var/run/named/session.key +30-Jul-2017 15:49:20.388 failed to generate session key for dynamic DNS: permission denied +30-Jul-2017 15:49:20.388 sizing zone task pool based on 1 zones +30-Jul-2017 15:49:20.388 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +30-Jul-2017 15:49:20.391 set up managed keys zone for view _default, file 'managed-keys.bind' +30-Jul-2017 15:49:20.391 automatic empty zone: 10.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 16.172.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 17.172.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 18.172.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 19.172.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 20.172.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 21.172.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 22.172.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 23.172.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 24.172.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 25.172.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 26.172.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 27.172.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 28.172.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 29.172.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 30.172.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 31.172.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 168.192.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 64.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 65.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 66.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 67.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 68.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 69.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 70.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 71.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 72.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 73.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 74.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 75.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 76.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 77.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 78.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 79.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 80.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 81.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 82.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 83.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 84.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 85.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 86.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 87.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 88.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 89.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 90.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 91.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 92.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 93.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 94.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 95.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.391 automatic empty zone: 96.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 97.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 98.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 99.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 100.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 101.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 102.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 103.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 104.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 105.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 106.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 107.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 108.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 109.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 110.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 111.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 112.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 113.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 114.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 115.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 116.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 117.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 118.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 119.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 120.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 121.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 122.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 123.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 124.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 125.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 126.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 127.100.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 0.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 127.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 254.169.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 2.0.192.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 100.51.198.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 113.0.203.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: D.F.IP6.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 8.E.F.IP6.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 9.E.F.IP6.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: A.E.F.IP6.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: B.E.F.IP6.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +30-Jul-2017 15:49:20.392 automatic empty zone: EMPTY.AS112.ARPA +30-Jul-2017 15:49:20.392 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +30-Jul-2017 15:49:20.395 configuring command channel from '/opt/local/etc/rndc.key' +30-Jul-2017 15:49:20.395 couldn't add command channel 127.0.0.1#953: file not found +30-Jul-2017 15:49:20.395 configuring command channel from '/opt/local/etc/rndc.key' +30-Jul-2017 15:49:20.395 couldn't add command channel ::1#953: file not found +30-Jul-2017 15:49:20.395 not using config file logging statement for logging due to -g option +30-Jul-2017 15:49:20.395 managed-keys-zone: loaded serial 0 +30-Jul-2017 15:49:20.435 zone local/IN: loaded serial 2 +30-Jul-2017 15:49:20.435 all zones loaded +30-Jul-2017 15:49:20.435 running +30-Jul-2017 15:49:20.580 shutting down +30-Jul-2017 15:49:20.581 no longer listening on 127.0.0.1#5400 +30-Jul-2017 15:49:20.651 exiting +=== Log Marked @ 2017-07-30 16:11:24 +1200 [4409] === +30-Jul-2017 16:11:24.123 starting BIND 9.11.1 +30-Jul-2017 16:11:24.124 running on Darwin x86_64 16.7.0 Darwin Kernel Version 16.7.0: Thu Jun 15 17:36:27 PDT 2017; root:xnu-3789.70.16~2/RELEASE_X86_64 +30-Jul-2017 16:11:24.124 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +30-Jul-2017 16:11:24.124 running as: named -c named.conf -f -p 5400 -g +30-Jul-2017 16:11:24.124 ---------------------------------------------------- +30-Jul-2017 16:11:24.124 BIND 9 is maintained by Internet Systems Consortium, +30-Jul-2017 16:11:24.124 Inc. (ISC), a non-profit 501(c)(3) public-benefit +30-Jul-2017 16:11:24.124 corporation. Support and training for BIND 9 are +30-Jul-2017 16:11:24.124 available at https://www.isc.org/support +30-Jul-2017 16:11:24.124 ---------------------------------------------------- +30-Jul-2017 16:11:24.124 found 8 CPUs, using 8 worker threads +30-Jul-2017 16:11:24.124 using 7 UDP listeners per interface +30-Jul-2017 16:11:24.124 using up to 4096 sockets +30-Jul-2017 16:11:24.128 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +30-Jul-2017 16:11:24.128 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +30-Jul-2017 16:11:24.128 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +30-Jul-2017 16:11:24.128 set maximum open files to 18446744073709551615: invalid file +30-Jul-2017 16:11:24.128 using default UDP/IPv4 port range: [49152, 65535] +30-Jul-2017 16:11:24.128 using default UDP/IPv6 port range: [49152, 65535] +30-Jul-2017 16:11:24.129 listening on IPv4 interface lo0, 127.0.0.1#5400 +30-Jul-2017 16:11:24.130 generating session key for dynamic DNS +30-Jul-2017 16:11:24.131 could not open file '/opt/local/var/run/named/session.key': Permission denied +30-Jul-2017 16:11:24.131 could not create /opt/local/var/run/named/session.key +30-Jul-2017 16:11:24.131 failed to generate session key for dynamic DNS: permission denied +30-Jul-2017 16:11:24.131 sizing zone task pool based on 1 zones +30-Jul-2017 16:11:24.131 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +30-Jul-2017 16:11:24.133 set up managed keys zone for view _default, file 'managed-keys.bind' +30-Jul-2017 16:11:24.133 automatic empty zone: 10.IN-ADDR.ARPA +30-Jul-2017 16:11:24.133 automatic empty zone: 16.172.IN-ADDR.ARPA +30-Jul-2017 16:11:24.133 automatic empty zone: 17.172.IN-ADDR.ARPA +30-Jul-2017 16:11:24.133 automatic empty zone: 18.172.IN-ADDR.ARPA +30-Jul-2017 16:11:24.133 automatic empty zone: 19.172.IN-ADDR.ARPA +30-Jul-2017 16:11:24.133 automatic empty zone: 20.172.IN-ADDR.ARPA +30-Jul-2017 16:11:24.133 automatic empty zone: 21.172.IN-ADDR.ARPA +30-Jul-2017 16:11:24.133 automatic empty zone: 22.172.IN-ADDR.ARPA +30-Jul-2017 16:11:24.133 automatic empty zone: 23.172.IN-ADDR.ARPA +30-Jul-2017 16:11:24.133 automatic empty zone: 24.172.IN-ADDR.ARPA +30-Jul-2017 16:11:24.133 automatic empty zone: 25.172.IN-ADDR.ARPA +30-Jul-2017 16:11:24.133 automatic empty zone: 26.172.IN-ADDR.ARPA +30-Jul-2017 16:11:24.133 automatic empty zone: 27.172.IN-ADDR.ARPA +30-Jul-2017 16:11:24.133 automatic empty zone: 28.172.IN-ADDR.ARPA +30-Jul-2017 16:11:24.133 automatic empty zone: 29.172.IN-ADDR.ARPA +30-Jul-2017 16:11:24.133 automatic empty zone: 30.172.IN-ADDR.ARPA +30-Jul-2017 16:11:24.133 automatic empty zone: 31.172.IN-ADDR.ARPA +30-Jul-2017 16:11:24.133 automatic empty zone: 168.192.IN-ADDR.ARPA +30-Jul-2017 16:11:24.133 automatic empty zone: 64.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.133 automatic empty zone: 65.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.133 automatic empty zone: 66.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.133 automatic empty zone: 67.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.133 automatic empty zone: 68.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.133 automatic empty zone: 69.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.133 automatic empty zone: 70.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.133 automatic empty zone: 71.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.133 automatic empty zone: 72.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.133 automatic empty zone: 73.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.133 automatic empty zone: 74.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.133 automatic empty zone: 75.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.133 automatic empty zone: 76.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.133 automatic empty zone: 77.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.133 automatic empty zone: 78.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.133 automatic empty zone: 79.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.133 automatic empty zone: 80.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.133 automatic empty zone: 81.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 82.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 83.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 84.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 85.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 86.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 87.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 88.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 89.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 90.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 91.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 92.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 93.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 94.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 95.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 96.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 97.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 98.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 99.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 100.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 101.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 102.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 103.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 104.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 105.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 106.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 107.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 108.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 109.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 110.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 111.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 112.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 113.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 114.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 115.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 116.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 117.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 118.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 119.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 120.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 121.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 122.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 123.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 124.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 125.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 126.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 127.100.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 0.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 127.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 254.169.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 2.0.192.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 100.51.198.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 113.0.203.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: D.F.IP6.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 8.E.F.IP6.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 9.E.F.IP6.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: A.E.F.IP6.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: B.E.F.IP6.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +30-Jul-2017 16:11:24.134 automatic empty zone: EMPTY.AS112.ARPA +30-Jul-2017 16:11:24.134 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +30-Jul-2017 16:11:24.137 configuring command channel from '/opt/local/etc/rndc.key' +30-Jul-2017 16:11:24.137 couldn't add command channel 127.0.0.1#953: file not found +30-Jul-2017 16:11:24.137 configuring command channel from '/opt/local/etc/rndc.key' +30-Jul-2017 16:11:24.137 couldn't add command channel ::1#953: file not found +30-Jul-2017 16:11:24.137 not using config file logging statement for logging due to -g option +30-Jul-2017 16:11:24.137 managed-keys-zone: loaded serial 0 +30-Jul-2017 16:11:24.171 zone local/IN: loaded serial 2 +30-Jul-2017 16:11:24.171 all zones loaded +30-Jul-2017 16:11:24.172 running +30-Jul-2017 16:11:24.327 shutting down +30-Jul-2017 16:11:24.327 no longer listening on 127.0.0.1#5400 +30-Jul-2017 16:11:24.419 exiting +=== Log Marked @ 2017-07-30 16:21:49 +1200 [4458] === +30-Jul-2017 16:21:49.354 starting BIND 9.11.1 +30-Jul-2017 16:21:49.354 running on Darwin x86_64 16.7.0 Darwin Kernel Version 16.7.0: Thu Jun 15 17:36:27 PDT 2017; root:xnu-3789.70.16~2/RELEASE_X86_64 +30-Jul-2017 16:21:49.354 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +30-Jul-2017 16:21:49.354 running as: named -c named.conf -f -p 5400 -g +30-Jul-2017 16:21:49.354 ---------------------------------------------------- +30-Jul-2017 16:21:49.354 BIND 9 is maintained by Internet Systems Consortium, +30-Jul-2017 16:21:49.354 Inc. (ISC), a non-profit 501(c)(3) public-benefit +30-Jul-2017 16:21:49.354 corporation. Support and training for BIND 9 are +30-Jul-2017 16:21:49.354 available at https://www.isc.org/support +30-Jul-2017 16:21:49.354 ---------------------------------------------------- +30-Jul-2017 16:21:49.354 found 8 CPUs, using 8 worker threads +30-Jul-2017 16:21:49.354 using 7 UDP listeners per interface +30-Jul-2017 16:21:49.354 using up to 4096 sockets +30-Jul-2017 16:21:49.359 loading configuration from '/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +30-Jul-2017 16:21:49.359 /Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +30-Jul-2017 16:21:49.359 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +30-Jul-2017 16:21:49.359 set maximum open files to 18446744073709551615: invalid file +30-Jul-2017 16:21:49.359 using default UDP/IPv4 port range: [49152, 65535] +30-Jul-2017 16:21:49.359 using default UDP/IPv6 port range: [49152, 65535] +30-Jul-2017 16:21:49.360 listening on IPv4 interface lo0, 127.0.0.1#5400 +30-Jul-2017 16:21:49.362 generating session key for dynamic DNS +30-Jul-2017 16:21:49.362 could not open file '/opt/local/var/run/named/session.key': Permission denied +30-Jul-2017 16:21:49.362 could not create /opt/local/var/run/named/session.key +30-Jul-2017 16:21:49.362 failed to generate session key for dynamic DNS: permission denied +30-Jul-2017 16:21:49.362 sizing zone task pool based on 1 zones +30-Jul-2017 16:21:49.362 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +30-Jul-2017 16:21:49.365 set up managed keys zone for view _default, file 'managed-keys.bind' +30-Jul-2017 16:21:49.365 automatic empty zone: 10.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 16.172.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 17.172.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 18.172.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 19.172.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 20.172.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 21.172.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 22.172.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 23.172.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 24.172.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 25.172.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 26.172.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 27.172.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 28.172.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 29.172.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 30.172.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 31.172.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 168.192.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 64.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 65.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 66.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 67.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 68.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 69.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 70.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 71.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 72.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 73.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 74.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 75.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 76.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 77.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 78.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 79.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 80.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 81.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 82.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 83.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 84.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 85.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 86.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 87.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 88.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 89.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 90.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 91.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 92.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 93.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 94.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 95.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 96.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 97.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 98.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 99.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 100.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 101.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 102.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 103.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 104.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 105.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 106.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 107.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 108.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 109.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 110.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 111.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 112.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 113.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 114.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 115.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 116.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 117.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 118.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 119.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 120.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 121.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 122.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 123.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.365 automatic empty zone: 124.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.366 automatic empty zone: 125.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.366 automatic empty zone: 126.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.366 automatic empty zone: 127.100.IN-ADDR.ARPA +30-Jul-2017 16:21:49.366 automatic empty zone: 0.IN-ADDR.ARPA +30-Jul-2017 16:21:49.366 automatic empty zone: 127.IN-ADDR.ARPA +30-Jul-2017 16:21:49.366 automatic empty zone: 254.169.IN-ADDR.ARPA +30-Jul-2017 16:21:49.366 automatic empty zone: 2.0.192.IN-ADDR.ARPA +30-Jul-2017 16:21:49.366 automatic empty zone: 100.51.198.IN-ADDR.ARPA +30-Jul-2017 16:21:49.366 automatic empty zone: 113.0.203.IN-ADDR.ARPA +30-Jul-2017 16:21:49.366 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +30-Jul-2017 16:21:49.366 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +30-Jul-2017 16:21:49.366 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +30-Jul-2017 16:21:49.366 automatic empty zone: D.F.IP6.ARPA +30-Jul-2017 16:21:49.366 automatic empty zone: 8.E.F.IP6.ARPA +30-Jul-2017 16:21:49.366 automatic empty zone: 9.E.F.IP6.ARPA +30-Jul-2017 16:21:49.366 automatic empty zone: A.E.F.IP6.ARPA +30-Jul-2017 16:21:49.366 automatic empty zone: B.E.F.IP6.ARPA +30-Jul-2017 16:21:49.366 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +30-Jul-2017 16:21:49.366 automatic empty zone: EMPTY.AS112.ARPA +30-Jul-2017 16:21:49.366 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +30-Jul-2017 16:21:49.368 configuring command channel from '/opt/local/etc/rndc.key' +30-Jul-2017 16:21:49.368 couldn't add command channel 127.0.0.1#953: file not found +30-Jul-2017 16:21:49.368 configuring command channel from '/opt/local/etc/rndc.key' +30-Jul-2017 16:21:49.368 couldn't add command channel ::1#953: file not found +30-Jul-2017 16:21:49.368 not using config file logging statement for logging due to -g option +30-Jul-2017 16:21:49.369 managed-keys-zone: loaded serial 0 +30-Jul-2017 16:21:49.405 zone local/IN: loaded serial 2 +30-Jul-2017 16:21:49.405 all zones loaded +30-Jul-2017 16:21:49.406 running +30-Jul-2017 16:21:55.400 shutting down +30-Jul-2017 16:21:55.401 no longer listening on 127.0.0.1#5400 +30-Jul-2017 16:21:55.507 exiting +=== Log Marked @ 2018-02-07 17:01:37 +1300 [26523] === +07-Feb-2018 17:01:37.198 starting BIND 9.11.2 +07-Feb-2018 17:01:37.198 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +07-Feb-2018 17:01:37.198 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +07-Feb-2018 17:01:37.198 running as: named -c named.conf -f -p 5400 -g +07-Feb-2018 17:01:37.198 ---------------------------------------------------- +07-Feb-2018 17:01:37.198 BIND 9 is maintained by Internet Systems Consortium, +07-Feb-2018 17:01:37.198 Inc. (ISC), a non-profit 501(c)(3) public-benefit +07-Feb-2018 17:01:37.198 corporation. Support and training for BIND 9 are +07-Feb-2018 17:01:37.198 available at https://www.isc.org/support +07-Feb-2018 17:01:37.198 ---------------------------------------------------- +07-Feb-2018 17:01:37.198 found 8 CPUs, using 8 worker threads +07-Feb-2018 17:01:37.198 using 7 UDP listeners per interface +07-Feb-2018 17:01:37.199 using up to 4096 sockets +07-Feb-2018 17:01:37.214 ./config.c: option 'lmdb-mapsize' was not enabled at compile time (ignored) +07-Feb-2018 17:01:37.214 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +07-Feb-2018 17:01:37.214 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +07-Feb-2018 17:01:37.215 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +07-Feb-2018 17:01:37.216 using default UDP/IPv4 port range: [49152, 65535] +07-Feb-2018 17:01:37.216 using default UDP/IPv6 port range: [49152, 65535] +07-Feb-2018 17:01:37.217 listening on IPv4 interface lo0, 127.0.0.1#5400 +07-Feb-2018 17:01:37.221 generating session key for dynamic DNS +07-Feb-2018 17:01:37.223 could not open file '/opt/local/var/run/named/session.key': Permission denied +07-Feb-2018 17:01:37.223 could not create /opt/local/var/run/named/session.key +07-Feb-2018 17:01:37.223 failed to generate session key for dynamic DNS: permission denied +07-Feb-2018 17:01:37.224 sizing zone task pool based on 1 zones +07-Feb-2018 17:01:37.226 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +07-Feb-2018 17:01:37.233 set up managed keys zone for view _default, file 'managed-keys.bind' +07-Feb-2018 17:01:37.233 automatic empty zone: 10.IN-ADDR.ARPA +07-Feb-2018 17:01:37.233 automatic empty zone: 16.172.IN-ADDR.ARPA +07-Feb-2018 17:01:37.233 automatic empty zone: 17.172.IN-ADDR.ARPA +07-Feb-2018 17:01:37.233 automatic empty zone: 18.172.IN-ADDR.ARPA +07-Feb-2018 17:01:37.233 automatic empty zone: 19.172.IN-ADDR.ARPA +07-Feb-2018 17:01:37.233 automatic empty zone: 20.172.IN-ADDR.ARPA +07-Feb-2018 17:01:37.233 automatic empty zone: 21.172.IN-ADDR.ARPA +07-Feb-2018 17:01:37.233 automatic empty zone: 22.172.IN-ADDR.ARPA +07-Feb-2018 17:01:37.233 automatic empty zone: 23.172.IN-ADDR.ARPA +07-Feb-2018 17:01:37.233 automatic empty zone: 24.172.IN-ADDR.ARPA +07-Feb-2018 17:01:37.233 automatic empty zone: 25.172.IN-ADDR.ARPA +07-Feb-2018 17:01:37.233 automatic empty zone: 26.172.IN-ADDR.ARPA +07-Feb-2018 17:01:37.233 automatic empty zone: 27.172.IN-ADDR.ARPA +07-Feb-2018 17:01:37.233 automatic empty zone: 28.172.IN-ADDR.ARPA +07-Feb-2018 17:01:37.233 automatic empty zone: 29.172.IN-ADDR.ARPA +07-Feb-2018 17:01:37.233 automatic empty zone: 30.172.IN-ADDR.ARPA +07-Feb-2018 17:01:37.233 automatic empty zone: 31.172.IN-ADDR.ARPA +07-Feb-2018 17:01:37.233 automatic empty zone: 168.192.IN-ADDR.ARPA +07-Feb-2018 17:01:37.233 automatic empty zone: 64.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.233 automatic empty zone: 65.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.233 automatic empty zone: 66.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.233 automatic empty zone: 67.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.233 automatic empty zone: 68.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.233 automatic empty zone: 69.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.233 automatic empty zone: 70.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.233 automatic empty zone: 71.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.233 automatic empty zone: 72.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.233 automatic empty zone: 73.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.233 automatic empty zone: 74.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.233 automatic empty zone: 75.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.233 automatic empty zone: 76.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.233 automatic empty zone: 77.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.233 automatic empty zone: 78.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.233 automatic empty zone: 79.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.233 automatic empty zone: 80.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 81.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 82.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 83.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 84.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 85.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 86.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 87.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 88.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 89.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 90.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 91.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 92.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 93.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 94.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 95.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 96.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 97.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 98.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 99.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 100.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 101.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 102.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 103.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 104.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 105.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 106.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 107.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 108.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 109.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 110.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 111.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 112.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 113.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 114.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 115.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 116.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 117.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 118.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 119.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.234 automatic empty zone: 120.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.235 automatic empty zone: 121.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.235 automatic empty zone: 122.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.235 automatic empty zone: 123.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.235 automatic empty zone: 124.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.235 automatic empty zone: 125.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.235 automatic empty zone: 126.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.235 automatic empty zone: 127.100.IN-ADDR.ARPA +07-Feb-2018 17:01:37.235 automatic empty zone: 0.IN-ADDR.ARPA +07-Feb-2018 17:01:37.235 automatic empty zone: 127.IN-ADDR.ARPA +07-Feb-2018 17:01:37.235 automatic empty zone: 254.169.IN-ADDR.ARPA +07-Feb-2018 17:01:37.235 automatic empty zone: 2.0.192.IN-ADDR.ARPA +07-Feb-2018 17:01:37.235 automatic empty zone: 100.51.198.IN-ADDR.ARPA +07-Feb-2018 17:01:37.235 automatic empty zone: 113.0.203.IN-ADDR.ARPA +07-Feb-2018 17:01:37.235 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +07-Feb-2018 17:01:37.235 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +07-Feb-2018 17:01:37.235 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +07-Feb-2018 17:01:37.235 automatic empty zone: D.F.IP6.ARPA +07-Feb-2018 17:01:37.235 automatic empty zone: 8.E.F.IP6.ARPA +07-Feb-2018 17:01:37.235 automatic empty zone: 9.E.F.IP6.ARPA +07-Feb-2018 17:01:37.235 automatic empty zone: A.E.F.IP6.ARPA +07-Feb-2018 17:01:37.235 automatic empty zone: B.E.F.IP6.ARPA +07-Feb-2018 17:01:37.235 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +07-Feb-2018 17:01:37.235 automatic empty zone: EMPTY.AS112.ARPA +07-Feb-2018 17:01:37.235 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +07-Feb-2018 17:01:37.239 configuring command channel from '/opt/local/etc/rndc.key' +07-Feb-2018 17:01:37.239 couldn't add command channel 127.0.0.1#953: file not found +07-Feb-2018 17:01:37.239 configuring command channel from '/opt/local/etc/rndc.key' +07-Feb-2018 17:01:37.239 couldn't add command channel ::1#953: file not found +07-Feb-2018 17:01:37.239 not using config file logging statement for logging due to -g option +07-Feb-2018 17:01:37.239 managed-keys-zone: loaded serial 0 +07-Feb-2018 17:01:37.276 zone local/IN: loaded serial 2 +07-Feb-2018 17:01:37.276 all zones loaded +07-Feb-2018 17:01:37.276 running +07-Feb-2018 17:01:42.631 shutting down +07-Feb-2018 17:01:42.631 no longer listening on 127.0.0.1#5400 +07-Feb-2018 17:01:42.767 exiting +=== Log Marked @ 2018-02-07 17:02:35 +1300 [26549] === +07-Feb-2018 17:02:35.913 starting BIND 9.11.2 +07-Feb-2018 17:02:35.913 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +07-Feb-2018 17:02:35.913 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +07-Feb-2018 17:02:35.913 running as: named -c named.conf -f -p 5400 -g +07-Feb-2018 17:02:35.913 ---------------------------------------------------- +07-Feb-2018 17:02:35.913 BIND 9 is maintained by Internet Systems Consortium, +07-Feb-2018 17:02:35.913 Inc. (ISC), a non-profit 501(c)(3) public-benefit +07-Feb-2018 17:02:35.913 corporation. Support and training for BIND 9 are +07-Feb-2018 17:02:35.913 available at https://www.isc.org/support +07-Feb-2018 17:02:35.913 ---------------------------------------------------- +07-Feb-2018 17:02:35.913 found 8 CPUs, using 8 worker threads +07-Feb-2018 17:02:35.913 using 7 UDP listeners per interface +07-Feb-2018 17:02:35.913 using up to 4096 sockets +07-Feb-2018 17:02:35.918 ./config.c: option 'lmdb-mapsize' was not enabled at compile time (ignored) +07-Feb-2018 17:02:35.918 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +07-Feb-2018 17:02:35.918 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +07-Feb-2018 17:02:35.918 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +07-Feb-2018 17:02:35.918 using default UDP/IPv4 port range: [49152, 65535] +07-Feb-2018 17:02:35.918 using default UDP/IPv6 port range: [49152, 65535] +07-Feb-2018 17:02:35.919 listening on IPv4 interface lo0, 127.0.0.1#5400 +07-Feb-2018 17:02:35.922 generating session key for dynamic DNS +07-Feb-2018 17:02:35.923 could not open file '/opt/local/var/run/named/session.key': Permission denied +07-Feb-2018 17:02:35.923 could not create /opt/local/var/run/named/session.key +07-Feb-2018 17:02:35.923 failed to generate session key for dynamic DNS: permission denied +07-Feb-2018 17:02:35.923 sizing zone task pool based on 1 zones +07-Feb-2018 17:02:35.923 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +07-Feb-2018 17:02:35.927 set up managed keys zone for view _default, file 'managed-keys.bind' +07-Feb-2018 17:02:35.927 automatic empty zone: 10.IN-ADDR.ARPA +07-Feb-2018 17:02:35.927 automatic empty zone: 16.172.IN-ADDR.ARPA +07-Feb-2018 17:02:35.927 automatic empty zone: 17.172.IN-ADDR.ARPA +07-Feb-2018 17:02:35.927 automatic empty zone: 18.172.IN-ADDR.ARPA +07-Feb-2018 17:02:35.927 automatic empty zone: 19.172.IN-ADDR.ARPA +07-Feb-2018 17:02:35.927 automatic empty zone: 20.172.IN-ADDR.ARPA +07-Feb-2018 17:02:35.927 automatic empty zone: 21.172.IN-ADDR.ARPA +07-Feb-2018 17:02:35.928 automatic empty zone: 22.172.IN-ADDR.ARPA +07-Feb-2018 17:02:35.928 automatic empty zone: 23.172.IN-ADDR.ARPA +07-Feb-2018 17:02:35.928 automatic empty zone: 24.172.IN-ADDR.ARPA +07-Feb-2018 17:02:35.928 automatic empty zone: 25.172.IN-ADDR.ARPA +07-Feb-2018 17:02:35.928 automatic empty zone: 26.172.IN-ADDR.ARPA +07-Feb-2018 17:02:35.928 automatic empty zone: 27.172.IN-ADDR.ARPA +07-Feb-2018 17:02:35.928 automatic empty zone: 28.172.IN-ADDR.ARPA +07-Feb-2018 17:02:35.928 automatic empty zone: 29.172.IN-ADDR.ARPA +07-Feb-2018 17:02:35.928 automatic empty zone: 30.172.IN-ADDR.ARPA +07-Feb-2018 17:02:35.928 automatic empty zone: 31.172.IN-ADDR.ARPA +07-Feb-2018 17:02:35.928 automatic empty zone: 168.192.IN-ADDR.ARPA +07-Feb-2018 17:02:35.928 automatic empty zone: 64.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.928 automatic empty zone: 65.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.928 automatic empty zone: 66.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.928 automatic empty zone: 67.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.928 automatic empty zone: 68.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.928 automatic empty zone: 69.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.928 automatic empty zone: 70.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.928 automatic empty zone: 71.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.928 automatic empty zone: 72.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.928 automatic empty zone: 73.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.928 automatic empty zone: 74.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.928 automatic empty zone: 75.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.928 automatic empty zone: 76.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.928 automatic empty zone: 77.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.928 automatic empty zone: 78.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.928 automatic empty zone: 79.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.928 automatic empty zone: 80.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.928 automatic empty zone: 81.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.928 automatic empty zone: 82.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.928 automatic empty zone: 83.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.928 automatic empty zone: 84.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.928 automatic empty zone: 85.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.928 automatic empty zone: 86.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.929 automatic empty zone: 87.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.929 automatic empty zone: 88.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.929 automatic empty zone: 89.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.929 automatic empty zone: 90.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.929 automatic empty zone: 91.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.929 automatic empty zone: 92.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.929 automatic empty zone: 93.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.929 automatic empty zone: 94.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.929 automatic empty zone: 95.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.929 automatic empty zone: 96.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.929 automatic empty zone: 97.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.929 automatic empty zone: 98.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.929 automatic empty zone: 99.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.929 automatic empty zone: 100.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.929 automatic empty zone: 101.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.929 automatic empty zone: 102.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.929 automatic empty zone: 103.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.929 automatic empty zone: 104.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.929 automatic empty zone: 105.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.929 automatic empty zone: 106.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.929 automatic empty zone: 107.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.929 automatic empty zone: 108.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.929 automatic empty zone: 109.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.929 automatic empty zone: 110.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.929 automatic empty zone: 111.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.929 automatic empty zone: 112.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.929 automatic empty zone: 113.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.929 automatic empty zone: 114.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.929 automatic empty zone: 115.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.929 automatic empty zone: 116.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.929 automatic empty zone: 117.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.929 automatic empty zone: 118.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.929 automatic empty zone: 119.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.929 automatic empty zone: 120.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.930 automatic empty zone: 121.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.930 automatic empty zone: 122.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.930 automatic empty zone: 123.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.930 automatic empty zone: 124.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.930 automatic empty zone: 125.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.930 automatic empty zone: 126.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.930 automatic empty zone: 127.100.IN-ADDR.ARPA +07-Feb-2018 17:02:35.930 automatic empty zone: 0.IN-ADDR.ARPA +07-Feb-2018 17:02:35.930 automatic empty zone: 127.IN-ADDR.ARPA +07-Feb-2018 17:02:35.930 automatic empty zone: 254.169.IN-ADDR.ARPA +07-Feb-2018 17:02:35.930 automatic empty zone: 2.0.192.IN-ADDR.ARPA +07-Feb-2018 17:02:35.930 automatic empty zone: 100.51.198.IN-ADDR.ARPA +07-Feb-2018 17:02:35.930 automatic empty zone: 113.0.203.IN-ADDR.ARPA +07-Feb-2018 17:02:35.930 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +07-Feb-2018 17:02:35.930 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +07-Feb-2018 17:02:35.930 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +07-Feb-2018 17:02:35.930 automatic empty zone: D.F.IP6.ARPA +07-Feb-2018 17:02:35.930 automatic empty zone: 8.E.F.IP6.ARPA +07-Feb-2018 17:02:35.930 automatic empty zone: 9.E.F.IP6.ARPA +07-Feb-2018 17:02:35.930 automatic empty zone: A.E.F.IP6.ARPA +07-Feb-2018 17:02:35.930 automatic empty zone: B.E.F.IP6.ARPA +07-Feb-2018 17:02:35.930 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +07-Feb-2018 17:02:35.930 automatic empty zone: EMPTY.AS112.ARPA +07-Feb-2018 17:02:35.930 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +07-Feb-2018 17:02:35.934 configuring command channel from '/opt/local/etc/rndc.key' +07-Feb-2018 17:02:35.934 couldn't add command channel 127.0.0.1#953: file not found +07-Feb-2018 17:02:35.934 configuring command channel from '/opt/local/etc/rndc.key' +07-Feb-2018 17:02:35.934 couldn't add command channel ::1#953: file not found +07-Feb-2018 17:02:35.934 not using config file logging statement for logging due to -g option +07-Feb-2018 17:02:35.934 managed-keys-zone: loaded serial 0 +07-Feb-2018 17:02:35.993 zone local/IN: loaded serial 2 +07-Feb-2018 17:02:35.993 all zones loaded +07-Feb-2018 17:02:35.993 running +07-Feb-2018 17:02:41.402 shutting down +07-Feb-2018 17:02:41.403 no longer listening on 127.0.0.1#5400 +07-Feb-2018 17:02:41.546 exiting +=== Log Marked @ 2018-02-07 17:21:12 +1300 [27020] === +07-Feb-2018 17:21:12.847 starting BIND 9.11.2 +07-Feb-2018 17:21:12.847 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +07-Feb-2018 17:21:12.847 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +07-Feb-2018 17:21:12.848 running as: named -c named.conf -f -p 5400 -g +07-Feb-2018 17:21:12.848 ---------------------------------------------------- +07-Feb-2018 17:21:12.848 BIND 9 is maintained by Internet Systems Consortium, +07-Feb-2018 17:21:12.848 Inc. (ISC), a non-profit 501(c)(3) public-benefit +07-Feb-2018 17:21:12.848 corporation. Support and training for BIND 9 are +07-Feb-2018 17:21:12.848 available at https://www.isc.org/support +07-Feb-2018 17:21:12.848 ---------------------------------------------------- +07-Feb-2018 17:21:12.848 found 8 CPUs, using 8 worker threads +07-Feb-2018 17:21:12.848 using 7 UDP listeners per interface +07-Feb-2018 17:21:12.848 using up to 4096 sockets +07-Feb-2018 17:21:12.852 ./config.c: option 'lmdb-mapsize' was not enabled at compile time (ignored) +07-Feb-2018 17:21:12.852 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +07-Feb-2018 17:21:12.852 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +07-Feb-2018 17:21:12.853 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +07-Feb-2018 17:21:12.853 using default UDP/IPv4 port range: [49152, 65535] +07-Feb-2018 17:21:12.853 using default UDP/IPv6 port range: [49152, 65535] +07-Feb-2018 17:21:12.853 listening on IPv4 interface lo0, 127.0.0.1#5400 +07-Feb-2018 17:21:12.856 generating session key for dynamic DNS +07-Feb-2018 17:21:12.856 could not open file '/opt/local/var/run/named/session.key': Permission denied +07-Feb-2018 17:21:12.856 could not create /opt/local/var/run/named/session.key +07-Feb-2018 17:21:12.856 failed to generate session key for dynamic DNS: permission denied +07-Feb-2018 17:21:12.856 sizing zone task pool based on 1 zones +07-Feb-2018 17:21:12.856 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +07-Feb-2018 17:21:12.859 set up managed keys zone for view _default, file 'managed-keys.bind' +07-Feb-2018 17:21:12.859 automatic empty zone: 10.IN-ADDR.ARPA +07-Feb-2018 17:21:12.859 automatic empty zone: 16.172.IN-ADDR.ARPA +07-Feb-2018 17:21:12.859 automatic empty zone: 17.172.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 18.172.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 19.172.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 20.172.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 21.172.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 22.172.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 23.172.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 24.172.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 25.172.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 26.172.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 27.172.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 28.172.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 29.172.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 30.172.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 31.172.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 168.192.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 64.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 65.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 66.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 67.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 68.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 69.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 70.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 71.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 72.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 73.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 74.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 75.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 76.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 77.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 78.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 79.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 80.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 81.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 82.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 83.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 84.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 85.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 86.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 87.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 88.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 89.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 90.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 91.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 92.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 93.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 94.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.860 automatic empty zone: 95.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 96.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 97.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 98.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 99.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 100.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 101.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 102.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 103.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 104.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 105.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 106.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 107.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 108.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 109.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 110.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 111.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 112.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 113.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 114.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 115.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 116.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 117.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 118.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 119.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 120.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 121.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 122.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 123.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 124.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 125.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 126.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 127.100.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 0.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 127.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 254.169.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 2.0.192.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 100.51.198.IN-ADDR.ARPA +07-Feb-2018 17:21:12.861 automatic empty zone: 113.0.203.IN-ADDR.ARPA +07-Feb-2018 17:21:12.862 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +07-Feb-2018 17:21:12.862 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +07-Feb-2018 17:21:12.862 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +07-Feb-2018 17:21:12.862 automatic empty zone: D.F.IP6.ARPA +07-Feb-2018 17:21:12.862 automatic empty zone: 8.E.F.IP6.ARPA +07-Feb-2018 17:21:12.862 automatic empty zone: 9.E.F.IP6.ARPA +07-Feb-2018 17:21:12.862 automatic empty zone: A.E.F.IP6.ARPA +07-Feb-2018 17:21:12.862 automatic empty zone: B.E.F.IP6.ARPA +07-Feb-2018 17:21:12.862 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +07-Feb-2018 17:21:12.862 automatic empty zone: EMPTY.AS112.ARPA +07-Feb-2018 17:21:12.862 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +07-Feb-2018 17:21:12.865 configuring command channel from '/opt/local/etc/rndc.key' +07-Feb-2018 17:21:12.865 couldn't add command channel 127.0.0.1#953: file not found +07-Feb-2018 17:21:12.865 configuring command channel from '/opt/local/etc/rndc.key' +07-Feb-2018 17:21:12.865 couldn't add command channel ::1#953: file not found +07-Feb-2018 17:21:12.865 not using config file logging statement for logging due to -g option +07-Feb-2018 17:21:12.866 managed-keys-zone: loaded serial 0 +07-Feb-2018 17:21:12.898 zone local/IN: loaded serial 2 +07-Feb-2018 17:21:12.898 all zones loaded +07-Feb-2018 17:21:12.898 running +07-Feb-2018 17:21:17.164 shutting down +07-Feb-2018 17:21:17.165 no longer listening on 127.0.0.1#5400 +07-Feb-2018 17:21:17.274 exiting +=== Log Marked @ 2018-02-07 19:31:56 +1300 [27948] === +07-Feb-2018 19:31:56.343 starting BIND 9.11.2 +07-Feb-2018 19:31:56.344 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +07-Feb-2018 19:31:56.344 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +07-Feb-2018 19:31:56.344 running as: named -c named.conf -f -p 5400 -g +07-Feb-2018 19:31:56.344 ---------------------------------------------------- +07-Feb-2018 19:31:56.344 BIND 9 is maintained by Internet Systems Consortium, +07-Feb-2018 19:31:56.344 Inc. (ISC), a non-profit 501(c)(3) public-benefit +07-Feb-2018 19:31:56.344 corporation. Support and training for BIND 9 are +07-Feb-2018 19:31:56.344 available at https://www.isc.org/support +07-Feb-2018 19:31:56.344 ---------------------------------------------------- +07-Feb-2018 19:31:56.344 found 8 CPUs, using 8 worker threads +07-Feb-2018 19:31:56.344 using 7 UDP listeners per interface +07-Feb-2018 19:31:56.344 using up to 4096 sockets +07-Feb-2018 19:31:56.359 ./config.c: option 'lmdb-mapsize' was not enabled at compile time (ignored) +07-Feb-2018 19:31:56.359 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +07-Feb-2018 19:31:56.360 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +07-Feb-2018 19:31:56.360 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +07-Feb-2018 19:31:56.361 using default UDP/IPv4 port range: [49152, 65535] +07-Feb-2018 19:31:56.361 using default UDP/IPv6 port range: [49152, 65535] +07-Feb-2018 19:31:56.362 listening on IPv4 interface lo0, 127.0.0.1#5400 +07-Feb-2018 19:31:56.364 generating session key for dynamic DNS +07-Feb-2018 19:31:56.366 could not open file '/opt/local/var/run/named/session.key': Permission denied +07-Feb-2018 19:31:56.366 could not create /opt/local/var/run/named/session.key +07-Feb-2018 19:31:56.366 failed to generate session key for dynamic DNS: permission denied +07-Feb-2018 19:31:56.367 sizing zone task pool based on 1 zones +07-Feb-2018 19:31:56.370 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +07-Feb-2018 19:31:56.374 set up managed keys zone for view _default, file 'managed-keys.bind' +07-Feb-2018 19:31:56.375 automatic empty zone: 10.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 16.172.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 17.172.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 18.172.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 19.172.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 20.172.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 21.172.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 22.172.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 23.172.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 24.172.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 25.172.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 26.172.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 27.172.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 28.172.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 29.172.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 30.172.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 31.172.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 168.192.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 64.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 65.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 66.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 67.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 68.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 69.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 70.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 71.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 72.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 73.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 74.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 75.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 76.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 77.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 78.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 79.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 80.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 81.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 82.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.375 automatic empty zone: 83.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 84.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 85.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 86.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 87.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 88.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 89.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 90.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 91.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 92.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 93.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 94.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 95.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 96.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 97.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 98.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 99.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 100.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 101.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 102.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 103.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 104.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 105.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 106.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 107.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 108.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 109.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 110.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 111.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 112.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 113.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 114.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 115.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 116.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 117.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 118.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 119.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 120.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 121.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 122.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 123.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 124.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 125.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 126.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 127.100.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 0.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 127.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 254.169.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 2.0.192.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 100.51.198.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 113.0.203.IN-ADDR.ARPA +07-Feb-2018 19:31:56.376 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +07-Feb-2018 19:31:56.377 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +07-Feb-2018 19:31:56.377 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +07-Feb-2018 19:31:56.377 automatic empty zone: D.F.IP6.ARPA +07-Feb-2018 19:31:56.377 automatic empty zone: 8.E.F.IP6.ARPA +07-Feb-2018 19:31:56.377 automatic empty zone: 9.E.F.IP6.ARPA +07-Feb-2018 19:31:56.377 automatic empty zone: A.E.F.IP6.ARPA +07-Feb-2018 19:31:56.377 automatic empty zone: B.E.F.IP6.ARPA +07-Feb-2018 19:31:56.377 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +07-Feb-2018 19:31:56.377 automatic empty zone: EMPTY.AS112.ARPA +07-Feb-2018 19:31:56.377 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +07-Feb-2018 19:31:56.380 configuring command channel from '/opt/local/etc/rndc.key' +07-Feb-2018 19:31:56.380 couldn't add command channel 127.0.0.1#953: file not found +07-Feb-2018 19:31:56.380 configuring command channel from '/opt/local/etc/rndc.key' +07-Feb-2018 19:31:56.380 couldn't add command channel ::1#953: file not found +07-Feb-2018 19:31:56.380 not using config file logging statement for logging due to -g option +07-Feb-2018 19:31:56.381 managed-keys-zone: loaded serial 0 +07-Feb-2018 19:31:56.413 zone local/IN: loaded serial 2 +07-Feb-2018 19:31:56.413 all zones loaded +07-Feb-2018 19:31:56.414 running +07-Feb-2018 19:32:01.171 shutting down +07-Feb-2018 19:32:01.171 no longer listening on 127.0.0.1#5400 +07-Feb-2018 19:32:01.279 exiting +=== Log Marked @ 2018-02-07 20:03:01 +1300 [28156] === +07-Feb-2018 20:03:01.614 starting BIND 9.11.2 +07-Feb-2018 20:03:01.615 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +07-Feb-2018 20:03:01.615 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +07-Feb-2018 20:03:01.615 running as: named -c named.conf -f -p 5400 -g +07-Feb-2018 20:03:01.615 ---------------------------------------------------- +07-Feb-2018 20:03:01.615 BIND 9 is maintained by Internet Systems Consortium, +07-Feb-2018 20:03:01.615 Inc. (ISC), a non-profit 501(c)(3) public-benefit +07-Feb-2018 20:03:01.615 corporation. Support and training for BIND 9 are +07-Feb-2018 20:03:01.615 available at https://www.isc.org/support +07-Feb-2018 20:03:01.615 ---------------------------------------------------- +07-Feb-2018 20:03:01.615 found 8 CPUs, using 8 worker threads +07-Feb-2018 20:03:01.615 using 7 UDP listeners per interface +07-Feb-2018 20:03:01.615 using up to 4096 sockets +07-Feb-2018 20:03:01.620 ./config.c: option 'lmdb-mapsize' was not enabled at compile time (ignored) +07-Feb-2018 20:03:01.620 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +07-Feb-2018 20:03:01.620 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +07-Feb-2018 20:03:01.621 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +07-Feb-2018 20:03:01.622 using default UDP/IPv4 port range: [49152, 65535] +07-Feb-2018 20:03:01.622 using default UDP/IPv6 port range: [49152, 65535] +07-Feb-2018 20:03:01.623 listening on IPv4 interface lo0, 127.0.0.1#5400 +07-Feb-2018 20:03:01.625 generating session key for dynamic DNS +07-Feb-2018 20:03:01.625 could not open file '/opt/local/var/run/named/session.key': Permission denied +07-Feb-2018 20:03:01.625 could not create /opt/local/var/run/named/session.key +07-Feb-2018 20:03:01.625 failed to generate session key for dynamic DNS: permission denied +07-Feb-2018 20:03:01.625 sizing zone task pool based on 1 zones +07-Feb-2018 20:03:01.626 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +07-Feb-2018 20:03:01.628 set up managed keys zone for view _default, file 'managed-keys.bind' +07-Feb-2018 20:03:01.629 automatic empty zone: 10.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 16.172.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 17.172.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 18.172.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 19.172.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 20.172.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 21.172.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 22.172.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 23.172.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 24.172.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 25.172.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 26.172.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 27.172.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 28.172.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 29.172.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 30.172.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 31.172.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 168.192.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 64.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 65.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 66.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 67.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 68.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 69.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 70.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 71.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 72.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 73.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 74.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 75.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 76.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 77.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 78.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 79.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 80.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 81.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 82.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 83.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 84.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 85.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 86.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 87.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 88.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 89.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 90.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.629 automatic empty zone: 91.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 92.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 93.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 94.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 95.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 96.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 97.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 98.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 99.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 100.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 101.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 102.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 103.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 104.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 105.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 106.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 107.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 108.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 109.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 110.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 111.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 112.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 113.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 114.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 115.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 116.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 117.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 118.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 119.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 120.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 121.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 122.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 123.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 124.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 125.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 126.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 127.100.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 0.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 127.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 254.169.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 2.0.192.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 100.51.198.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 113.0.203.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: D.F.IP6.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 8.E.F.IP6.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 9.E.F.IP6.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: A.E.F.IP6.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: B.E.F.IP6.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +07-Feb-2018 20:03:01.630 automatic empty zone: EMPTY.AS112.ARPA +07-Feb-2018 20:03:01.631 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +07-Feb-2018 20:03:01.633 configuring command channel from '/opt/local/etc/rndc.key' +07-Feb-2018 20:03:01.633 couldn't add command channel 127.0.0.1#953: file not found +07-Feb-2018 20:03:01.633 configuring command channel from '/opt/local/etc/rndc.key' +07-Feb-2018 20:03:01.633 couldn't add command channel ::1#953: file not found +07-Feb-2018 20:03:01.634 not using config file logging statement for logging due to -g option +07-Feb-2018 20:03:01.634 managed-keys-zone: loaded serial 0 +07-Feb-2018 20:03:01.671 zone local/IN: loaded serial 2 +07-Feb-2018 20:03:01.671 all zones loaded +07-Feb-2018 20:03:01.672 running +07-Feb-2018 20:03:06.635 shutting down +07-Feb-2018 20:03:06.635 no longer listening on 127.0.0.1#5400 +07-Feb-2018 20:03:06.762 exiting +=== Log Marked @ 2018-02-07 20:09:55 +1300 [28238] === +07-Feb-2018 20:09:55.896 starting BIND 9.11.2 +07-Feb-2018 20:09:55.896 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +07-Feb-2018 20:09:55.896 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +07-Feb-2018 20:09:55.896 running as: named -c named.conf -f -p 5400 -g +07-Feb-2018 20:09:55.896 ---------------------------------------------------- +07-Feb-2018 20:09:55.896 BIND 9 is maintained by Internet Systems Consortium, +07-Feb-2018 20:09:55.896 Inc. (ISC), a non-profit 501(c)(3) public-benefit +07-Feb-2018 20:09:55.896 corporation. Support and training for BIND 9 are +07-Feb-2018 20:09:55.896 available at https://www.isc.org/support +07-Feb-2018 20:09:55.896 ---------------------------------------------------- +07-Feb-2018 20:09:55.896 found 8 CPUs, using 8 worker threads +07-Feb-2018 20:09:55.896 using 7 UDP listeners per interface +07-Feb-2018 20:09:55.896 using up to 4096 sockets +07-Feb-2018 20:09:55.901 ./config.c: option 'lmdb-mapsize' was not enabled at compile time (ignored) +07-Feb-2018 20:09:55.901 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +07-Feb-2018 20:09:55.901 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +07-Feb-2018 20:09:55.901 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +07-Feb-2018 20:09:55.901 using default UDP/IPv4 port range: [49152, 65535] +07-Feb-2018 20:09:55.901 using default UDP/IPv6 port range: [49152, 65535] +07-Feb-2018 20:09:55.902 listening on IPv4 interface lo0, 127.0.0.1#5400 +07-Feb-2018 20:09:55.904 generating session key for dynamic DNS +07-Feb-2018 20:09:55.905 could not open file '/opt/local/var/run/named/session.key': Permission denied +07-Feb-2018 20:09:55.905 could not create /opt/local/var/run/named/session.key +07-Feb-2018 20:09:55.905 failed to generate session key for dynamic DNS: permission denied +07-Feb-2018 20:09:55.905 sizing zone task pool based on 1 zones +07-Feb-2018 20:09:55.905 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +07-Feb-2018 20:09:55.908 set up managed keys zone for view _default, file 'managed-keys.bind' +07-Feb-2018 20:09:55.908 automatic empty zone: 10.IN-ADDR.ARPA +07-Feb-2018 20:09:55.908 automatic empty zone: 16.172.IN-ADDR.ARPA +07-Feb-2018 20:09:55.908 automatic empty zone: 17.172.IN-ADDR.ARPA +07-Feb-2018 20:09:55.908 automatic empty zone: 18.172.IN-ADDR.ARPA +07-Feb-2018 20:09:55.908 automatic empty zone: 19.172.IN-ADDR.ARPA +07-Feb-2018 20:09:55.908 automatic empty zone: 20.172.IN-ADDR.ARPA +07-Feb-2018 20:09:55.908 automatic empty zone: 21.172.IN-ADDR.ARPA +07-Feb-2018 20:09:55.908 automatic empty zone: 22.172.IN-ADDR.ARPA +07-Feb-2018 20:09:55.908 automatic empty zone: 23.172.IN-ADDR.ARPA +07-Feb-2018 20:09:55.908 automatic empty zone: 24.172.IN-ADDR.ARPA +07-Feb-2018 20:09:55.908 automatic empty zone: 25.172.IN-ADDR.ARPA +07-Feb-2018 20:09:55.908 automatic empty zone: 26.172.IN-ADDR.ARPA +07-Feb-2018 20:09:55.908 automatic empty zone: 27.172.IN-ADDR.ARPA +07-Feb-2018 20:09:55.908 automatic empty zone: 28.172.IN-ADDR.ARPA +07-Feb-2018 20:09:55.908 automatic empty zone: 29.172.IN-ADDR.ARPA +07-Feb-2018 20:09:55.908 automatic empty zone: 30.172.IN-ADDR.ARPA +07-Feb-2018 20:09:55.908 automatic empty zone: 31.172.IN-ADDR.ARPA +07-Feb-2018 20:09:55.908 automatic empty zone: 168.192.IN-ADDR.ARPA +07-Feb-2018 20:09:55.908 automatic empty zone: 64.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.908 automatic empty zone: 65.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.908 automatic empty zone: 66.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.908 automatic empty zone: 67.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.908 automatic empty zone: 68.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.908 automatic empty zone: 69.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.908 automatic empty zone: 70.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.908 automatic empty zone: 71.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.908 automatic empty zone: 72.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.908 automatic empty zone: 73.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.908 automatic empty zone: 74.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 75.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 76.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 77.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 78.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 79.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 80.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 81.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 82.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 83.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 84.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 85.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 86.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 87.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 88.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 89.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 90.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 91.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 92.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 93.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 94.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 95.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 96.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 97.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 98.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 99.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 100.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 101.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 102.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 103.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 104.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 105.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 106.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 107.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 108.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 109.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 110.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 111.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 112.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 113.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 114.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 115.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 116.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 117.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 118.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 119.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 120.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 121.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 122.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 123.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.909 automatic empty zone: 124.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.910 automatic empty zone: 125.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.910 automatic empty zone: 126.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.910 automatic empty zone: 127.100.IN-ADDR.ARPA +07-Feb-2018 20:09:55.910 automatic empty zone: 0.IN-ADDR.ARPA +07-Feb-2018 20:09:55.910 automatic empty zone: 127.IN-ADDR.ARPA +07-Feb-2018 20:09:55.910 automatic empty zone: 254.169.IN-ADDR.ARPA +07-Feb-2018 20:09:55.910 automatic empty zone: 2.0.192.IN-ADDR.ARPA +07-Feb-2018 20:09:55.910 automatic empty zone: 100.51.198.IN-ADDR.ARPA +07-Feb-2018 20:09:55.910 automatic empty zone: 113.0.203.IN-ADDR.ARPA +07-Feb-2018 20:09:55.910 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +07-Feb-2018 20:09:55.910 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +07-Feb-2018 20:09:55.910 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +07-Feb-2018 20:09:55.910 automatic empty zone: D.F.IP6.ARPA +07-Feb-2018 20:09:55.910 automatic empty zone: 8.E.F.IP6.ARPA +07-Feb-2018 20:09:55.910 automatic empty zone: 9.E.F.IP6.ARPA +07-Feb-2018 20:09:55.910 automatic empty zone: A.E.F.IP6.ARPA +07-Feb-2018 20:09:55.910 automatic empty zone: B.E.F.IP6.ARPA +07-Feb-2018 20:09:55.910 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +07-Feb-2018 20:09:55.910 automatic empty zone: EMPTY.AS112.ARPA +07-Feb-2018 20:09:55.910 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +07-Feb-2018 20:09:55.913 configuring command channel from '/opt/local/etc/rndc.key' +07-Feb-2018 20:09:55.913 couldn't add command channel 127.0.0.1#953: file not found +07-Feb-2018 20:09:55.913 configuring command channel from '/opt/local/etc/rndc.key' +07-Feb-2018 20:09:55.913 couldn't add command channel ::1#953: file not found +07-Feb-2018 20:09:55.913 not using config file logging statement for logging due to -g option +07-Feb-2018 20:09:55.913 managed-keys-zone: loaded serial 0 +07-Feb-2018 20:09:55.944 zone local/IN: loaded serial 2 +07-Feb-2018 20:09:55.944 all zones loaded +07-Feb-2018 20:09:55.944 running +07-Feb-2018 20:10:00.367 shutting down +07-Feb-2018 20:10:00.368 no longer listening on 127.0.0.1#5400 +07-Feb-2018 20:10:00.475 exiting +=== Log Marked @ 2018-02-07 20:11:09 +1300 [28272] === +07-Feb-2018 20:11:09.767 starting BIND 9.11.2 +07-Feb-2018 20:11:09.768 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +07-Feb-2018 20:11:09.768 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +07-Feb-2018 20:11:09.768 running as: named -c named.conf -f -p 5400 -g +07-Feb-2018 20:11:09.768 ---------------------------------------------------- +07-Feb-2018 20:11:09.768 BIND 9 is maintained by Internet Systems Consortium, +07-Feb-2018 20:11:09.768 Inc. (ISC), a non-profit 501(c)(3) public-benefit +07-Feb-2018 20:11:09.768 corporation. Support and training for BIND 9 are +07-Feb-2018 20:11:09.768 available at https://www.isc.org/support +07-Feb-2018 20:11:09.768 ---------------------------------------------------- +07-Feb-2018 20:11:09.768 found 8 CPUs, using 8 worker threads +07-Feb-2018 20:11:09.768 using 7 UDP listeners per interface +07-Feb-2018 20:11:09.768 using up to 4096 sockets +07-Feb-2018 20:11:09.772 ./config.c: option 'lmdb-mapsize' was not enabled at compile time (ignored) +07-Feb-2018 20:11:09.773 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +07-Feb-2018 20:11:09.773 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +07-Feb-2018 20:11:09.773 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +07-Feb-2018 20:11:09.773 using default UDP/IPv4 port range: [49152, 65535] +07-Feb-2018 20:11:09.773 using default UDP/IPv6 port range: [49152, 65535] +07-Feb-2018 20:11:09.774 listening on IPv4 interface lo0, 127.0.0.1#5400 +07-Feb-2018 20:11:09.776 generating session key for dynamic DNS +07-Feb-2018 20:11:09.776 could not open file '/opt/local/var/run/named/session.key': Permission denied +07-Feb-2018 20:11:09.776 could not create /opt/local/var/run/named/session.key +07-Feb-2018 20:11:09.776 failed to generate session key for dynamic DNS: permission denied +07-Feb-2018 20:11:09.777 sizing zone task pool based on 1 zones +07-Feb-2018 20:11:09.777 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +07-Feb-2018 20:11:09.780 set up managed keys zone for view _default, file 'managed-keys.bind' +07-Feb-2018 20:11:09.780 automatic empty zone: 10.IN-ADDR.ARPA +07-Feb-2018 20:11:09.780 automatic empty zone: 16.172.IN-ADDR.ARPA +07-Feb-2018 20:11:09.780 automatic empty zone: 17.172.IN-ADDR.ARPA +07-Feb-2018 20:11:09.780 automatic empty zone: 18.172.IN-ADDR.ARPA +07-Feb-2018 20:11:09.780 automatic empty zone: 19.172.IN-ADDR.ARPA +07-Feb-2018 20:11:09.780 automatic empty zone: 20.172.IN-ADDR.ARPA +07-Feb-2018 20:11:09.780 automatic empty zone: 21.172.IN-ADDR.ARPA +07-Feb-2018 20:11:09.780 automatic empty zone: 22.172.IN-ADDR.ARPA +07-Feb-2018 20:11:09.780 automatic empty zone: 23.172.IN-ADDR.ARPA +07-Feb-2018 20:11:09.780 automatic empty zone: 24.172.IN-ADDR.ARPA +07-Feb-2018 20:11:09.780 automatic empty zone: 25.172.IN-ADDR.ARPA +07-Feb-2018 20:11:09.780 automatic empty zone: 26.172.IN-ADDR.ARPA +07-Feb-2018 20:11:09.780 automatic empty zone: 27.172.IN-ADDR.ARPA +07-Feb-2018 20:11:09.780 automatic empty zone: 28.172.IN-ADDR.ARPA +07-Feb-2018 20:11:09.780 automatic empty zone: 29.172.IN-ADDR.ARPA +07-Feb-2018 20:11:09.780 automatic empty zone: 30.172.IN-ADDR.ARPA +07-Feb-2018 20:11:09.781 automatic empty zone: 31.172.IN-ADDR.ARPA +07-Feb-2018 20:11:09.781 automatic empty zone: 168.192.IN-ADDR.ARPA +07-Feb-2018 20:11:09.781 automatic empty zone: 64.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.781 automatic empty zone: 65.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.781 automatic empty zone: 66.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.781 automatic empty zone: 67.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.781 automatic empty zone: 68.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.781 automatic empty zone: 69.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.781 automatic empty zone: 70.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.781 automatic empty zone: 71.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.781 automatic empty zone: 72.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.781 automatic empty zone: 73.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.781 automatic empty zone: 74.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.781 automatic empty zone: 75.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.781 automatic empty zone: 76.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.781 automatic empty zone: 77.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.781 automatic empty zone: 78.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.781 automatic empty zone: 79.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.781 automatic empty zone: 80.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.781 automatic empty zone: 81.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.781 automatic empty zone: 82.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.781 automatic empty zone: 83.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.781 automatic empty zone: 84.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.781 automatic empty zone: 85.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.781 automatic empty zone: 86.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.781 automatic empty zone: 87.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.781 automatic empty zone: 88.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.782 automatic empty zone: 89.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.782 automatic empty zone: 90.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.782 automatic empty zone: 91.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.782 automatic empty zone: 92.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.782 automatic empty zone: 93.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.782 automatic empty zone: 94.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.782 automatic empty zone: 95.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.782 automatic empty zone: 96.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.782 automatic empty zone: 97.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.782 automatic empty zone: 98.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.782 automatic empty zone: 99.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.782 automatic empty zone: 100.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.782 automatic empty zone: 101.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.782 automatic empty zone: 102.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.782 automatic empty zone: 103.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.782 automatic empty zone: 104.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.782 automatic empty zone: 105.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.782 automatic empty zone: 106.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.782 automatic empty zone: 107.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.782 automatic empty zone: 108.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.782 automatic empty zone: 109.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.782 automatic empty zone: 110.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.782 automatic empty zone: 111.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.782 automatic empty zone: 112.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.782 automatic empty zone: 113.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.782 automatic empty zone: 114.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.782 automatic empty zone: 115.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.782 automatic empty zone: 116.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.782 automatic empty zone: 117.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.782 automatic empty zone: 118.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.782 automatic empty zone: 119.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.782 automatic empty zone: 120.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.782 automatic empty zone: 121.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.782 automatic empty zone: 122.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.782 automatic empty zone: 123.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.783 automatic empty zone: 124.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.783 automatic empty zone: 125.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.783 automatic empty zone: 126.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.783 automatic empty zone: 127.100.IN-ADDR.ARPA +07-Feb-2018 20:11:09.783 automatic empty zone: 0.IN-ADDR.ARPA +07-Feb-2018 20:11:09.783 automatic empty zone: 127.IN-ADDR.ARPA +07-Feb-2018 20:11:09.783 automatic empty zone: 254.169.IN-ADDR.ARPA +07-Feb-2018 20:11:09.783 automatic empty zone: 2.0.192.IN-ADDR.ARPA +07-Feb-2018 20:11:09.783 automatic empty zone: 100.51.198.IN-ADDR.ARPA +07-Feb-2018 20:11:09.783 automatic empty zone: 113.0.203.IN-ADDR.ARPA +07-Feb-2018 20:11:09.783 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +07-Feb-2018 20:11:09.783 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +07-Feb-2018 20:11:09.783 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +07-Feb-2018 20:11:09.783 automatic empty zone: D.F.IP6.ARPA +07-Feb-2018 20:11:09.783 automatic empty zone: 8.E.F.IP6.ARPA +07-Feb-2018 20:11:09.783 automatic empty zone: 9.E.F.IP6.ARPA +07-Feb-2018 20:11:09.783 automatic empty zone: A.E.F.IP6.ARPA +07-Feb-2018 20:11:09.783 automatic empty zone: B.E.F.IP6.ARPA +07-Feb-2018 20:11:09.783 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +07-Feb-2018 20:11:09.783 automatic empty zone: EMPTY.AS112.ARPA +07-Feb-2018 20:11:09.783 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +07-Feb-2018 20:11:09.787 configuring command channel from '/opt/local/etc/rndc.key' +07-Feb-2018 20:11:09.787 couldn't add command channel 127.0.0.1#953: file not found +07-Feb-2018 20:11:09.787 configuring command channel from '/opt/local/etc/rndc.key' +07-Feb-2018 20:11:09.787 couldn't add command channel ::1#953: file not found +07-Feb-2018 20:11:09.787 not using config file logging statement for logging due to -g option +07-Feb-2018 20:11:09.787 managed-keys-zone: loaded serial 0 +07-Feb-2018 20:11:09.825 zone local/IN: loaded serial 2 +07-Feb-2018 20:11:09.825 all zones loaded +07-Feb-2018 20:11:09.825 running +07-Feb-2018 20:11:14.549 shutting down +07-Feb-2018 20:11:14.550 no longer listening on 127.0.0.1#5400 +07-Feb-2018 20:11:14.689 exiting +=== Log Marked @ 2018-02-07 20:18:18 +1300 [28352] === +07-Feb-2018 20:18:18.478 starting BIND 9.11.2 +07-Feb-2018 20:18:18.478 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +07-Feb-2018 20:18:18.478 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +07-Feb-2018 20:18:18.478 running as: named -c named.conf -f -p 5400 -g +07-Feb-2018 20:18:18.478 ---------------------------------------------------- +07-Feb-2018 20:18:18.478 BIND 9 is maintained by Internet Systems Consortium, +07-Feb-2018 20:18:18.478 Inc. (ISC), a non-profit 501(c)(3) public-benefit +07-Feb-2018 20:18:18.478 corporation. Support and training for BIND 9 are +07-Feb-2018 20:18:18.478 available at https://www.isc.org/support +07-Feb-2018 20:18:18.478 ---------------------------------------------------- +07-Feb-2018 20:18:18.478 found 8 CPUs, using 8 worker threads +07-Feb-2018 20:18:18.478 using 7 UDP listeners per interface +07-Feb-2018 20:18:18.479 using up to 4096 sockets +07-Feb-2018 20:18:18.483 ./config.c: option 'lmdb-mapsize' was not enabled at compile time (ignored) +07-Feb-2018 20:18:18.483 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +07-Feb-2018 20:18:18.483 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +07-Feb-2018 20:18:18.484 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +07-Feb-2018 20:18:18.484 using default UDP/IPv4 port range: [49152, 65535] +07-Feb-2018 20:18:18.484 using default UDP/IPv6 port range: [49152, 65535] +07-Feb-2018 20:18:18.485 listening on IPv4 interface lo0, 127.0.0.1#5400 +07-Feb-2018 20:18:18.489 generating session key for dynamic DNS +07-Feb-2018 20:18:18.489 could not open file '/opt/local/var/run/named/session.key': Permission denied +07-Feb-2018 20:18:18.489 could not create /opt/local/var/run/named/session.key +07-Feb-2018 20:18:18.489 failed to generate session key for dynamic DNS: permission denied +07-Feb-2018 20:18:18.489 sizing zone task pool based on 1 zones +07-Feb-2018 20:18:18.489 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +07-Feb-2018 20:18:18.494 set up managed keys zone for view _default, file 'managed-keys.bind' +07-Feb-2018 20:18:18.494 automatic empty zone: 10.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 16.172.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 17.172.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 18.172.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 19.172.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 20.172.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 21.172.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 22.172.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 23.172.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 24.172.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 25.172.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 26.172.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 27.172.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 28.172.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 29.172.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 30.172.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 31.172.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 168.192.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 64.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 65.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 66.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 67.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 68.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 69.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 70.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 71.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 72.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 73.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 74.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 75.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 76.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 77.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 78.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 79.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 80.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 81.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 82.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 83.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 84.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 85.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 86.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 87.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 88.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 89.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 90.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.494 automatic empty zone: 91.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.495 automatic empty zone: 92.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.495 automatic empty zone: 93.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.495 automatic empty zone: 94.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.495 automatic empty zone: 95.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.495 automatic empty zone: 96.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.495 automatic empty zone: 97.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.495 automatic empty zone: 98.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.495 automatic empty zone: 99.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.495 automatic empty zone: 100.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.495 automatic empty zone: 101.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.495 automatic empty zone: 102.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.495 automatic empty zone: 103.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.495 automatic empty zone: 104.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.495 automatic empty zone: 105.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.495 automatic empty zone: 106.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.495 automatic empty zone: 107.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.495 automatic empty zone: 108.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.495 automatic empty zone: 109.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.495 automatic empty zone: 110.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.495 automatic empty zone: 111.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.496 automatic empty zone: 112.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.496 automatic empty zone: 113.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.496 automatic empty zone: 114.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.496 automatic empty zone: 115.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.496 automatic empty zone: 116.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.496 automatic empty zone: 117.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.496 automatic empty zone: 118.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.496 automatic empty zone: 119.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.496 automatic empty zone: 120.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.496 automatic empty zone: 121.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.496 automatic empty zone: 122.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.496 automatic empty zone: 123.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.496 automatic empty zone: 124.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.496 automatic empty zone: 125.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.496 automatic empty zone: 126.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.496 automatic empty zone: 127.100.IN-ADDR.ARPA +07-Feb-2018 20:18:18.496 automatic empty zone: 0.IN-ADDR.ARPA +07-Feb-2018 20:18:18.496 automatic empty zone: 127.IN-ADDR.ARPA +07-Feb-2018 20:18:18.496 automatic empty zone: 254.169.IN-ADDR.ARPA +07-Feb-2018 20:18:18.496 automatic empty zone: 2.0.192.IN-ADDR.ARPA +07-Feb-2018 20:18:18.496 automatic empty zone: 100.51.198.IN-ADDR.ARPA +07-Feb-2018 20:18:18.496 automatic empty zone: 113.0.203.IN-ADDR.ARPA +07-Feb-2018 20:18:18.496 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +07-Feb-2018 20:18:18.496 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +07-Feb-2018 20:18:18.496 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +07-Feb-2018 20:18:18.496 automatic empty zone: D.F.IP6.ARPA +07-Feb-2018 20:18:18.496 automatic empty zone: 8.E.F.IP6.ARPA +07-Feb-2018 20:18:18.496 automatic empty zone: 9.E.F.IP6.ARPA +07-Feb-2018 20:18:18.496 automatic empty zone: A.E.F.IP6.ARPA +07-Feb-2018 20:18:18.496 automatic empty zone: B.E.F.IP6.ARPA +07-Feb-2018 20:18:18.496 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +07-Feb-2018 20:18:18.496 automatic empty zone: EMPTY.AS112.ARPA +07-Feb-2018 20:18:18.497 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +07-Feb-2018 20:18:18.501 configuring command channel from '/opt/local/etc/rndc.key' +07-Feb-2018 20:18:18.501 couldn't add command channel 127.0.0.1#953: file not found +07-Feb-2018 20:18:18.501 configuring command channel from '/opt/local/etc/rndc.key' +07-Feb-2018 20:18:18.501 couldn't add command channel ::1#953: file not found +07-Feb-2018 20:18:18.501 not using config file logging statement for logging due to -g option +07-Feb-2018 20:18:18.501 managed-keys-zone: loaded serial 0 +07-Feb-2018 20:18:18.543 zone local/IN: loaded serial 2 +07-Feb-2018 20:18:18.550 all zones loaded +07-Feb-2018 20:18:18.550 running +07-Feb-2018 20:18:23.167 shutting down +07-Feb-2018 20:18:23.167 no longer listening on 127.0.0.1#5400 +07-Feb-2018 20:18:23.333 exiting +=== Log Marked @ 2018-02-07 20:29:16 +1300 [28697] === +07-Feb-2018 20:29:16.836 starting BIND 9.11.2 +07-Feb-2018 20:29:16.837 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +07-Feb-2018 20:29:16.837 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +07-Feb-2018 20:29:16.837 running as: named -c named.conf -f -p 5400 -g +07-Feb-2018 20:29:16.837 ---------------------------------------------------- +07-Feb-2018 20:29:16.837 BIND 9 is maintained by Internet Systems Consortium, +07-Feb-2018 20:29:16.837 Inc. (ISC), a non-profit 501(c)(3) public-benefit +07-Feb-2018 20:29:16.837 corporation. Support and training for BIND 9 are +07-Feb-2018 20:29:16.837 available at https://www.isc.org/support +07-Feb-2018 20:29:16.837 ---------------------------------------------------- +07-Feb-2018 20:29:16.837 found 8 CPUs, using 8 worker threads +07-Feb-2018 20:29:16.837 using 7 UDP listeners per interface +07-Feb-2018 20:29:16.837 using up to 4096 sockets +07-Feb-2018 20:29:16.852 ./config.c: option 'lmdb-mapsize' was not enabled at compile time (ignored) +07-Feb-2018 20:29:16.853 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +07-Feb-2018 20:29:16.853 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +07-Feb-2018 20:29:16.853 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +07-Feb-2018 20:29:16.854 using default UDP/IPv4 port range: [49152, 65535] +07-Feb-2018 20:29:16.854 using default UDP/IPv6 port range: [49152, 65535] +07-Feb-2018 20:29:16.855 listening on IPv4 interface lo0, 127.0.0.1#5400 +07-Feb-2018 20:29:16.857 generating session key for dynamic DNS +07-Feb-2018 20:29:16.858 could not open file '/opt/local/var/run/named/session.key': Permission denied +07-Feb-2018 20:29:16.858 could not create /opt/local/var/run/named/session.key +07-Feb-2018 20:29:16.858 failed to generate session key for dynamic DNS: permission denied +07-Feb-2018 20:29:16.858 sizing zone task pool based on 1 zones +07-Feb-2018 20:29:16.859 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +07-Feb-2018 20:29:16.863 set up managed keys zone for view _default, file 'managed-keys.bind' +07-Feb-2018 20:29:16.863 automatic empty zone: 10.IN-ADDR.ARPA +07-Feb-2018 20:29:16.863 automatic empty zone: 16.172.IN-ADDR.ARPA +07-Feb-2018 20:29:16.863 automatic empty zone: 17.172.IN-ADDR.ARPA +07-Feb-2018 20:29:16.863 automatic empty zone: 18.172.IN-ADDR.ARPA +07-Feb-2018 20:29:16.863 automatic empty zone: 19.172.IN-ADDR.ARPA +07-Feb-2018 20:29:16.863 automatic empty zone: 20.172.IN-ADDR.ARPA +07-Feb-2018 20:29:16.863 automatic empty zone: 21.172.IN-ADDR.ARPA +07-Feb-2018 20:29:16.863 automatic empty zone: 22.172.IN-ADDR.ARPA +07-Feb-2018 20:29:16.863 automatic empty zone: 23.172.IN-ADDR.ARPA +07-Feb-2018 20:29:16.863 automatic empty zone: 24.172.IN-ADDR.ARPA +07-Feb-2018 20:29:16.863 automatic empty zone: 25.172.IN-ADDR.ARPA +07-Feb-2018 20:29:16.863 automatic empty zone: 26.172.IN-ADDR.ARPA +07-Feb-2018 20:29:16.863 automatic empty zone: 27.172.IN-ADDR.ARPA +07-Feb-2018 20:29:16.863 automatic empty zone: 28.172.IN-ADDR.ARPA +07-Feb-2018 20:29:16.863 automatic empty zone: 29.172.IN-ADDR.ARPA +07-Feb-2018 20:29:16.863 automatic empty zone: 30.172.IN-ADDR.ARPA +07-Feb-2018 20:29:16.863 automatic empty zone: 31.172.IN-ADDR.ARPA +07-Feb-2018 20:29:16.863 automatic empty zone: 168.192.IN-ADDR.ARPA +07-Feb-2018 20:29:16.863 automatic empty zone: 64.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.863 automatic empty zone: 65.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.863 automatic empty zone: 66.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.863 automatic empty zone: 67.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.863 automatic empty zone: 68.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.863 automatic empty zone: 69.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.863 automatic empty zone: 70.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.863 automatic empty zone: 71.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.863 automatic empty zone: 72.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.863 automatic empty zone: 73.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.863 automatic empty zone: 74.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.863 automatic empty zone: 75.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.863 automatic empty zone: 76.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.863 automatic empty zone: 77.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.863 automatic empty zone: 78.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.863 automatic empty zone: 79.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 80.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 81.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 82.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 83.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 84.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 85.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 86.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 87.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 88.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 89.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 90.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 91.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 92.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 93.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 94.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 95.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 96.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 97.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 98.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 99.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 100.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 101.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 102.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 103.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 104.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 105.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 106.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 107.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 108.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 109.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 110.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 111.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 112.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 113.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 114.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 115.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 116.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 117.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 118.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 119.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 120.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 121.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 122.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 123.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 124.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 125.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 126.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 127.100.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 0.IN-ADDR.ARPA +07-Feb-2018 20:29:16.864 automatic empty zone: 127.IN-ADDR.ARPA +07-Feb-2018 20:29:16.865 automatic empty zone: 254.169.IN-ADDR.ARPA +07-Feb-2018 20:29:16.865 automatic empty zone: 2.0.192.IN-ADDR.ARPA +07-Feb-2018 20:29:16.866 automatic empty zone: 100.51.198.IN-ADDR.ARPA +07-Feb-2018 20:29:16.866 automatic empty zone: 113.0.203.IN-ADDR.ARPA +07-Feb-2018 20:29:16.866 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +07-Feb-2018 20:29:16.866 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +07-Feb-2018 20:29:16.866 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +07-Feb-2018 20:29:16.866 automatic empty zone: D.F.IP6.ARPA +07-Feb-2018 20:29:16.866 automatic empty zone: 8.E.F.IP6.ARPA +07-Feb-2018 20:29:16.866 automatic empty zone: 9.E.F.IP6.ARPA +07-Feb-2018 20:29:16.866 automatic empty zone: A.E.F.IP6.ARPA +07-Feb-2018 20:29:16.866 automatic empty zone: B.E.F.IP6.ARPA +07-Feb-2018 20:29:16.866 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +07-Feb-2018 20:29:16.866 automatic empty zone: EMPTY.AS112.ARPA +07-Feb-2018 20:29:16.866 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +07-Feb-2018 20:29:16.869 configuring command channel from '/opt/local/etc/rndc.key' +07-Feb-2018 20:29:16.869 couldn't add command channel 127.0.0.1#953: file not found +07-Feb-2018 20:29:16.869 configuring command channel from '/opt/local/etc/rndc.key' +07-Feb-2018 20:29:16.869 couldn't add command channel ::1#953: file not found +07-Feb-2018 20:29:16.869 not using config file logging statement for logging due to -g option +07-Feb-2018 20:29:16.871 managed-keys-zone: loaded serial 0 +07-Feb-2018 20:29:16.902 zone local/IN: loaded serial 2 +07-Feb-2018 20:29:16.902 all zones loaded +07-Feb-2018 20:29:16.902 running +07-Feb-2018 20:29:21.890 shutting down +07-Feb-2018 20:29:21.890 no longer listening on 127.0.0.1#5400 +07-Feb-2018 20:29:21.964 exiting +=== Log Marked @ 2018-02-07 20:31:38 +1300 [28746] === +07-Feb-2018 20:31:38.716 starting BIND 9.11.2 +07-Feb-2018 20:31:38.717 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +07-Feb-2018 20:31:38.717 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +07-Feb-2018 20:31:38.717 running as: named -c named.conf -f -p 5400 -g +07-Feb-2018 20:31:38.717 ---------------------------------------------------- +07-Feb-2018 20:31:38.717 BIND 9 is maintained by Internet Systems Consortium, +07-Feb-2018 20:31:38.717 Inc. (ISC), a non-profit 501(c)(3) public-benefit +07-Feb-2018 20:31:38.717 corporation. Support and training for BIND 9 are +07-Feb-2018 20:31:38.717 available at https://www.isc.org/support +07-Feb-2018 20:31:38.717 ---------------------------------------------------- +07-Feb-2018 20:31:38.717 found 8 CPUs, using 8 worker threads +07-Feb-2018 20:31:38.717 using 7 UDP listeners per interface +07-Feb-2018 20:31:38.717 using up to 4096 sockets +07-Feb-2018 20:31:38.731 ./config.c: option 'lmdb-mapsize' was not enabled at compile time (ignored) +07-Feb-2018 20:31:38.731 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +07-Feb-2018 20:31:38.732 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +07-Feb-2018 20:31:38.732 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +07-Feb-2018 20:31:38.733 using default UDP/IPv4 port range: [49152, 65535] +07-Feb-2018 20:31:38.733 using default UDP/IPv6 port range: [49152, 65535] +07-Feb-2018 20:31:38.734 listening on IPv4 interface lo0, 127.0.0.1#5400 +07-Feb-2018 20:31:38.736 generating session key for dynamic DNS +07-Feb-2018 20:31:38.737 could not open file '/opt/local/var/run/named/session.key': Permission denied +07-Feb-2018 20:31:38.737 could not create /opt/local/var/run/named/session.key +07-Feb-2018 20:31:38.737 failed to generate session key for dynamic DNS: permission denied +07-Feb-2018 20:31:38.737 sizing zone task pool based on 1 zones +07-Feb-2018 20:31:38.738 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +07-Feb-2018 20:31:38.742 set up managed keys zone for view _default, file 'managed-keys.bind' +07-Feb-2018 20:31:38.742 automatic empty zone: 10.IN-ADDR.ARPA +07-Feb-2018 20:31:38.742 automatic empty zone: 16.172.IN-ADDR.ARPA +07-Feb-2018 20:31:38.742 automatic empty zone: 17.172.IN-ADDR.ARPA +07-Feb-2018 20:31:38.742 automatic empty zone: 18.172.IN-ADDR.ARPA +07-Feb-2018 20:31:38.742 automatic empty zone: 19.172.IN-ADDR.ARPA +07-Feb-2018 20:31:38.743 automatic empty zone: 20.172.IN-ADDR.ARPA +07-Feb-2018 20:31:38.743 automatic empty zone: 21.172.IN-ADDR.ARPA +07-Feb-2018 20:31:38.743 automatic empty zone: 22.172.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 23.172.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 24.172.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 25.172.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 26.172.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 27.172.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 28.172.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 29.172.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 30.172.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 31.172.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 168.192.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 64.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 65.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 66.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 67.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 68.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 69.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 70.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 71.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 72.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 73.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 74.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 75.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 76.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 77.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 78.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 79.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 80.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 81.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 82.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 83.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 84.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 85.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 86.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 87.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 88.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 89.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 90.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 91.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 92.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 93.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 94.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 95.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 96.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 97.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 98.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 99.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 100.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.744 automatic empty zone: 101.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 102.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 103.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 104.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 105.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 106.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 107.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 108.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 109.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 110.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 111.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 112.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 113.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 114.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 115.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 116.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 117.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 118.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 119.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 120.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 121.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 122.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 123.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 124.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 125.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 126.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 127.100.IN-ADDR.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 0.IN-ADDR.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 127.IN-ADDR.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 254.169.IN-ADDR.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 2.0.192.IN-ADDR.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 100.51.198.IN-ADDR.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 113.0.203.IN-ADDR.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: D.F.IP6.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 8.E.F.IP6.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 9.E.F.IP6.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: A.E.F.IP6.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: B.E.F.IP6.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +07-Feb-2018 20:31:38.745 automatic empty zone: EMPTY.AS112.ARPA +07-Feb-2018 20:31:38.746 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +07-Feb-2018 20:31:38.749 configuring command channel from '/opt/local/etc/rndc.key' +07-Feb-2018 20:31:38.749 couldn't add command channel 127.0.0.1#953: file not found +07-Feb-2018 20:31:38.749 configuring command channel from '/opt/local/etc/rndc.key' +07-Feb-2018 20:31:38.749 couldn't add command channel ::1#953: file not found +07-Feb-2018 20:31:38.749 not using config file logging statement for logging due to -g option +07-Feb-2018 20:31:38.750 managed-keys-zone: loaded serial 0 +07-Feb-2018 20:31:38.787 zone local/IN: loaded serial 2 +07-Feb-2018 20:31:38.787 all zones loaded +07-Feb-2018 20:31:38.787 running +07-Feb-2018 20:31:44.156 shutting down +07-Feb-2018 20:31:44.157 no longer listening on 127.0.0.1#5400 +07-Feb-2018 20:31:44.293 exiting +=== Log Marked @ 2018-02-07 20:49:45 +1300 [29076] === +07-Feb-2018 20:49:45.210 starting BIND 9.11.2 +07-Feb-2018 20:49:45.210 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +07-Feb-2018 20:49:45.210 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +07-Feb-2018 20:49:45.210 running as: named -c named.conf -f -p 5400 -g +07-Feb-2018 20:49:45.210 ---------------------------------------------------- +07-Feb-2018 20:49:45.210 BIND 9 is maintained by Internet Systems Consortium, +07-Feb-2018 20:49:45.210 Inc. (ISC), a non-profit 501(c)(3) public-benefit +07-Feb-2018 20:49:45.210 corporation. Support and training for BIND 9 are +07-Feb-2018 20:49:45.210 available at https://www.isc.org/support +07-Feb-2018 20:49:45.210 ---------------------------------------------------- +07-Feb-2018 20:49:45.210 found 8 CPUs, using 8 worker threads +07-Feb-2018 20:49:45.210 using 7 UDP listeners per interface +07-Feb-2018 20:49:45.211 using up to 4096 sockets +07-Feb-2018 20:49:45.224 ./config.c: option 'lmdb-mapsize' was not enabled at compile time (ignored) +07-Feb-2018 20:49:45.225 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +07-Feb-2018 20:49:45.225 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +07-Feb-2018 20:49:45.225 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +07-Feb-2018 20:49:45.226 using default UDP/IPv4 port range: [49152, 65535] +07-Feb-2018 20:49:45.226 using default UDP/IPv6 port range: [49152, 65535] +07-Feb-2018 20:49:45.227 listening on IPv4 interface lo0, 127.0.0.1#5400 +07-Feb-2018 20:49:45.230 generating session key for dynamic DNS +07-Feb-2018 20:49:45.230 could not open file '/opt/local/var/run/named/session.key': Permission denied +07-Feb-2018 20:49:45.230 could not create /opt/local/var/run/named/session.key +07-Feb-2018 20:49:45.230 failed to generate session key for dynamic DNS: permission denied +07-Feb-2018 20:49:45.230 sizing zone task pool based on 1 zones +07-Feb-2018 20:49:45.231 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +07-Feb-2018 20:49:45.235 set up managed keys zone for view _default, file 'managed-keys.bind' +07-Feb-2018 20:49:45.235 automatic empty zone: 10.IN-ADDR.ARPA +07-Feb-2018 20:49:45.235 automatic empty zone: 16.172.IN-ADDR.ARPA +07-Feb-2018 20:49:45.235 automatic empty zone: 17.172.IN-ADDR.ARPA +07-Feb-2018 20:49:45.235 automatic empty zone: 18.172.IN-ADDR.ARPA +07-Feb-2018 20:49:45.235 automatic empty zone: 19.172.IN-ADDR.ARPA +07-Feb-2018 20:49:45.235 automatic empty zone: 20.172.IN-ADDR.ARPA +07-Feb-2018 20:49:45.235 automatic empty zone: 21.172.IN-ADDR.ARPA +07-Feb-2018 20:49:45.235 automatic empty zone: 22.172.IN-ADDR.ARPA +07-Feb-2018 20:49:45.235 automatic empty zone: 23.172.IN-ADDR.ARPA +07-Feb-2018 20:49:45.235 automatic empty zone: 24.172.IN-ADDR.ARPA +07-Feb-2018 20:49:45.235 automatic empty zone: 25.172.IN-ADDR.ARPA +07-Feb-2018 20:49:45.235 automatic empty zone: 26.172.IN-ADDR.ARPA +07-Feb-2018 20:49:45.235 automatic empty zone: 27.172.IN-ADDR.ARPA +07-Feb-2018 20:49:45.235 automatic empty zone: 28.172.IN-ADDR.ARPA +07-Feb-2018 20:49:45.235 automatic empty zone: 29.172.IN-ADDR.ARPA +07-Feb-2018 20:49:45.235 automatic empty zone: 30.172.IN-ADDR.ARPA +07-Feb-2018 20:49:45.235 automatic empty zone: 31.172.IN-ADDR.ARPA +07-Feb-2018 20:49:45.235 automatic empty zone: 168.192.IN-ADDR.ARPA +07-Feb-2018 20:49:45.235 automatic empty zone: 64.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.235 automatic empty zone: 65.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.235 automatic empty zone: 66.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.235 automatic empty zone: 67.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.235 automatic empty zone: 68.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.235 automatic empty zone: 69.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.235 automatic empty zone: 70.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.235 automatic empty zone: 71.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.235 automatic empty zone: 72.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.235 automatic empty zone: 73.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.235 automatic empty zone: 74.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.235 automatic empty zone: 75.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.235 automatic empty zone: 76.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.235 automatic empty zone: 77.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.235 automatic empty zone: 78.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.235 automatic empty zone: 79.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.235 automatic empty zone: 80.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 81.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 82.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 83.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 84.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 85.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 86.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 87.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 88.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 89.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 90.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 91.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 92.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 93.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 94.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 95.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 96.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 97.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 98.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 99.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 100.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 101.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 102.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 103.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 104.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 105.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 106.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 107.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 108.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 109.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 110.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 111.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 112.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 113.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 114.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 115.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 116.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 117.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 118.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 119.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 120.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 121.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 122.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 123.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 124.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 125.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 126.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 127.100.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 0.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 127.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 254.169.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 2.0.192.IN-ADDR.ARPA +07-Feb-2018 20:49:45.236 automatic empty zone: 100.51.198.IN-ADDR.ARPA +07-Feb-2018 20:49:45.237 automatic empty zone: 113.0.203.IN-ADDR.ARPA +07-Feb-2018 20:49:45.237 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +07-Feb-2018 20:49:45.237 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +07-Feb-2018 20:49:45.237 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +07-Feb-2018 20:49:45.237 automatic empty zone: D.F.IP6.ARPA +07-Feb-2018 20:49:45.237 automatic empty zone: 8.E.F.IP6.ARPA +07-Feb-2018 20:49:45.237 automatic empty zone: 9.E.F.IP6.ARPA +07-Feb-2018 20:49:45.237 automatic empty zone: A.E.F.IP6.ARPA +07-Feb-2018 20:49:45.237 automatic empty zone: B.E.F.IP6.ARPA +07-Feb-2018 20:49:45.237 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +07-Feb-2018 20:49:45.237 automatic empty zone: EMPTY.AS112.ARPA +07-Feb-2018 20:49:45.237 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +07-Feb-2018 20:49:45.240 configuring command channel from '/opt/local/etc/rndc.key' +07-Feb-2018 20:49:45.240 couldn't add command channel 127.0.0.1#953: file not found +07-Feb-2018 20:49:45.240 configuring command channel from '/opt/local/etc/rndc.key' +07-Feb-2018 20:49:45.240 couldn't add command channel ::1#953: file not found +07-Feb-2018 20:49:45.240 not using config file logging statement for logging due to -g option +07-Feb-2018 20:49:45.241 managed-keys-zone: loaded serial 0 +07-Feb-2018 20:49:45.272 zone local/IN: loaded serial 2 +07-Feb-2018 20:49:45.272 all zones loaded +07-Feb-2018 20:49:45.272 running +07-Feb-2018 20:49:49.719 shutting down +07-Feb-2018 20:49:49.720 no longer listening on 127.0.0.1#5400 +07-Feb-2018 20:49:49.829 exiting +=== Log Marked @ 2018-03-15 03:28:12 +1300 [3552] === +15-Mar-2018 03:28:12.278 starting BIND 9.12.0 +15-Mar-2018 03:28:12.278 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +15-Mar-2018 03:28:12.278 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +15-Mar-2018 03:28:12.278 running as: named -c named.conf -f -p 5400 -g +15-Mar-2018 03:28:12.278 ---------------------------------------------------- +15-Mar-2018 03:28:12.278 BIND 9 is maintained by Internet Systems Consortium, +15-Mar-2018 03:28:12.278 Inc. (ISC), a non-profit 501(c)(3) public-benefit +15-Mar-2018 03:28:12.278 corporation. Support and training for BIND 9 are +15-Mar-2018 03:28:12.278 available at https://www.isc.org/support +15-Mar-2018 03:28:12.278 ---------------------------------------------------- +15-Mar-2018 03:28:12.279 found 8 CPUs, using 8 worker threads +15-Mar-2018 03:28:12.279 using 7 UDP listeners per interface +15-Mar-2018 03:28:12.280 using up to 4096 sockets +15-Mar-2018 03:28:12.299 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +15-Mar-2018 03:28:12.299 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +15-Mar-2018 03:28:12.303 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +15-Mar-2018 03:28:12.304 using default UDP/IPv4 port range: [49152, 65535] +15-Mar-2018 03:28:12.305 using default UDP/IPv6 port range: [49152, 65535] +15-Mar-2018 03:28:12.305 listening on IPv4 interface lo0, 127.0.0.1#5400 +15-Mar-2018 03:28:12.309 generating session key for dynamic DNS +15-Mar-2018 03:28:12.312 could not open file '/opt/local/var/run/named/session.key': Permission denied +15-Mar-2018 03:28:12.312 could not create /opt/local/var/run/named/session.key +15-Mar-2018 03:28:12.312 failed to generate session key for dynamic DNS: permission denied +15-Mar-2018 03:28:12.314 sizing zone task pool based on 1 zones +15-Mar-2018 03:28:12.315 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +15-Mar-2018 03:28:12.320 set up managed keys zone for view _default, file 'managed-keys.bind' +15-Mar-2018 03:28:12.320 automatic empty zone: 10.IN-ADDR.ARPA +15-Mar-2018 03:28:12.320 automatic empty zone: 16.172.IN-ADDR.ARPA +15-Mar-2018 03:28:12.320 automatic empty zone: 17.172.IN-ADDR.ARPA +15-Mar-2018 03:28:12.320 automatic empty zone: 18.172.IN-ADDR.ARPA +15-Mar-2018 03:28:12.320 automatic empty zone: 19.172.IN-ADDR.ARPA +15-Mar-2018 03:28:12.320 automatic empty zone: 20.172.IN-ADDR.ARPA +15-Mar-2018 03:28:12.320 automatic empty zone: 21.172.IN-ADDR.ARPA +15-Mar-2018 03:28:12.320 automatic empty zone: 22.172.IN-ADDR.ARPA +15-Mar-2018 03:28:12.320 automatic empty zone: 23.172.IN-ADDR.ARPA +15-Mar-2018 03:28:12.320 automatic empty zone: 24.172.IN-ADDR.ARPA +15-Mar-2018 03:28:12.320 automatic empty zone: 25.172.IN-ADDR.ARPA +15-Mar-2018 03:28:12.320 automatic empty zone: 26.172.IN-ADDR.ARPA +15-Mar-2018 03:28:12.320 automatic empty zone: 27.172.IN-ADDR.ARPA +15-Mar-2018 03:28:12.320 automatic empty zone: 28.172.IN-ADDR.ARPA +15-Mar-2018 03:28:12.320 automatic empty zone: 29.172.IN-ADDR.ARPA +15-Mar-2018 03:28:12.320 automatic empty zone: 30.172.IN-ADDR.ARPA +15-Mar-2018 03:28:12.320 automatic empty zone: 31.172.IN-ADDR.ARPA +15-Mar-2018 03:28:12.320 automatic empty zone: 168.192.IN-ADDR.ARPA +15-Mar-2018 03:28:12.320 automatic empty zone: 64.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 65.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 66.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 67.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 68.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 69.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 70.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 71.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 72.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 73.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 74.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 75.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 76.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 77.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 78.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 79.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 80.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 81.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 82.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 83.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 84.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 85.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 86.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 87.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 88.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 89.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 90.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 91.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 92.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 93.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 94.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 95.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 96.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 97.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 98.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 99.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 100.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 101.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 102.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 103.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 104.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.321 automatic empty zone: 105.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: 106.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: 107.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: 108.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: 109.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: 110.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: 111.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: 112.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: 113.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: 114.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: 115.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: 116.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: 117.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: 118.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: 119.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: 120.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: 121.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: 122.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: 123.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: 124.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: 125.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: 126.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: 127.100.IN-ADDR.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: 0.IN-ADDR.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: 127.IN-ADDR.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: 254.169.IN-ADDR.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: 2.0.192.IN-ADDR.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: 100.51.198.IN-ADDR.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: 113.0.203.IN-ADDR.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: D.F.IP6.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: 8.E.F.IP6.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: 9.E.F.IP6.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: A.E.F.IP6.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: B.E.F.IP6.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +15-Mar-2018 03:28:12.322 automatic empty zone: EMPTY.AS112.ARPA +15-Mar-2018 03:28:12.323 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +15-Mar-2018 03:28:12.327 configuring command channel from '/opt/local/etc/rndc.key' +15-Mar-2018 03:28:12.327 couldn't add command channel 127.0.0.1#953: file not found +15-Mar-2018 03:28:12.327 configuring command channel from '/opt/local/etc/rndc.key' +15-Mar-2018 03:28:12.327 couldn't add command channel ::1#953: file not found +15-Mar-2018 03:28:12.327 not using config file logging statement for logging due to -g option +15-Mar-2018 03:28:12.328 managed-keys-zone: loaded serial 0 +15-Mar-2018 03:28:12.359 zone local/IN: loaded serial 2 +15-Mar-2018 03:28:12.359 all zones loaded +15-Mar-2018 03:28:12.360 running +15-Mar-2018 03:28:12.379 shutting down +15-Mar-2018 03:28:12.379 no longer listening on 127.0.0.1#5400 +15-Mar-2018 03:28:12.465 exiting +=== Log Marked @ 2018-03-15 03:31:33 +1300 [3644] === +15-Mar-2018 03:31:33.861 starting BIND 9.12.0 +15-Mar-2018 03:31:33.861 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +15-Mar-2018 03:31:33.861 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +15-Mar-2018 03:31:33.861 running as: named -c named.conf -f -p 5400 -g +15-Mar-2018 03:31:33.862 ---------------------------------------------------- +15-Mar-2018 03:31:33.862 BIND 9 is maintained by Internet Systems Consortium, +15-Mar-2018 03:31:33.862 Inc. (ISC), a non-profit 501(c)(3) public-benefit +15-Mar-2018 03:31:33.862 corporation. Support and training for BIND 9 are +15-Mar-2018 03:31:33.862 available at https://www.isc.org/support +15-Mar-2018 03:31:33.862 ---------------------------------------------------- +15-Mar-2018 03:31:33.862 found 8 CPUs, using 8 worker threads +15-Mar-2018 03:31:33.862 using 7 UDP listeners per interface +15-Mar-2018 03:31:33.862 using up to 4096 sockets +15-Mar-2018 03:31:33.881 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +15-Mar-2018 03:31:33.881 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +15-Mar-2018 03:31:33.881 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +15-Mar-2018 03:31:33.883 using default UDP/IPv4 port range: [49152, 65535] +15-Mar-2018 03:31:33.883 using default UDP/IPv6 port range: [49152, 65535] +15-Mar-2018 03:31:33.884 listening on IPv4 interface lo0, 127.0.0.1#5400 +15-Mar-2018 03:31:33.890 generating session key for dynamic DNS +15-Mar-2018 03:31:33.890 could not open file '/opt/local/var/run/named/session.key': Permission denied +15-Mar-2018 03:31:33.890 could not create /opt/local/var/run/named/session.key +15-Mar-2018 03:31:33.890 failed to generate session key for dynamic DNS: permission denied +15-Mar-2018 03:31:33.892 sizing zone task pool based on 1 zones +15-Mar-2018 03:31:33.892 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +15-Mar-2018 03:31:33.899 set up managed keys zone for view _default, file 'managed-keys.bind' +15-Mar-2018 03:31:33.899 automatic empty zone: 10.IN-ADDR.ARPA +15-Mar-2018 03:31:33.899 automatic empty zone: 16.172.IN-ADDR.ARPA +15-Mar-2018 03:31:33.899 automatic empty zone: 17.172.IN-ADDR.ARPA +15-Mar-2018 03:31:33.899 automatic empty zone: 18.172.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 19.172.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 20.172.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 21.172.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 22.172.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 23.172.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 24.172.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 25.172.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 26.172.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 27.172.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 28.172.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 29.172.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 30.172.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 31.172.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 168.192.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 64.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 65.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 66.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 67.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 68.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 69.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 70.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 71.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 72.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 73.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 74.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 75.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 76.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 77.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 78.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 79.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 80.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 81.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 82.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 83.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 84.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 85.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 86.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 87.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 88.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 89.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 90.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 91.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 92.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 93.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 94.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.900 automatic empty zone: 95.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 96.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 97.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 98.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 99.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 100.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 101.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 102.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 103.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 104.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 105.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 106.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 107.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 108.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 109.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 110.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 111.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 112.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 113.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 114.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 115.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 116.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 117.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 118.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 119.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 120.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 121.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 122.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 123.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 124.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 125.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 126.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 127.100.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 0.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 127.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 254.169.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 2.0.192.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 100.51.198.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 113.0.203.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: D.F.IP6.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 8.E.F.IP6.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 9.E.F.IP6.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: A.E.F.IP6.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: B.E.F.IP6.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +15-Mar-2018 03:31:33.901 automatic empty zone: EMPTY.AS112.ARPA +15-Mar-2018 03:31:33.902 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +15-Mar-2018 03:31:33.904 configuring command channel from '/opt/local/etc/rndc.key' +15-Mar-2018 03:31:33.904 couldn't add command channel 127.0.0.1#953: file not found +15-Mar-2018 03:31:33.904 configuring command channel from '/opt/local/etc/rndc.key' +15-Mar-2018 03:31:33.904 couldn't add command channel ::1#953: file not found +15-Mar-2018 03:31:33.904 not using config file logging statement for logging due to -g option +15-Mar-2018 03:31:33.905 managed-keys-zone: loaded serial 0 +15-Mar-2018 03:31:33.933 zone local/IN: loaded serial 2 +15-Mar-2018 03:31:33.933 all zones loaded +15-Mar-2018 03:31:33.933 running +15-Mar-2018 03:31:33.970 shutting down +15-Mar-2018 03:31:33.971 no longer listening on 127.0.0.1#5400 +15-Mar-2018 03:31:34.082 exiting +=== Log Marked @ 2018-03-15 03:36:33 +1300 [3756] === +15-Mar-2018 03:36:33.509 starting BIND 9.12.0 +15-Mar-2018 03:36:33.510 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +15-Mar-2018 03:36:33.510 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +15-Mar-2018 03:36:33.510 running as: named -c named.conf -f -p 5400 -g +15-Mar-2018 03:36:33.510 ---------------------------------------------------- +15-Mar-2018 03:36:33.510 BIND 9 is maintained by Internet Systems Consortium, +15-Mar-2018 03:36:33.510 Inc. (ISC), a non-profit 501(c)(3) public-benefit +15-Mar-2018 03:36:33.510 corporation. Support and training for BIND 9 are +15-Mar-2018 03:36:33.510 available at https://www.isc.org/support +15-Mar-2018 03:36:33.510 ---------------------------------------------------- +15-Mar-2018 03:36:33.510 found 8 CPUs, using 8 worker threads +15-Mar-2018 03:36:33.510 using 7 UDP listeners per interface +15-Mar-2018 03:36:33.510 using up to 4096 sockets +15-Mar-2018 03:36:33.514 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +15-Mar-2018 03:36:33.514 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +15-Mar-2018 03:36:33.515 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +15-Mar-2018 03:36:33.515 using default UDP/IPv4 port range: [49152, 65535] +15-Mar-2018 03:36:33.515 using default UDP/IPv6 port range: [49152, 65535] +15-Mar-2018 03:36:33.516 listening on IPv4 interface lo0, 127.0.0.1#5400 +15-Mar-2018 03:36:33.518 generating session key for dynamic DNS +15-Mar-2018 03:36:33.519 could not open file '/opt/local/var/run/named/session.key': Permission denied +15-Mar-2018 03:36:33.519 could not create /opt/local/var/run/named/session.key +15-Mar-2018 03:36:33.519 failed to generate session key for dynamic DNS: permission denied +15-Mar-2018 03:36:33.519 sizing zone task pool based on 1 zones +15-Mar-2018 03:36:33.519 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +15-Mar-2018 03:36:33.522 set up managed keys zone for view _default, file 'managed-keys.bind' +15-Mar-2018 03:36:33.522 automatic empty zone: 10.IN-ADDR.ARPA +15-Mar-2018 03:36:33.522 automatic empty zone: 16.172.IN-ADDR.ARPA +15-Mar-2018 03:36:33.522 automatic empty zone: 17.172.IN-ADDR.ARPA +15-Mar-2018 03:36:33.522 automatic empty zone: 18.172.IN-ADDR.ARPA +15-Mar-2018 03:36:33.522 automatic empty zone: 19.172.IN-ADDR.ARPA +15-Mar-2018 03:36:33.522 automatic empty zone: 20.172.IN-ADDR.ARPA +15-Mar-2018 03:36:33.522 automatic empty zone: 21.172.IN-ADDR.ARPA +15-Mar-2018 03:36:33.522 automatic empty zone: 22.172.IN-ADDR.ARPA +15-Mar-2018 03:36:33.522 automatic empty zone: 23.172.IN-ADDR.ARPA +15-Mar-2018 03:36:33.522 automatic empty zone: 24.172.IN-ADDR.ARPA +15-Mar-2018 03:36:33.522 automatic empty zone: 25.172.IN-ADDR.ARPA +15-Mar-2018 03:36:33.522 automatic empty zone: 26.172.IN-ADDR.ARPA +15-Mar-2018 03:36:33.522 automatic empty zone: 27.172.IN-ADDR.ARPA +15-Mar-2018 03:36:33.522 automatic empty zone: 28.172.IN-ADDR.ARPA +15-Mar-2018 03:36:33.522 automatic empty zone: 29.172.IN-ADDR.ARPA +15-Mar-2018 03:36:33.522 automatic empty zone: 30.172.IN-ADDR.ARPA +15-Mar-2018 03:36:33.522 automatic empty zone: 31.172.IN-ADDR.ARPA +15-Mar-2018 03:36:33.522 automatic empty zone: 168.192.IN-ADDR.ARPA +15-Mar-2018 03:36:33.522 automatic empty zone: 64.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.522 automatic empty zone: 65.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.522 automatic empty zone: 66.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.522 automatic empty zone: 67.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.522 automatic empty zone: 68.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.522 automatic empty zone: 69.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.522 automatic empty zone: 70.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.522 automatic empty zone: 71.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.522 automatic empty zone: 72.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.522 automatic empty zone: 73.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 74.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 75.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 76.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 77.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 78.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 79.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 80.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 81.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 82.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 83.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 84.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 85.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 86.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 87.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 88.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 89.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 90.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 91.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 92.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 93.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 94.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 95.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 96.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 97.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 98.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 99.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 100.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 101.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 102.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 103.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 104.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 105.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 106.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 107.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 108.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 109.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 110.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 111.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 112.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 113.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 114.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 115.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 116.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 117.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 118.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 119.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 120.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 121.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 122.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 123.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 124.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 125.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 126.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 127.100.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 0.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 127.IN-ADDR.ARPA +15-Mar-2018 03:36:33.523 automatic empty zone: 254.169.IN-ADDR.ARPA +15-Mar-2018 03:36:33.524 automatic empty zone: 2.0.192.IN-ADDR.ARPA +15-Mar-2018 03:36:33.524 automatic empty zone: 100.51.198.IN-ADDR.ARPA +15-Mar-2018 03:36:33.524 automatic empty zone: 113.0.203.IN-ADDR.ARPA +15-Mar-2018 03:36:33.524 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +15-Mar-2018 03:36:33.524 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +15-Mar-2018 03:36:33.524 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +15-Mar-2018 03:36:33.524 automatic empty zone: D.F.IP6.ARPA +15-Mar-2018 03:36:33.524 automatic empty zone: 8.E.F.IP6.ARPA +15-Mar-2018 03:36:33.524 automatic empty zone: 9.E.F.IP6.ARPA +15-Mar-2018 03:36:33.524 automatic empty zone: A.E.F.IP6.ARPA +15-Mar-2018 03:36:33.524 automatic empty zone: B.E.F.IP6.ARPA +15-Mar-2018 03:36:33.524 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +15-Mar-2018 03:36:33.524 automatic empty zone: EMPTY.AS112.ARPA +15-Mar-2018 03:36:33.524 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +15-Mar-2018 03:36:33.527 configuring command channel from '/opt/local/etc/rndc.key' +15-Mar-2018 03:36:33.527 couldn't add command channel 127.0.0.1#953: file not found +15-Mar-2018 03:36:33.527 configuring command channel from '/opt/local/etc/rndc.key' +15-Mar-2018 03:36:33.527 couldn't add command channel ::1#953: file not found +15-Mar-2018 03:36:33.527 not using config file logging statement for logging due to -g option +15-Mar-2018 03:36:33.528 managed-keys-zone: loaded serial 0 +15-Mar-2018 03:36:33.561 zone local/IN: loaded serial 2 +15-Mar-2018 03:36:33.561 all zones loaded +15-Mar-2018 03:36:33.561 running +15-Mar-2018 03:36:33.625 shutting down +15-Mar-2018 03:36:33.626 no longer listening on 127.0.0.1#5400 +15-Mar-2018 03:36:33.739 exiting +=== Log Marked @ 2018-03-15 03:38:22 +1300 [3827] === +15-Mar-2018 03:38:22.807 starting BIND 9.12.0 +15-Mar-2018 03:38:22.807 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +15-Mar-2018 03:38:22.807 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +15-Mar-2018 03:38:22.807 running as: named -c named.conf -f -p 5400 -g +15-Mar-2018 03:38:22.807 ---------------------------------------------------- +15-Mar-2018 03:38:22.807 BIND 9 is maintained by Internet Systems Consortium, +15-Mar-2018 03:38:22.807 Inc. (ISC), a non-profit 501(c)(3) public-benefit +15-Mar-2018 03:38:22.807 corporation. Support and training for BIND 9 are +15-Mar-2018 03:38:22.807 available at https://www.isc.org/support +15-Mar-2018 03:38:22.808 ---------------------------------------------------- +15-Mar-2018 03:38:22.808 found 8 CPUs, using 8 worker threads +15-Mar-2018 03:38:22.808 using 7 UDP listeners per interface +15-Mar-2018 03:38:22.808 using up to 4096 sockets +15-Mar-2018 03:38:22.813 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +15-Mar-2018 03:38:22.813 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +15-Mar-2018 03:38:22.813 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +15-Mar-2018 03:38:22.814 using default UDP/IPv4 port range: [49152, 65535] +15-Mar-2018 03:38:22.814 using default UDP/IPv6 port range: [49152, 65535] +15-Mar-2018 03:38:22.814 listening on IPv4 interface lo0, 127.0.0.1#5400 +15-Mar-2018 03:38:22.817 generating session key for dynamic DNS +15-Mar-2018 03:38:22.817 could not open file '/opt/local/var/run/named/session.key': Permission denied +15-Mar-2018 03:38:22.817 could not create /opt/local/var/run/named/session.key +15-Mar-2018 03:38:22.817 failed to generate session key for dynamic DNS: permission denied +15-Mar-2018 03:38:22.817 sizing zone task pool based on 1 zones +15-Mar-2018 03:38:22.817 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +15-Mar-2018 03:38:22.820 set up managed keys zone for view _default, file 'managed-keys.bind' +15-Mar-2018 03:38:22.820 automatic empty zone: 10.IN-ADDR.ARPA +15-Mar-2018 03:38:22.820 automatic empty zone: 16.172.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 17.172.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 18.172.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 19.172.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 20.172.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 21.172.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 22.172.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 23.172.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 24.172.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 25.172.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 26.172.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 27.172.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 28.172.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 29.172.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 30.172.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 31.172.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 168.192.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 64.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 65.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 66.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 67.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 68.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 69.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 70.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 71.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 72.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 73.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 74.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 75.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 76.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 77.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 78.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 79.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 80.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 81.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 82.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 83.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 84.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 85.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 86.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 87.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 88.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 89.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 90.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 91.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 92.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 93.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 94.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 95.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 96.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.821 automatic empty zone: 97.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 98.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 99.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 100.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 101.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 102.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 103.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 104.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 105.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 106.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 107.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 108.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 109.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 110.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 111.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 112.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 113.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 114.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 115.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 116.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 117.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 118.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 119.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 120.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 121.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 122.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 123.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 124.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 125.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 126.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 127.100.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 0.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 127.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 254.169.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 2.0.192.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 100.51.198.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 113.0.203.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: D.F.IP6.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 8.E.F.IP6.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 9.E.F.IP6.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: A.E.F.IP6.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: B.E.F.IP6.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +15-Mar-2018 03:38:22.822 automatic empty zone: EMPTY.AS112.ARPA +15-Mar-2018 03:38:22.823 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +15-Mar-2018 03:38:22.827 configuring command channel from '/opt/local/etc/rndc.key' +15-Mar-2018 03:38:22.827 couldn't add command channel 127.0.0.1#953: file not found +15-Mar-2018 03:38:22.827 configuring command channel from '/opt/local/etc/rndc.key' +15-Mar-2018 03:38:22.827 couldn't add command channel ::1#953: file not found +15-Mar-2018 03:38:22.827 not using config file logging statement for logging due to -g option +15-Mar-2018 03:38:22.828 managed-keys-zone: loaded serial 0 +15-Mar-2018 03:38:22.859 zone local/IN: loaded serial 2 +15-Mar-2018 03:38:22.859 all zones loaded +15-Mar-2018 03:38:22.859 running +15-Mar-2018 03:38:22.922 shutting down +15-Mar-2018 03:38:22.922 no longer listening on 127.0.0.1#5400 +15-Mar-2018 03:38:23.026 exiting +=== Log Marked @ 2018-03-15 03:39:37 +1300 [3876] === +15-Mar-2018 03:39:37.034 starting BIND 9.12.0 +15-Mar-2018 03:39:37.034 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +15-Mar-2018 03:39:37.034 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +15-Mar-2018 03:39:37.034 running as: named -c named.conf -f -p 5400 -g +15-Mar-2018 03:39:37.034 ---------------------------------------------------- +15-Mar-2018 03:39:37.034 BIND 9 is maintained by Internet Systems Consortium, +15-Mar-2018 03:39:37.034 Inc. (ISC), a non-profit 501(c)(3) public-benefit +15-Mar-2018 03:39:37.034 corporation. Support and training for BIND 9 are +15-Mar-2018 03:39:37.034 available at https://www.isc.org/support +15-Mar-2018 03:39:37.034 ---------------------------------------------------- +15-Mar-2018 03:39:37.034 found 8 CPUs, using 8 worker threads +15-Mar-2018 03:39:37.034 using 7 UDP listeners per interface +15-Mar-2018 03:39:37.034 using up to 4096 sockets +15-Mar-2018 03:39:37.039 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +15-Mar-2018 03:39:37.039 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +15-Mar-2018 03:39:37.040 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +15-Mar-2018 03:39:37.040 using default UDP/IPv4 port range: [49152, 65535] +15-Mar-2018 03:39:37.040 using default UDP/IPv6 port range: [49152, 65535] +15-Mar-2018 03:39:37.041 listening on IPv4 interface lo0, 127.0.0.1#5400 +15-Mar-2018 03:39:37.043 generating session key for dynamic DNS +15-Mar-2018 03:39:37.044 could not open file '/opt/local/var/run/named/session.key': Permission denied +15-Mar-2018 03:39:37.044 could not create /opt/local/var/run/named/session.key +15-Mar-2018 03:39:37.044 failed to generate session key for dynamic DNS: permission denied +15-Mar-2018 03:39:37.044 sizing zone task pool based on 1 zones +15-Mar-2018 03:39:37.044 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +15-Mar-2018 03:39:37.047 set up managed keys zone for view _default, file 'managed-keys.bind' +15-Mar-2018 03:39:37.047 automatic empty zone: 10.IN-ADDR.ARPA +15-Mar-2018 03:39:37.047 automatic empty zone: 16.172.IN-ADDR.ARPA +15-Mar-2018 03:39:37.047 automatic empty zone: 17.172.IN-ADDR.ARPA +15-Mar-2018 03:39:37.047 automatic empty zone: 18.172.IN-ADDR.ARPA +15-Mar-2018 03:39:37.047 automatic empty zone: 19.172.IN-ADDR.ARPA +15-Mar-2018 03:39:37.047 automatic empty zone: 20.172.IN-ADDR.ARPA +15-Mar-2018 03:39:37.047 automatic empty zone: 21.172.IN-ADDR.ARPA +15-Mar-2018 03:39:37.047 automatic empty zone: 22.172.IN-ADDR.ARPA +15-Mar-2018 03:39:37.047 automatic empty zone: 23.172.IN-ADDR.ARPA +15-Mar-2018 03:39:37.047 automatic empty zone: 24.172.IN-ADDR.ARPA +15-Mar-2018 03:39:37.047 automatic empty zone: 25.172.IN-ADDR.ARPA +15-Mar-2018 03:39:37.047 automatic empty zone: 26.172.IN-ADDR.ARPA +15-Mar-2018 03:39:37.047 automatic empty zone: 27.172.IN-ADDR.ARPA +15-Mar-2018 03:39:37.047 automatic empty zone: 28.172.IN-ADDR.ARPA +15-Mar-2018 03:39:37.047 automatic empty zone: 29.172.IN-ADDR.ARPA +15-Mar-2018 03:39:37.047 automatic empty zone: 30.172.IN-ADDR.ARPA +15-Mar-2018 03:39:37.047 automatic empty zone: 31.172.IN-ADDR.ARPA +15-Mar-2018 03:39:37.047 automatic empty zone: 168.192.IN-ADDR.ARPA +15-Mar-2018 03:39:37.047 automatic empty zone: 64.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.047 automatic empty zone: 65.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.047 automatic empty zone: 66.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.047 automatic empty zone: 67.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.047 automatic empty zone: 68.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.047 automatic empty zone: 69.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.047 automatic empty zone: 70.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 71.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 72.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 73.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 74.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 75.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 76.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 77.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 78.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 79.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 80.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 81.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 82.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 83.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 84.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 85.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 86.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 87.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 88.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 89.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 90.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 91.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 92.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 93.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 94.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 95.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 96.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 97.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 98.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 99.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 100.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 101.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 102.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 103.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 104.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 105.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 106.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 107.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 108.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 109.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 110.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 111.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 112.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 113.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 114.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 115.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 116.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 117.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 118.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 119.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 120.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.048 automatic empty zone: 121.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.049 automatic empty zone: 122.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.049 automatic empty zone: 123.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.049 automatic empty zone: 124.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.049 automatic empty zone: 125.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.049 automatic empty zone: 126.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.049 automatic empty zone: 127.100.IN-ADDR.ARPA +15-Mar-2018 03:39:37.049 automatic empty zone: 0.IN-ADDR.ARPA +15-Mar-2018 03:39:37.049 automatic empty zone: 127.IN-ADDR.ARPA +15-Mar-2018 03:39:37.049 automatic empty zone: 254.169.IN-ADDR.ARPA +15-Mar-2018 03:39:37.049 automatic empty zone: 2.0.192.IN-ADDR.ARPA +15-Mar-2018 03:39:37.049 automatic empty zone: 100.51.198.IN-ADDR.ARPA +15-Mar-2018 03:39:37.049 automatic empty zone: 113.0.203.IN-ADDR.ARPA +15-Mar-2018 03:39:37.049 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +15-Mar-2018 03:39:37.049 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +15-Mar-2018 03:39:37.049 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +15-Mar-2018 03:39:37.049 automatic empty zone: D.F.IP6.ARPA +15-Mar-2018 03:39:37.049 automatic empty zone: 8.E.F.IP6.ARPA +15-Mar-2018 03:39:37.049 automatic empty zone: 9.E.F.IP6.ARPA +15-Mar-2018 03:39:37.049 automatic empty zone: A.E.F.IP6.ARPA +15-Mar-2018 03:39:37.049 automatic empty zone: B.E.F.IP6.ARPA +15-Mar-2018 03:39:37.049 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +15-Mar-2018 03:39:37.049 automatic empty zone: EMPTY.AS112.ARPA +15-Mar-2018 03:39:37.049 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +15-Mar-2018 03:39:37.052 configuring command channel from '/opt/local/etc/rndc.key' +15-Mar-2018 03:39:37.052 couldn't add command channel 127.0.0.1#953: file not found +15-Mar-2018 03:39:37.052 configuring command channel from '/opt/local/etc/rndc.key' +15-Mar-2018 03:39:37.052 couldn't add command channel ::1#953: file not found +15-Mar-2018 03:39:37.052 not using config file logging statement for logging due to -g option +15-Mar-2018 03:39:37.052 managed-keys-zone: loaded serial 0 +15-Mar-2018 03:39:37.086 zone local/IN: loaded serial 2 +15-Mar-2018 03:39:37.086 all zones loaded +15-Mar-2018 03:39:37.087 running +15-Mar-2018 03:39:37.150 shutting down +15-Mar-2018 03:39:37.150 no longer listening on 127.0.0.1#5400 +15-Mar-2018 03:39:37.255 exiting +=== Log Marked @ 2018-03-15 03:40:12 +1300 [3903] === +15-Mar-2018 03:40:12.922 starting BIND 9.12.0 +15-Mar-2018 03:40:12.922 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +15-Mar-2018 03:40:12.922 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +15-Mar-2018 03:40:12.922 running as: named -c named.conf -f -p 5400 -g +15-Mar-2018 03:40:12.922 ---------------------------------------------------- +15-Mar-2018 03:40:12.922 BIND 9 is maintained by Internet Systems Consortium, +15-Mar-2018 03:40:12.922 Inc. (ISC), a non-profit 501(c)(3) public-benefit +15-Mar-2018 03:40:12.922 corporation. Support and training for BIND 9 are +15-Mar-2018 03:40:12.922 available at https://www.isc.org/support +15-Mar-2018 03:40:12.922 ---------------------------------------------------- +15-Mar-2018 03:40:12.922 found 8 CPUs, using 8 worker threads +15-Mar-2018 03:40:12.922 using 7 UDP listeners per interface +15-Mar-2018 03:40:12.923 using up to 4096 sockets +15-Mar-2018 03:40:12.927 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +15-Mar-2018 03:40:12.927 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +15-Mar-2018 03:40:12.928 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +15-Mar-2018 03:40:12.928 using default UDP/IPv4 port range: [49152, 65535] +15-Mar-2018 03:40:12.928 using default UDP/IPv6 port range: [49152, 65535] +15-Mar-2018 03:40:12.929 listening on IPv4 interface lo0, 127.0.0.1#5400 +15-Mar-2018 03:40:12.931 generating session key for dynamic DNS +15-Mar-2018 03:40:12.931 could not open file '/opt/local/var/run/named/session.key': Permission denied +15-Mar-2018 03:40:12.931 could not create /opt/local/var/run/named/session.key +15-Mar-2018 03:40:12.931 failed to generate session key for dynamic DNS: permission denied +15-Mar-2018 03:40:12.931 sizing zone task pool based on 1 zones +15-Mar-2018 03:40:12.931 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +15-Mar-2018 03:40:12.934 set up managed keys zone for view _default, file 'managed-keys.bind' +15-Mar-2018 03:40:12.934 automatic empty zone: 10.IN-ADDR.ARPA +15-Mar-2018 03:40:12.934 automatic empty zone: 16.172.IN-ADDR.ARPA +15-Mar-2018 03:40:12.934 automatic empty zone: 17.172.IN-ADDR.ARPA +15-Mar-2018 03:40:12.934 automatic empty zone: 18.172.IN-ADDR.ARPA +15-Mar-2018 03:40:12.934 automatic empty zone: 19.172.IN-ADDR.ARPA +15-Mar-2018 03:40:12.934 automatic empty zone: 20.172.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 21.172.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 22.172.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 23.172.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 24.172.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 25.172.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 26.172.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 27.172.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 28.172.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 29.172.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 30.172.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 31.172.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 168.192.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 64.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 65.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 66.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 67.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 68.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 69.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 70.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 71.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 72.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 73.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 74.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 75.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 76.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 77.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 78.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 79.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 80.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 81.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 82.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 83.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 84.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 85.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 86.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 87.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 88.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 89.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 90.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 91.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 92.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 93.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 94.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 95.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 96.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 97.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 98.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 99.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.935 automatic empty zone: 100.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 101.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 102.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 103.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 104.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 105.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 106.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 107.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 108.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 109.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 110.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 111.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 112.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 113.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 114.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 115.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 116.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 117.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 118.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 119.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 120.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 121.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 122.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 123.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 124.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 125.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 126.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 127.100.IN-ADDR.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 0.IN-ADDR.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 127.IN-ADDR.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 254.169.IN-ADDR.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 2.0.192.IN-ADDR.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 100.51.198.IN-ADDR.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 113.0.203.IN-ADDR.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: D.F.IP6.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 8.E.F.IP6.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 9.E.F.IP6.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: A.E.F.IP6.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: B.E.F.IP6.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +15-Mar-2018 03:40:12.936 automatic empty zone: EMPTY.AS112.ARPA +15-Mar-2018 03:40:12.937 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +15-Mar-2018 03:40:12.939 configuring command channel from '/opt/local/etc/rndc.key' +15-Mar-2018 03:40:12.939 couldn't add command channel 127.0.0.1#953: file not found +15-Mar-2018 03:40:12.939 configuring command channel from '/opt/local/etc/rndc.key' +15-Mar-2018 03:40:12.939 couldn't add command channel ::1#953: file not found +15-Mar-2018 03:40:12.939 not using config file logging statement for logging due to -g option +15-Mar-2018 03:40:12.940 managed-keys-zone: loaded serial 0 +15-Mar-2018 03:40:12.972 zone local/IN: loaded serial 2 +15-Mar-2018 03:40:12.972 all zones loaded +15-Mar-2018 03:40:12.972 running +15-Mar-2018 03:40:13.031 shutting down +15-Mar-2018 03:40:13.032 no longer listening on 127.0.0.1#5400 +15-Mar-2018 03:40:13.140 exiting +=== Log Marked @ 2018-03-15 03:52:12 +1300 [4040] === +15-Mar-2018 03:52:12.488 starting BIND 9.12.0 +15-Mar-2018 03:52:12.488 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +15-Mar-2018 03:52:12.488 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +15-Mar-2018 03:52:12.488 running as: named -c named.conf -f -p 5400 -g +15-Mar-2018 03:52:12.488 ---------------------------------------------------- +15-Mar-2018 03:52:12.488 BIND 9 is maintained by Internet Systems Consortium, +15-Mar-2018 03:52:12.488 Inc. (ISC), a non-profit 501(c)(3) public-benefit +15-Mar-2018 03:52:12.488 corporation. Support and training for BIND 9 are +15-Mar-2018 03:52:12.488 available at https://www.isc.org/support +15-Mar-2018 03:52:12.488 ---------------------------------------------------- +15-Mar-2018 03:52:12.488 found 8 CPUs, using 8 worker threads +15-Mar-2018 03:52:12.488 using 7 UDP listeners per interface +15-Mar-2018 03:52:12.489 using up to 4096 sockets +15-Mar-2018 03:52:12.493 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +15-Mar-2018 03:52:12.493 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +15-Mar-2018 03:52:12.493 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +15-Mar-2018 03:52:12.493 using default UDP/IPv4 port range: [49152, 65535] +15-Mar-2018 03:52:12.493 using default UDP/IPv6 port range: [49152, 65535] +15-Mar-2018 03:52:12.494 listening on IPv4 interface lo0, 127.0.0.1#5400 +15-Mar-2018 03:52:12.497 generating session key for dynamic DNS +15-Mar-2018 03:52:12.497 could not open file '/opt/local/var/run/named/session.key': Permission denied +15-Mar-2018 03:52:12.497 could not create /opt/local/var/run/named/session.key +15-Mar-2018 03:52:12.497 failed to generate session key for dynamic DNS: permission denied +15-Mar-2018 03:52:12.497 sizing zone task pool based on 1 zones +15-Mar-2018 03:52:12.497 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +15-Mar-2018 03:52:12.500 set up managed keys zone for view _default, file 'managed-keys.bind' +15-Mar-2018 03:52:12.500 automatic empty zone: 10.IN-ADDR.ARPA +15-Mar-2018 03:52:12.500 automatic empty zone: 16.172.IN-ADDR.ARPA +15-Mar-2018 03:52:12.500 automatic empty zone: 17.172.IN-ADDR.ARPA +15-Mar-2018 03:52:12.500 automatic empty zone: 18.172.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 19.172.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 20.172.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 21.172.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 22.172.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 23.172.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 24.172.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 25.172.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 26.172.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 27.172.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 28.172.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 29.172.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 30.172.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 31.172.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 168.192.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 64.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 65.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 66.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 67.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 68.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 69.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 70.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 71.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 72.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 73.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 74.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 75.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 76.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 77.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 78.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 79.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 80.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 81.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 82.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 83.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 84.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 85.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 86.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 87.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 88.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 89.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 90.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 91.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 92.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 93.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 94.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 95.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 96.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 97.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 98.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.501 automatic empty zone: 99.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.502 automatic empty zone: 100.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.502 automatic empty zone: 101.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.502 automatic empty zone: 102.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.502 automatic empty zone: 103.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.502 automatic empty zone: 104.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.502 automatic empty zone: 105.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.502 automatic empty zone: 106.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.502 automatic empty zone: 107.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.502 automatic empty zone: 108.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.502 automatic empty zone: 109.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.502 automatic empty zone: 110.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.502 automatic empty zone: 111.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.502 automatic empty zone: 112.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.502 automatic empty zone: 113.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.502 automatic empty zone: 114.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.502 automatic empty zone: 115.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.502 automatic empty zone: 116.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.502 automatic empty zone: 117.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.502 automatic empty zone: 118.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.502 automatic empty zone: 119.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.502 automatic empty zone: 120.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.502 automatic empty zone: 121.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.502 automatic empty zone: 122.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.502 automatic empty zone: 123.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.502 automatic empty zone: 124.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.502 automatic empty zone: 125.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.502 automatic empty zone: 126.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.502 automatic empty zone: 127.100.IN-ADDR.ARPA +15-Mar-2018 03:52:12.502 automatic empty zone: 0.IN-ADDR.ARPA +15-Mar-2018 03:52:12.503 automatic empty zone: 127.IN-ADDR.ARPA +15-Mar-2018 03:52:12.503 automatic empty zone: 254.169.IN-ADDR.ARPA +15-Mar-2018 03:52:12.503 automatic empty zone: 2.0.192.IN-ADDR.ARPA +15-Mar-2018 03:52:12.503 automatic empty zone: 100.51.198.IN-ADDR.ARPA +15-Mar-2018 03:52:12.503 automatic empty zone: 113.0.203.IN-ADDR.ARPA +15-Mar-2018 03:52:12.503 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +15-Mar-2018 03:52:12.503 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +15-Mar-2018 03:52:12.503 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +15-Mar-2018 03:52:12.503 automatic empty zone: D.F.IP6.ARPA +15-Mar-2018 03:52:12.503 automatic empty zone: 8.E.F.IP6.ARPA +15-Mar-2018 03:52:12.503 automatic empty zone: 9.E.F.IP6.ARPA +15-Mar-2018 03:52:12.503 automatic empty zone: A.E.F.IP6.ARPA +15-Mar-2018 03:52:12.503 automatic empty zone: B.E.F.IP6.ARPA +15-Mar-2018 03:52:12.503 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +15-Mar-2018 03:52:12.503 automatic empty zone: EMPTY.AS112.ARPA +15-Mar-2018 03:52:12.503 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +15-Mar-2018 03:52:12.506 configuring command channel from '/opt/local/etc/rndc.key' +15-Mar-2018 03:52:12.506 couldn't add command channel 127.0.0.1#953: file not found +15-Mar-2018 03:52:12.506 configuring command channel from '/opt/local/etc/rndc.key' +15-Mar-2018 03:52:12.506 couldn't add command channel ::1#953: file not found +15-Mar-2018 03:52:12.506 not using config file logging statement for logging due to -g option +15-Mar-2018 03:52:12.507 managed-keys-zone: loaded serial 0 +15-Mar-2018 03:52:12.541 zone local/IN: loaded serial 2 +15-Mar-2018 03:52:12.541 all zones loaded +15-Mar-2018 03:52:12.542 running +15-Mar-2018 03:52:16.373 shutting down +15-Mar-2018 03:52:16.373 no longer listening on 127.0.0.1#5400 +15-Mar-2018 03:52:16.482 exiting +=== Log Marked @ 2018-03-15 03:53:01 +1300 [4064] === +15-Mar-2018 03:53:01.459 starting BIND 9.12.0 +15-Mar-2018 03:53:01.459 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +15-Mar-2018 03:53:01.459 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +15-Mar-2018 03:53:01.459 running as: named -c named.conf -f -p 5400 -g +15-Mar-2018 03:53:01.459 ---------------------------------------------------- +15-Mar-2018 03:53:01.459 BIND 9 is maintained by Internet Systems Consortium, +15-Mar-2018 03:53:01.459 Inc. (ISC), a non-profit 501(c)(3) public-benefit +15-Mar-2018 03:53:01.459 corporation. Support and training for BIND 9 are +15-Mar-2018 03:53:01.459 available at https://www.isc.org/support +15-Mar-2018 03:53:01.459 ---------------------------------------------------- +15-Mar-2018 03:53:01.460 found 8 CPUs, using 8 worker threads +15-Mar-2018 03:53:01.460 using 7 UDP listeners per interface +15-Mar-2018 03:53:01.460 using up to 4096 sockets +15-Mar-2018 03:53:01.464 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +15-Mar-2018 03:53:01.464 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +15-Mar-2018 03:53:01.464 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +15-Mar-2018 03:53:01.464 using default UDP/IPv4 port range: [49152, 65535] +15-Mar-2018 03:53:01.464 using default UDP/IPv6 port range: [49152, 65535] +15-Mar-2018 03:53:01.465 listening on IPv4 interface lo0, 127.0.0.1#5400 +15-Mar-2018 03:53:01.468 generating session key for dynamic DNS +15-Mar-2018 03:53:01.468 could not open file '/opt/local/var/run/named/session.key': Permission denied +15-Mar-2018 03:53:01.468 could not create /opt/local/var/run/named/session.key +15-Mar-2018 03:53:01.468 failed to generate session key for dynamic DNS: permission denied +15-Mar-2018 03:53:01.469 sizing zone task pool based on 1 zones +15-Mar-2018 03:53:01.469 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +15-Mar-2018 03:53:01.472 set up managed keys zone for view _default, file 'managed-keys.bind' +15-Mar-2018 03:53:01.472 automatic empty zone: 10.IN-ADDR.ARPA +15-Mar-2018 03:53:01.472 automatic empty zone: 16.172.IN-ADDR.ARPA +15-Mar-2018 03:53:01.472 automatic empty zone: 17.172.IN-ADDR.ARPA +15-Mar-2018 03:53:01.472 automatic empty zone: 18.172.IN-ADDR.ARPA +15-Mar-2018 03:53:01.472 automatic empty zone: 19.172.IN-ADDR.ARPA +15-Mar-2018 03:53:01.472 automatic empty zone: 20.172.IN-ADDR.ARPA +15-Mar-2018 03:53:01.472 automatic empty zone: 21.172.IN-ADDR.ARPA +15-Mar-2018 03:53:01.472 automatic empty zone: 22.172.IN-ADDR.ARPA +15-Mar-2018 03:53:01.472 automatic empty zone: 23.172.IN-ADDR.ARPA +15-Mar-2018 03:53:01.472 automatic empty zone: 24.172.IN-ADDR.ARPA +15-Mar-2018 03:53:01.472 automatic empty zone: 25.172.IN-ADDR.ARPA +15-Mar-2018 03:53:01.472 automatic empty zone: 26.172.IN-ADDR.ARPA +15-Mar-2018 03:53:01.472 automatic empty zone: 27.172.IN-ADDR.ARPA +15-Mar-2018 03:53:01.472 automatic empty zone: 28.172.IN-ADDR.ARPA +15-Mar-2018 03:53:01.472 automatic empty zone: 29.172.IN-ADDR.ARPA +15-Mar-2018 03:53:01.472 automatic empty zone: 30.172.IN-ADDR.ARPA +15-Mar-2018 03:53:01.472 automatic empty zone: 31.172.IN-ADDR.ARPA +15-Mar-2018 03:53:01.472 automatic empty zone: 168.192.IN-ADDR.ARPA +15-Mar-2018 03:53:01.472 automatic empty zone: 64.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.472 automatic empty zone: 65.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.472 automatic empty zone: 66.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.472 automatic empty zone: 67.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.472 automatic empty zone: 68.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.472 automatic empty zone: 69.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.472 automatic empty zone: 70.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.472 automatic empty zone: 71.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.472 automatic empty zone: 72.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 73.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 74.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 75.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 76.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 77.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 78.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 79.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 80.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 81.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 82.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 83.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 84.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 85.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 86.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 87.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 88.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 89.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 90.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 91.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 92.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 93.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 94.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 95.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 96.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 97.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 98.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 99.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 100.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 101.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 102.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 103.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 104.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 105.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 106.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 107.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 108.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 109.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 110.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 111.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 112.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 113.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 114.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 115.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 116.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 117.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 118.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 119.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.473 automatic empty zone: 120.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.474 automatic empty zone: 121.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.474 automatic empty zone: 122.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.474 automatic empty zone: 123.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.474 automatic empty zone: 124.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.474 automatic empty zone: 125.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.474 automatic empty zone: 126.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.474 automatic empty zone: 127.100.IN-ADDR.ARPA +15-Mar-2018 03:53:01.474 automatic empty zone: 0.IN-ADDR.ARPA +15-Mar-2018 03:53:01.474 automatic empty zone: 127.IN-ADDR.ARPA +15-Mar-2018 03:53:01.474 automatic empty zone: 254.169.IN-ADDR.ARPA +15-Mar-2018 03:53:01.474 automatic empty zone: 2.0.192.IN-ADDR.ARPA +15-Mar-2018 03:53:01.474 automatic empty zone: 100.51.198.IN-ADDR.ARPA +15-Mar-2018 03:53:01.474 automatic empty zone: 113.0.203.IN-ADDR.ARPA +15-Mar-2018 03:53:01.474 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +15-Mar-2018 03:53:01.474 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +15-Mar-2018 03:53:01.474 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +15-Mar-2018 03:53:01.474 automatic empty zone: D.F.IP6.ARPA +15-Mar-2018 03:53:01.474 automatic empty zone: 8.E.F.IP6.ARPA +15-Mar-2018 03:53:01.474 automatic empty zone: 9.E.F.IP6.ARPA +15-Mar-2018 03:53:01.474 automatic empty zone: A.E.F.IP6.ARPA +15-Mar-2018 03:53:01.474 automatic empty zone: B.E.F.IP6.ARPA +15-Mar-2018 03:53:01.474 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +15-Mar-2018 03:53:01.474 automatic empty zone: EMPTY.AS112.ARPA +15-Mar-2018 03:53:01.474 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +15-Mar-2018 03:53:01.477 configuring command channel from '/opt/local/etc/rndc.key' +15-Mar-2018 03:53:01.477 couldn't add command channel 127.0.0.1#953: file not found +15-Mar-2018 03:53:01.477 configuring command channel from '/opt/local/etc/rndc.key' +15-Mar-2018 03:53:01.477 couldn't add command channel ::1#953: file not found +15-Mar-2018 03:53:01.477 not using config file logging statement for logging due to -g option +15-Mar-2018 03:53:01.478 managed-keys-zone: loaded serial 0 +15-Mar-2018 03:53:01.512 zone local/IN: loaded serial 2 +15-Mar-2018 03:53:01.513 all zones loaded +15-Mar-2018 03:53:01.513 running +15-Mar-2018 03:53:05.750 shutting down +15-Mar-2018 03:53:05.751 no longer listening on 127.0.0.1#5400 +15-Mar-2018 03:53:05.857 exiting +=== Log Marked @ 2018-03-16 20:18:13 +1300 [16691] === +16-Mar-2018 20:18:13.788 starting BIND 9.12.0 +16-Mar-2018 20:18:13.789 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +16-Mar-2018 20:18:13.789 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +16-Mar-2018 20:18:13.789 running as: named -c named.conf -f -p 5400 -g +16-Mar-2018 20:18:13.789 ---------------------------------------------------- +16-Mar-2018 20:18:13.789 BIND 9 is maintained by Internet Systems Consortium, +16-Mar-2018 20:18:13.789 Inc. (ISC), a non-profit 501(c)(3) public-benefit +16-Mar-2018 20:18:13.789 corporation. Support and training for BIND 9 are +16-Mar-2018 20:18:13.789 available at https://www.isc.org/support +16-Mar-2018 20:18:13.789 ---------------------------------------------------- +16-Mar-2018 20:18:13.789 found 8 CPUs, using 8 worker threads +16-Mar-2018 20:18:13.789 using 7 UDP listeners per interface +16-Mar-2018 20:18:13.790 using up to 4096 sockets +16-Mar-2018 20:18:13.809 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +16-Mar-2018 20:18:13.811 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +16-Mar-2018 20:18:13.813 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +16-Mar-2018 20:18:13.814 using default UDP/IPv4 port range: [49152, 65535] +16-Mar-2018 20:18:13.814 using default UDP/IPv6 port range: [49152, 65535] +16-Mar-2018 20:18:13.815 listening on IPv4 interface lo0, 127.0.0.1#5400 +16-Mar-2018 20:18:13.819 generating session key for dynamic DNS +16-Mar-2018 20:18:13.822 could not open file '/opt/local/var/run/named/session.key': Permission denied +16-Mar-2018 20:18:13.822 could not create /opt/local/var/run/named/session.key +16-Mar-2018 20:18:13.822 failed to generate session key for dynamic DNS: permission denied +16-Mar-2018 20:18:13.824 sizing zone task pool based on 1 zones +16-Mar-2018 20:18:13.825 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +16-Mar-2018 20:18:13.829 set up managed keys zone for view _default, file 'managed-keys.bind' +16-Mar-2018 20:18:13.829 automatic empty zone: 10.IN-ADDR.ARPA +16-Mar-2018 20:18:13.829 automatic empty zone: 16.172.IN-ADDR.ARPA +16-Mar-2018 20:18:13.829 automatic empty zone: 17.172.IN-ADDR.ARPA +16-Mar-2018 20:18:13.829 automatic empty zone: 18.172.IN-ADDR.ARPA +16-Mar-2018 20:18:13.829 automatic empty zone: 19.172.IN-ADDR.ARPA +16-Mar-2018 20:18:13.829 automatic empty zone: 20.172.IN-ADDR.ARPA +16-Mar-2018 20:18:13.829 automatic empty zone: 21.172.IN-ADDR.ARPA +16-Mar-2018 20:18:13.829 automatic empty zone: 22.172.IN-ADDR.ARPA +16-Mar-2018 20:18:13.829 automatic empty zone: 23.172.IN-ADDR.ARPA +16-Mar-2018 20:18:13.829 automatic empty zone: 24.172.IN-ADDR.ARPA +16-Mar-2018 20:18:13.829 automatic empty zone: 25.172.IN-ADDR.ARPA +16-Mar-2018 20:18:13.829 automatic empty zone: 26.172.IN-ADDR.ARPA +16-Mar-2018 20:18:13.829 automatic empty zone: 27.172.IN-ADDR.ARPA +16-Mar-2018 20:18:13.829 automatic empty zone: 28.172.IN-ADDR.ARPA +16-Mar-2018 20:18:13.829 automatic empty zone: 29.172.IN-ADDR.ARPA +16-Mar-2018 20:18:13.829 automatic empty zone: 30.172.IN-ADDR.ARPA +16-Mar-2018 20:18:13.829 automatic empty zone: 31.172.IN-ADDR.ARPA +16-Mar-2018 20:18:13.829 automatic empty zone: 168.192.IN-ADDR.ARPA +16-Mar-2018 20:18:13.829 automatic empty zone: 64.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.829 automatic empty zone: 65.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.829 automatic empty zone: 66.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.829 automatic empty zone: 67.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.829 automatic empty zone: 68.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 69.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 70.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 71.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 72.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 73.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 74.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 75.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 76.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 77.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 78.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 79.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 80.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 81.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 82.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 83.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 84.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 85.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 86.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 87.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 88.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 89.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 90.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 91.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 92.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 93.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 94.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 95.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 96.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 97.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 98.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 99.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 100.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 101.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 102.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 103.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 104.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 105.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 106.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 107.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 108.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 109.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 110.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 111.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 112.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 113.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.830 automatic empty zone: 114.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.831 automatic empty zone: 115.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.831 automatic empty zone: 116.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.831 automatic empty zone: 117.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.831 automatic empty zone: 118.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.831 automatic empty zone: 119.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.831 automatic empty zone: 120.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.831 automatic empty zone: 121.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.831 automatic empty zone: 122.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.831 automatic empty zone: 123.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.831 automatic empty zone: 124.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.831 automatic empty zone: 125.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.831 automatic empty zone: 126.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.831 automatic empty zone: 127.100.IN-ADDR.ARPA +16-Mar-2018 20:18:13.831 automatic empty zone: 0.IN-ADDR.ARPA +16-Mar-2018 20:18:13.831 automatic empty zone: 127.IN-ADDR.ARPA +16-Mar-2018 20:18:13.831 automatic empty zone: 254.169.IN-ADDR.ARPA +16-Mar-2018 20:18:13.831 automatic empty zone: 2.0.192.IN-ADDR.ARPA +16-Mar-2018 20:18:13.831 automatic empty zone: 100.51.198.IN-ADDR.ARPA +16-Mar-2018 20:18:13.831 automatic empty zone: 113.0.203.IN-ADDR.ARPA +16-Mar-2018 20:18:13.831 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +16-Mar-2018 20:18:13.831 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +16-Mar-2018 20:18:13.831 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +16-Mar-2018 20:18:13.831 automatic empty zone: D.F.IP6.ARPA +16-Mar-2018 20:18:13.831 automatic empty zone: 8.E.F.IP6.ARPA +16-Mar-2018 20:18:13.831 automatic empty zone: 9.E.F.IP6.ARPA +16-Mar-2018 20:18:13.831 automatic empty zone: A.E.F.IP6.ARPA +16-Mar-2018 20:18:13.831 automatic empty zone: B.E.F.IP6.ARPA +16-Mar-2018 20:18:13.831 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +16-Mar-2018 20:18:13.831 automatic empty zone: EMPTY.AS112.ARPA +16-Mar-2018 20:18:13.831 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +16-Mar-2018 20:18:13.834 configuring command channel from '/opt/local/etc/rndc.key' +16-Mar-2018 20:18:13.834 couldn't add command channel 127.0.0.1#953: file not found +16-Mar-2018 20:18:13.834 configuring command channel from '/opt/local/etc/rndc.key' +16-Mar-2018 20:18:13.834 couldn't add command channel ::1#953: file not found +16-Mar-2018 20:18:13.834 not using config file logging statement for logging due to -g option +16-Mar-2018 20:18:13.835 managed-keys-zone: loaded serial 0 +16-Mar-2018 20:18:13.865 zone local/IN: loaded serial 2 +16-Mar-2018 20:18:13.865 all zones loaded +16-Mar-2018 20:18:13.866 running +16-Mar-2018 20:18:19.893 shutting down +16-Mar-2018 20:18:19.894 no longer listening on 127.0.0.1#5400 +16-Mar-2018 20:18:20.003 exiting +=== Log Marked @ 2018-03-18 11:37:11 +1300 [41718] === +18-Mar-2018 11:37:11.098 starting BIND 9.12.0 +18-Mar-2018 11:37:11.098 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +18-Mar-2018 11:37:11.098 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +18-Mar-2018 11:37:11.098 running as: named -c named.conf -f -p 5400 -g +18-Mar-2018 11:37:11.098 ---------------------------------------------------- +18-Mar-2018 11:37:11.098 BIND 9 is maintained by Internet Systems Consortium, +18-Mar-2018 11:37:11.098 Inc. (ISC), a non-profit 501(c)(3) public-benefit +18-Mar-2018 11:37:11.098 corporation. Support and training for BIND 9 are +18-Mar-2018 11:37:11.098 available at https://www.isc.org/support +18-Mar-2018 11:37:11.098 ---------------------------------------------------- +18-Mar-2018 11:37:11.099 found 8 CPUs, using 8 worker threads +18-Mar-2018 11:37:11.099 using 7 UDP listeners per interface +18-Mar-2018 11:37:11.099 using up to 4096 sockets +18-Mar-2018 11:37:11.116 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +18-Mar-2018 11:37:11.116 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +18-Mar-2018 11:37:11.117 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +18-Mar-2018 11:37:11.118 using default UDP/IPv4 port range: [49152, 65535] +18-Mar-2018 11:37:11.119 using default UDP/IPv6 port range: [49152, 65535] +18-Mar-2018 11:37:11.120 listening on IPv4 interface lo0, 127.0.0.1#5400 +18-Mar-2018 11:37:11.123 generating session key for dynamic DNS +18-Mar-2018 11:37:11.125 could not open file '/opt/local/var/run/named/session.key': Permission denied +18-Mar-2018 11:37:11.125 could not create /opt/local/var/run/named/session.key +18-Mar-2018 11:37:11.125 failed to generate session key for dynamic DNS: permission denied +18-Mar-2018 11:37:11.127 sizing zone task pool based on 1 zones +18-Mar-2018 11:37:11.128 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +18-Mar-2018 11:37:11.132 set up managed keys zone for view _default, file 'managed-keys.bind' +18-Mar-2018 11:37:11.132 automatic empty zone: 10.IN-ADDR.ARPA +18-Mar-2018 11:37:11.132 automatic empty zone: 16.172.IN-ADDR.ARPA +18-Mar-2018 11:37:11.132 automatic empty zone: 17.172.IN-ADDR.ARPA +18-Mar-2018 11:37:11.132 automatic empty zone: 18.172.IN-ADDR.ARPA +18-Mar-2018 11:37:11.132 automatic empty zone: 19.172.IN-ADDR.ARPA +18-Mar-2018 11:37:11.132 automatic empty zone: 20.172.IN-ADDR.ARPA +18-Mar-2018 11:37:11.132 automatic empty zone: 21.172.IN-ADDR.ARPA +18-Mar-2018 11:37:11.132 automatic empty zone: 22.172.IN-ADDR.ARPA +18-Mar-2018 11:37:11.132 automatic empty zone: 23.172.IN-ADDR.ARPA +18-Mar-2018 11:37:11.132 automatic empty zone: 24.172.IN-ADDR.ARPA +18-Mar-2018 11:37:11.132 automatic empty zone: 25.172.IN-ADDR.ARPA +18-Mar-2018 11:37:11.132 automatic empty zone: 26.172.IN-ADDR.ARPA +18-Mar-2018 11:37:11.132 automatic empty zone: 27.172.IN-ADDR.ARPA +18-Mar-2018 11:37:11.132 automatic empty zone: 28.172.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 29.172.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 30.172.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 31.172.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 168.192.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 64.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 65.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 66.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 67.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 68.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 69.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 70.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 71.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 72.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 73.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 74.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 75.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 76.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 77.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 78.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 79.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 80.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 81.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 82.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 83.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 84.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 85.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 86.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 87.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 88.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 89.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 90.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 91.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 92.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 93.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 94.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.133 automatic empty zone: 95.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 96.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 97.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 98.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 99.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 100.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 101.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 102.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 103.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 104.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 105.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 106.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 107.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 108.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 109.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 110.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 111.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 112.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 113.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 114.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 115.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 116.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 117.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 118.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 119.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 120.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 121.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 122.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 123.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 124.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 125.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 126.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 127.100.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 0.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 127.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 254.169.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 2.0.192.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 100.51.198.IN-ADDR.ARPA +18-Mar-2018 11:37:11.134 automatic empty zone: 113.0.203.IN-ADDR.ARPA +18-Mar-2018 11:37:11.135 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +18-Mar-2018 11:37:11.135 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +18-Mar-2018 11:37:11.135 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +18-Mar-2018 11:37:11.135 automatic empty zone: D.F.IP6.ARPA +18-Mar-2018 11:37:11.135 automatic empty zone: 8.E.F.IP6.ARPA +18-Mar-2018 11:37:11.135 automatic empty zone: 9.E.F.IP6.ARPA +18-Mar-2018 11:37:11.135 automatic empty zone: A.E.F.IP6.ARPA +18-Mar-2018 11:37:11.135 automatic empty zone: B.E.F.IP6.ARPA +18-Mar-2018 11:37:11.135 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +18-Mar-2018 11:37:11.135 automatic empty zone: EMPTY.AS112.ARPA +18-Mar-2018 11:37:11.135 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +18-Mar-2018 11:37:11.138 configuring command channel from '/opt/local/etc/rndc.key' +18-Mar-2018 11:37:11.138 couldn't add command channel 127.0.0.1#953: file not found +18-Mar-2018 11:37:11.138 configuring command channel from '/opt/local/etc/rndc.key' +18-Mar-2018 11:37:11.138 couldn't add command channel ::1#953: file not found +18-Mar-2018 11:37:11.138 not using config file logging statement for logging due to -g option +18-Mar-2018 11:37:11.139 managed-keys-zone: loaded serial 0 +18-Mar-2018 11:37:11.168 zone local/IN: loaded serial 2 +18-Mar-2018 11:37:11.169 all zones loaded +18-Mar-2018 11:37:11.169 running +18-Mar-2018 11:37:15.370 shutting down +18-Mar-2018 11:37:15.370 no longer listening on 127.0.0.1#5400 +18-Mar-2018 11:37:15.476 exiting +=== Log Marked @ 2018-03-21 20:27:43 +1300 [88630] === +21-Mar-2018 20:27:43.797 starting BIND 9.12.0 +21-Mar-2018 20:27:43.798 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +21-Mar-2018 20:27:43.798 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +21-Mar-2018 20:27:43.798 running as: named -c named.conf -f -p 5400 -g +21-Mar-2018 20:27:43.798 ---------------------------------------------------- +21-Mar-2018 20:27:43.798 BIND 9 is maintained by Internet Systems Consortium, +21-Mar-2018 20:27:43.798 Inc. (ISC), a non-profit 501(c)(3) public-benefit +21-Mar-2018 20:27:43.798 corporation. Support and training for BIND 9 are +21-Mar-2018 20:27:43.798 available at https://www.isc.org/support +21-Mar-2018 20:27:43.798 ---------------------------------------------------- +21-Mar-2018 20:27:43.799 found 8 CPUs, using 8 worker threads +21-Mar-2018 20:27:43.799 using 7 UDP listeners per interface +21-Mar-2018 20:27:43.799 using up to 4096 sockets +21-Mar-2018 20:27:43.820 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +21-Mar-2018 20:27:43.820 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +21-Mar-2018 20:27:43.821 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +21-Mar-2018 20:27:43.823 using default UDP/IPv4 port range: [49152, 65535] +21-Mar-2018 20:27:43.823 using default UDP/IPv6 port range: [49152, 65535] +21-Mar-2018 20:27:43.823 listening on IPv4 interface lo0, 127.0.0.1#5400 +21-Mar-2018 20:27:43.827 generating session key for dynamic DNS +21-Mar-2018 20:27:43.830 could not open file '/opt/local/var/run/named/session.key': Permission denied +21-Mar-2018 20:27:43.830 could not create /opt/local/var/run/named/session.key +21-Mar-2018 20:27:43.830 failed to generate session key for dynamic DNS: permission denied +21-Mar-2018 20:27:43.832 sizing zone task pool based on 1 zones +21-Mar-2018 20:27:43.833 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +21-Mar-2018 20:27:43.838 set up managed keys zone for view _default, file 'managed-keys.bind' +21-Mar-2018 20:27:43.838 automatic empty zone: 10.IN-ADDR.ARPA +21-Mar-2018 20:27:43.838 automatic empty zone: 16.172.IN-ADDR.ARPA +21-Mar-2018 20:27:43.838 automatic empty zone: 17.172.IN-ADDR.ARPA +21-Mar-2018 20:27:43.838 automatic empty zone: 18.172.IN-ADDR.ARPA +21-Mar-2018 20:27:43.838 automatic empty zone: 19.172.IN-ADDR.ARPA +21-Mar-2018 20:27:43.838 automatic empty zone: 20.172.IN-ADDR.ARPA +21-Mar-2018 20:27:43.838 automatic empty zone: 21.172.IN-ADDR.ARPA +21-Mar-2018 20:27:43.838 automatic empty zone: 22.172.IN-ADDR.ARPA +21-Mar-2018 20:27:43.838 automatic empty zone: 23.172.IN-ADDR.ARPA +21-Mar-2018 20:27:43.838 automatic empty zone: 24.172.IN-ADDR.ARPA +21-Mar-2018 20:27:43.838 automatic empty zone: 25.172.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 26.172.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 27.172.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 28.172.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 29.172.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 30.172.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 31.172.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 168.192.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 64.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 65.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 66.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 67.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 68.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 69.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 70.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 71.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 72.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 73.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 74.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 75.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 76.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 77.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 78.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 79.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 80.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 81.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 82.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 83.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 84.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 85.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 86.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 87.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 88.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 89.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 90.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 91.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.839 automatic empty zone: 92.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 93.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 94.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 95.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 96.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 97.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 98.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 99.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 100.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 101.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 102.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 103.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 104.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 105.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 106.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 107.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 108.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 109.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 110.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 111.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 112.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 113.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 114.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 115.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 116.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 117.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 118.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 119.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 120.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 121.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 122.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 123.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 124.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 125.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 126.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 127.100.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 0.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 127.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 254.169.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 2.0.192.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 100.51.198.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 113.0.203.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +21-Mar-2018 20:27:43.840 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +21-Mar-2018 20:27:43.841 automatic empty zone: D.F.IP6.ARPA +21-Mar-2018 20:27:43.841 automatic empty zone: 8.E.F.IP6.ARPA +21-Mar-2018 20:27:43.841 automatic empty zone: 9.E.F.IP6.ARPA +21-Mar-2018 20:27:43.841 automatic empty zone: A.E.F.IP6.ARPA +21-Mar-2018 20:27:43.841 automatic empty zone: B.E.F.IP6.ARPA +21-Mar-2018 20:27:43.841 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +21-Mar-2018 20:27:43.841 automatic empty zone: EMPTY.AS112.ARPA +21-Mar-2018 20:27:43.841 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +21-Mar-2018 20:27:43.844 configuring command channel from '/opt/local/etc/rndc.key' +21-Mar-2018 20:27:43.844 couldn't add command channel 127.0.0.1#953: file not found +21-Mar-2018 20:27:43.844 configuring command channel from '/opt/local/etc/rndc.key' +21-Mar-2018 20:27:43.844 couldn't add command channel ::1#953: file not found +21-Mar-2018 20:27:43.844 not using config file logging statement for logging due to -g option +21-Mar-2018 20:27:43.845 managed-keys-zone: loaded serial 0 +21-Mar-2018 20:27:43.877 zone local/IN: loaded serial 2 +21-Mar-2018 20:27:43.877 all zones loaded +21-Mar-2018 20:27:43.878 running +21-Mar-2018 20:27:50.251 shutting down +21-Mar-2018 20:27:50.252 no longer listening on 127.0.0.1#5400 +21-Mar-2018 20:27:50.362 exiting +=== Log Marked @ 2018-03-25 16:19:10 +1300 [1634] === +25-Mar-2018 16:19:10.835 starting BIND 9.12.0 +25-Mar-2018 16:19:10.835 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +25-Mar-2018 16:19:10.835 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +25-Mar-2018 16:19:10.835 running as: named -c named.conf -f -p 5400 -g +25-Mar-2018 16:19:10.835 ---------------------------------------------------- +25-Mar-2018 16:19:10.835 BIND 9 is maintained by Internet Systems Consortium, +25-Mar-2018 16:19:10.836 Inc. (ISC), a non-profit 501(c)(3) public-benefit +25-Mar-2018 16:19:10.836 corporation. Support and training for BIND 9 are +25-Mar-2018 16:19:10.836 available at https://www.isc.org/support +25-Mar-2018 16:19:10.836 ---------------------------------------------------- +25-Mar-2018 16:19:10.836 found 8 CPUs, using 8 worker threads +25-Mar-2018 16:19:10.836 using 7 UDP listeners per interface +25-Mar-2018 16:19:10.837 using up to 4096 sockets +25-Mar-2018 16:19:10.859 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +25-Mar-2018 16:19:10.859 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +25-Mar-2018 16:19:10.860 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +25-Mar-2018 16:19:10.861 using default UDP/IPv4 port range: [49152, 65535] +25-Mar-2018 16:19:10.861 using default UDP/IPv6 port range: [49152, 65535] +25-Mar-2018 16:19:10.862 listening on IPv4 interface lo0, 127.0.0.1#5400 +25-Mar-2018 16:19:10.865 generating session key for dynamic DNS +25-Mar-2018 16:19:10.866 could not open file '/opt/local/var/run/named/session.key': Permission denied +25-Mar-2018 16:19:10.866 could not create /opt/local/var/run/named/session.key +25-Mar-2018 16:19:10.867 failed to generate session key for dynamic DNS: permission denied +25-Mar-2018 16:19:10.868 sizing zone task pool based on 1 zones +25-Mar-2018 16:19:10.869 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-Mar-2018 16:19:10.873 set up managed keys zone for view _default, file 'managed-keys.bind' +25-Mar-2018 16:19:10.873 automatic empty zone: 10.IN-ADDR.ARPA +25-Mar-2018 16:19:10.873 automatic empty zone: 16.172.IN-ADDR.ARPA +25-Mar-2018 16:19:10.873 automatic empty zone: 17.172.IN-ADDR.ARPA +25-Mar-2018 16:19:10.873 automatic empty zone: 18.172.IN-ADDR.ARPA +25-Mar-2018 16:19:10.873 automatic empty zone: 19.172.IN-ADDR.ARPA +25-Mar-2018 16:19:10.873 automatic empty zone: 20.172.IN-ADDR.ARPA +25-Mar-2018 16:19:10.873 automatic empty zone: 21.172.IN-ADDR.ARPA +25-Mar-2018 16:19:10.873 automatic empty zone: 22.172.IN-ADDR.ARPA +25-Mar-2018 16:19:10.873 automatic empty zone: 23.172.IN-ADDR.ARPA +25-Mar-2018 16:19:10.873 automatic empty zone: 24.172.IN-ADDR.ARPA +25-Mar-2018 16:19:10.873 automatic empty zone: 25.172.IN-ADDR.ARPA +25-Mar-2018 16:19:10.873 automatic empty zone: 26.172.IN-ADDR.ARPA +25-Mar-2018 16:19:10.873 automatic empty zone: 27.172.IN-ADDR.ARPA +25-Mar-2018 16:19:10.873 automatic empty zone: 28.172.IN-ADDR.ARPA +25-Mar-2018 16:19:10.873 automatic empty zone: 29.172.IN-ADDR.ARPA +25-Mar-2018 16:19:10.873 automatic empty zone: 30.172.IN-ADDR.ARPA +25-Mar-2018 16:19:10.873 automatic empty zone: 31.172.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 168.192.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 64.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 65.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 66.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 67.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 68.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 69.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 70.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 71.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 72.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 73.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 74.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 75.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 76.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 77.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 78.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 79.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 80.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 81.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 82.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 83.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 84.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 85.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 86.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 87.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 88.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 89.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 90.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 91.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 92.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 93.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 94.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 95.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 96.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 97.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 98.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 99.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 100.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 101.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 102.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 103.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 104.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 105.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 106.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.874 automatic empty zone: 107.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: 108.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: 109.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: 110.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: 111.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: 112.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: 113.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: 114.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: 115.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: 116.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: 117.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: 118.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: 119.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: 120.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: 121.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: 122.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: 123.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: 124.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: 125.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: 126.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: 127.100.IN-ADDR.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: 0.IN-ADDR.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: 127.IN-ADDR.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: 254.169.IN-ADDR.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: 2.0.192.IN-ADDR.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: 100.51.198.IN-ADDR.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: 113.0.203.IN-ADDR.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: D.F.IP6.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: 8.E.F.IP6.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: 9.E.F.IP6.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: A.E.F.IP6.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: B.E.F.IP6.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +25-Mar-2018 16:19:10.875 automatic empty zone: EMPTY.AS112.ARPA +25-Mar-2018 16:19:10.876 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-Mar-2018 16:19:10.879 configuring command channel from '/opt/local/etc/rndc.key' +25-Mar-2018 16:19:10.879 couldn't add command channel 127.0.0.1#953: file not found +25-Mar-2018 16:19:10.879 configuring command channel from '/opt/local/etc/rndc.key' +25-Mar-2018 16:19:10.879 couldn't add command channel ::1#953: file not found +25-Mar-2018 16:19:10.879 not using config file logging statement for logging due to -g option +25-Mar-2018 16:19:10.880 managed-keys-zone: loaded serial 0 +25-Mar-2018 16:19:10.913 zone local/IN: loaded serial 2 +25-Mar-2018 16:19:10.913 all zones loaded +25-Mar-2018 16:19:10.913 running +25-Mar-2018 16:19:11.036 shutting down +25-Mar-2018 16:19:11.037 no longer listening on 127.0.0.1#5400 +25-Mar-2018 16:19:11.138 exiting +=== Log Marked @ 2018-03-25 16:39:57 +1300 [1964] === +25-Mar-2018 16:39:57.541 starting BIND 9.12.0 +25-Mar-2018 16:39:57.541 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +25-Mar-2018 16:39:57.541 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +25-Mar-2018 16:39:57.541 running as: named -c named.conf -f -p 5400 -g +25-Mar-2018 16:39:57.541 ---------------------------------------------------- +25-Mar-2018 16:39:57.541 BIND 9 is maintained by Internet Systems Consortium, +25-Mar-2018 16:39:57.541 Inc. (ISC), a non-profit 501(c)(3) public-benefit +25-Mar-2018 16:39:57.541 corporation. Support and training for BIND 9 are +25-Mar-2018 16:39:57.541 available at https://www.isc.org/support +25-Mar-2018 16:39:57.541 ---------------------------------------------------- +25-Mar-2018 16:39:57.541 found 8 CPUs, using 8 worker threads +25-Mar-2018 16:39:57.542 using 7 UDP listeners per interface +25-Mar-2018 16:39:57.542 using up to 4096 sockets +25-Mar-2018 16:39:57.546 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +25-Mar-2018 16:39:57.546 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +25-Mar-2018 16:39:57.546 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +25-Mar-2018 16:39:57.546 using default UDP/IPv4 port range: [49152, 65535] +25-Mar-2018 16:39:57.546 using default UDP/IPv6 port range: [49152, 65535] +25-Mar-2018 16:39:57.547 listening on IPv4 interface lo0, 127.0.0.1#5400 +25-Mar-2018 16:39:57.549 generating session key for dynamic DNS +25-Mar-2018 16:39:57.549 could not open file '/opt/local/var/run/named/session.key': Permission denied +25-Mar-2018 16:39:57.549 could not create /opt/local/var/run/named/session.key +25-Mar-2018 16:39:57.549 failed to generate session key for dynamic DNS: permission denied +25-Mar-2018 16:39:57.549 sizing zone task pool based on 1 zones +25-Mar-2018 16:39:57.549 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-Mar-2018 16:39:57.552 set up managed keys zone for view _default, file 'managed-keys.bind' +25-Mar-2018 16:39:57.552 automatic empty zone: 10.IN-ADDR.ARPA +25-Mar-2018 16:39:57.552 automatic empty zone: 16.172.IN-ADDR.ARPA +25-Mar-2018 16:39:57.552 automatic empty zone: 17.172.IN-ADDR.ARPA +25-Mar-2018 16:39:57.552 automatic empty zone: 18.172.IN-ADDR.ARPA +25-Mar-2018 16:39:57.552 automatic empty zone: 19.172.IN-ADDR.ARPA +25-Mar-2018 16:39:57.552 automatic empty zone: 20.172.IN-ADDR.ARPA +25-Mar-2018 16:39:57.552 automatic empty zone: 21.172.IN-ADDR.ARPA +25-Mar-2018 16:39:57.552 automatic empty zone: 22.172.IN-ADDR.ARPA +25-Mar-2018 16:39:57.552 automatic empty zone: 23.172.IN-ADDR.ARPA +25-Mar-2018 16:39:57.552 automatic empty zone: 24.172.IN-ADDR.ARPA +25-Mar-2018 16:39:57.552 automatic empty zone: 25.172.IN-ADDR.ARPA +25-Mar-2018 16:39:57.552 automatic empty zone: 26.172.IN-ADDR.ARPA +25-Mar-2018 16:39:57.552 automatic empty zone: 27.172.IN-ADDR.ARPA +25-Mar-2018 16:39:57.552 automatic empty zone: 28.172.IN-ADDR.ARPA +25-Mar-2018 16:39:57.552 automatic empty zone: 29.172.IN-ADDR.ARPA +25-Mar-2018 16:39:57.552 automatic empty zone: 30.172.IN-ADDR.ARPA +25-Mar-2018 16:39:57.552 automatic empty zone: 31.172.IN-ADDR.ARPA +25-Mar-2018 16:39:57.552 automatic empty zone: 168.192.IN-ADDR.ARPA +25-Mar-2018 16:39:57.552 automatic empty zone: 64.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.552 automatic empty zone: 65.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.552 automatic empty zone: 66.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.552 automatic empty zone: 67.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.552 automatic empty zone: 68.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.552 automatic empty zone: 69.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.552 automatic empty zone: 70.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.552 automatic empty zone: 71.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 72.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 73.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 74.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 75.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 76.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 77.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 78.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 79.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 80.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 81.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 82.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 83.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 84.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 85.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 86.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 87.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 88.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 89.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 90.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 91.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 92.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 93.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 94.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 95.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 96.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 97.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 98.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 99.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 100.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 101.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 102.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 103.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 104.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 105.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 106.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 107.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 108.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 109.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 110.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 111.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 112.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 113.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 114.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 115.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 116.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 117.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 118.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 119.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 120.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 121.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 122.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.553 automatic empty zone: 123.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.554 automatic empty zone: 124.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.554 automatic empty zone: 125.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.554 automatic empty zone: 126.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.554 automatic empty zone: 127.100.IN-ADDR.ARPA +25-Mar-2018 16:39:57.554 automatic empty zone: 0.IN-ADDR.ARPA +25-Mar-2018 16:39:57.554 automatic empty zone: 127.IN-ADDR.ARPA +25-Mar-2018 16:39:57.554 automatic empty zone: 254.169.IN-ADDR.ARPA +25-Mar-2018 16:39:57.554 automatic empty zone: 2.0.192.IN-ADDR.ARPA +25-Mar-2018 16:39:57.554 automatic empty zone: 100.51.198.IN-ADDR.ARPA +25-Mar-2018 16:39:57.554 automatic empty zone: 113.0.203.IN-ADDR.ARPA +25-Mar-2018 16:39:57.554 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +25-Mar-2018 16:39:57.554 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-Mar-2018 16:39:57.554 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-Mar-2018 16:39:57.554 automatic empty zone: D.F.IP6.ARPA +25-Mar-2018 16:39:57.554 automatic empty zone: 8.E.F.IP6.ARPA +25-Mar-2018 16:39:57.554 automatic empty zone: 9.E.F.IP6.ARPA +25-Mar-2018 16:39:57.554 automatic empty zone: A.E.F.IP6.ARPA +25-Mar-2018 16:39:57.554 automatic empty zone: B.E.F.IP6.ARPA +25-Mar-2018 16:39:57.554 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +25-Mar-2018 16:39:57.554 automatic empty zone: EMPTY.AS112.ARPA +25-Mar-2018 16:39:57.554 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-Mar-2018 16:39:57.557 configuring command channel from '/opt/local/etc/rndc.key' +25-Mar-2018 16:39:57.557 couldn't add command channel 127.0.0.1#953: file not found +25-Mar-2018 16:39:57.557 configuring command channel from '/opt/local/etc/rndc.key' +25-Mar-2018 16:39:57.557 couldn't add command channel ::1#953: file not found +25-Mar-2018 16:39:57.557 not using config file logging statement for logging due to -g option +25-Mar-2018 16:39:57.557 managed-keys-zone: loaded serial 0 +25-Mar-2018 16:39:57.589 zone local/IN: loaded serial 2 +25-Mar-2018 16:39:57.589 all zones loaded +25-Mar-2018 16:39:57.589 running +25-Mar-2018 16:40:01.552 shutting down +25-Mar-2018 16:40:01.552 no longer listening on 127.0.0.1#5400 +25-Mar-2018 16:40:01.668 exiting +=== Log Marked @ 2018-03-25 16:40:37 +1300 [1985] === +25-Mar-2018 16:40:37.217 starting BIND 9.12.0 +25-Mar-2018 16:40:37.218 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +25-Mar-2018 16:40:37.218 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +25-Mar-2018 16:40:37.218 running as: named -c named.conf -f -p 5400 -g +25-Mar-2018 16:40:37.218 ---------------------------------------------------- +25-Mar-2018 16:40:37.218 BIND 9 is maintained by Internet Systems Consortium, +25-Mar-2018 16:40:37.218 Inc. (ISC), a non-profit 501(c)(3) public-benefit +25-Mar-2018 16:40:37.218 corporation. Support and training for BIND 9 are +25-Mar-2018 16:40:37.218 available at https://www.isc.org/support +25-Mar-2018 16:40:37.218 ---------------------------------------------------- +25-Mar-2018 16:40:37.218 found 8 CPUs, using 8 worker threads +25-Mar-2018 16:40:37.218 using 7 UDP listeners per interface +25-Mar-2018 16:40:37.218 using up to 4096 sockets +25-Mar-2018 16:40:37.223 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +25-Mar-2018 16:40:37.223 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +25-Mar-2018 16:40:37.223 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +25-Mar-2018 16:40:37.224 using default UDP/IPv4 port range: [49152, 65535] +25-Mar-2018 16:40:37.224 using default UDP/IPv6 port range: [49152, 65535] +25-Mar-2018 16:40:37.224 listening on IPv4 interface lo0, 127.0.0.1#5400 +25-Mar-2018 16:40:37.227 generating session key for dynamic DNS +25-Mar-2018 16:40:37.228 could not open file '/opt/local/var/run/named/session.key': Permission denied +25-Mar-2018 16:40:37.228 could not create /opt/local/var/run/named/session.key +25-Mar-2018 16:40:37.228 failed to generate session key for dynamic DNS: permission denied +25-Mar-2018 16:40:37.228 sizing zone task pool based on 1 zones +25-Mar-2018 16:40:37.228 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-Mar-2018 16:40:37.231 set up managed keys zone for view _default, file 'managed-keys.bind' +25-Mar-2018 16:40:37.231 automatic empty zone: 10.IN-ADDR.ARPA +25-Mar-2018 16:40:37.231 automatic empty zone: 16.172.IN-ADDR.ARPA +25-Mar-2018 16:40:37.231 automatic empty zone: 17.172.IN-ADDR.ARPA +25-Mar-2018 16:40:37.231 automatic empty zone: 18.172.IN-ADDR.ARPA +25-Mar-2018 16:40:37.231 automatic empty zone: 19.172.IN-ADDR.ARPA +25-Mar-2018 16:40:37.231 automatic empty zone: 20.172.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 21.172.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 22.172.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 23.172.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 24.172.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 25.172.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 26.172.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 27.172.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 28.172.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 29.172.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 30.172.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 31.172.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 168.192.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 64.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 65.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 66.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 67.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 68.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 69.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 70.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 71.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 72.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 73.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 74.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 75.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 76.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 77.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 78.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 79.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 80.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 81.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 82.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 83.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 84.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 85.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 86.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 87.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 88.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 89.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 90.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.232 automatic empty zone: 91.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.233 automatic empty zone: 92.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.233 automatic empty zone: 93.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.233 automatic empty zone: 94.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.233 automatic empty zone: 95.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.233 automatic empty zone: 96.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.233 automatic empty zone: 97.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.233 automatic empty zone: 98.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.233 automatic empty zone: 99.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.233 automatic empty zone: 100.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.233 automatic empty zone: 101.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.233 automatic empty zone: 102.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.233 automatic empty zone: 103.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.233 automatic empty zone: 104.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.233 automatic empty zone: 105.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.233 automatic empty zone: 106.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.233 automatic empty zone: 107.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.233 automatic empty zone: 108.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.233 automatic empty zone: 109.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.233 automatic empty zone: 110.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.233 automatic empty zone: 111.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.233 automatic empty zone: 112.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.233 automatic empty zone: 113.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.233 automatic empty zone: 114.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.233 automatic empty zone: 115.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.233 automatic empty zone: 116.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.233 automatic empty zone: 117.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.233 automatic empty zone: 118.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.233 automatic empty zone: 119.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.233 automatic empty zone: 120.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.233 automatic empty zone: 121.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.233 automatic empty zone: 122.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.233 automatic empty zone: 123.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.233 automatic empty zone: 124.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.233 automatic empty zone: 125.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.233 automatic empty zone: 126.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.234 automatic empty zone: 127.100.IN-ADDR.ARPA +25-Mar-2018 16:40:37.234 automatic empty zone: 0.IN-ADDR.ARPA +25-Mar-2018 16:40:37.234 automatic empty zone: 127.IN-ADDR.ARPA +25-Mar-2018 16:40:37.234 automatic empty zone: 254.169.IN-ADDR.ARPA +25-Mar-2018 16:40:37.234 automatic empty zone: 2.0.192.IN-ADDR.ARPA +25-Mar-2018 16:40:37.234 automatic empty zone: 100.51.198.IN-ADDR.ARPA +25-Mar-2018 16:40:37.234 automatic empty zone: 113.0.203.IN-ADDR.ARPA +25-Mar-2018 16:40:37.234 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +25-Mar-2018 16:40:37.234 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-Mar-2018 16:40:37.234 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-Mar-2018 16:40:37.234 automatic empty zone: D.F.IP6.ARPA +25-Mar-2018 16:40:37.234 automatic empty zone: 8.E.F.IP6.ARPA +25-Mar-2018 16:40:37.234 automatic empty zone: 9.E.F.IP6.ARPA +25-Mar-2018 16:40:37.234 automatic empty zone: A.E.F.IP6.ARPA +25-Mar-2018 16:40:37.234 automatic empty zone: B.E.F.IP6.ARPA +25-Mar-2018 16:40:37.234 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +25-Mar-2018 16:40:37.234 automatic empty zone: EMPTY.AS112.ARPA +25-Mar-2018 16:40:37.234 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-Mar-2018 16:40:37.237 configuring command channel from '/opt/local/etc/rndc.key' +25-Mar-2018 16:40:37.237 couldn't add command channel 127.0.0.1#953: file not found +25-Mar-2018 16:40:37.237 configuring command channel from '/opt/local/etc/rndc.key' +25-Mar-2018 16:40:37.237 couldn't add command channel ::1#953: file not found +25-Mar-2018 16:40:37.237 not using config file logging statement for logging due to -g option +25-Mar-2018 16:40:37.237 managed-keys-zone: loaded serial 0 +25-Mar-2018 16:40:37.270 zone local/IN: loaded serial 2 +25-Mar-2018 16:40:37.270 all zones loaded +25-Mar-2018 16:40:37.270 running +25-Mar-2018 16:40:41.322 shutting down +25-Mar-2018 16:40:41.322 no longer listening on 127.0.0.1#5400 +25-Mar-2018 16:40:41.427 exiting +=== Log Marked @ 2018-03-25 16:41:23 +1300 [2008] === +25-Mar-2018 16:41:23.503 starting BIND 9.12.0 +25-Mar-2018 16:41:23.503 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +25-Mar-2018 16:41:23.503 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +25-Mar-2018 16:41:23.503 running as: named -c named.conf -f -p 5400 -g +25-Mar-2018 16:41:23.503 ---------------------------------------------------- +25-Mar-2018 16:41:23.503 BIND 9 is maintained by Internet Systems Consortium, +25-Mar-2018 16:41:23.503 Inc. (ISC), a non-profit 501(c)(3) public-benefit +25-Mar-2018 16:41:23.503 corporation. Support and training for BIND 9 are +25-Mar-2018 16:41:23.503 available at https://www.isc.org/support +25-Mar-2018 16:41:23.503 ---------------------------------------------------- +25-Mar-2018 16:41:23.503 found 8 CPUs, using 8 worker threads +25-Mar-2018 16:41:23.503 using 7 UDP listeners per interface +25-Mar-2018 16:41:23.504 using up to 4096 sockets +25-Mar-2018 16:41:23.508 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +25-Mar-2018 16:41:23.508 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +25-Mar-2018 16:41:23.508 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +25-Mar-2018 16:41:23.508 using default UDP/IPv4 port range: [49152, 65535] +25-Mar-2018 16:41:23.508 using default UDP/IPv6 port range: [49152, 65535] +25-Mar-2018 16:41:23.509 listening on IPv4 interface lo0, 127.0.0.1#5400 +25-Mar-2018 16:41:23.511 generating session key for dynamic DNS +25-Mar-2018 16:41:23.511 could not open file '/opt/local/var/run/named/session.key': Permission denied +25-Mar-2018 16:41:23.511 could not create /opt/local/var/run/named/session.key +25-Mar-2018 16:41:23.511 failed to generate session key for dynamic DNS: permission denied +25-Mar-2018 16:41:23.511 sizing zone task pool based on 1 zones +25-Mar-2018 16:41:23.511 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-Mar-2018 16:41:23.514 set up managed keys zone for view _default, file 'managed-keys.bind' +25-Mar-2018 16:41:23.514 automatic empty zone: 10.IN-ADDR.ARPA +25-Mar-2018 16:41:23.514 automatic empty zone: 16.172.IN-ADDR.ARPA +25-Mar-2018 16:41:23.514 automatic empty zone: 17.172.IN-ADDR.ARPA +25-Mar-2018 16:41:23.514 automatic empty zone: 18.172.IN-ADDR.ARPA +25-Mar-2018 16:41:23.514 automatic empty zone: 19.172.IN-ADDR.ARPA +25-Mar-2018 16:41:23.514 automatic empty zone: 20.172.IN-ADDR.ARPA +25-Mar-2018 16:41:23.514 automatic empty zone: 21.172.IN-ADDR.ARPA +25-Mar-2018 16:41:23.514 automatic empty zone: 22.172.IN-ADDR.ARPA +25-Mar-2018 16:41:23.514 automatic empty zone: 23.172.IN-ADDR.ARPA +25-Mar-2018 16:41:23.514 automatic empty zone: 24.172.IN-ADDR.ARPA +25-Mar-2018 16:41:23.514 automatic empty zone: 25.172.IN-ADDR.ARPA +25-Mar-2018 16:41:23.514 automatic empty zone: 26.172.IN-ADDR.ARPA +25-Mar-2018 16:41:23.514 automatic empty zone: 27.172.IN-ADDR.ARPA +25-Mar-2018 16:41:23.514 automatic empty zone: 28.172.IN-ADDR.ARPA +25-Mar-2018 16:41:23.514 automatic empty zone: 29.172.IN-ADDR.ARPA +25-Mar-2018 16:41:23.514 automatic empty zone: 30.172.IN-ADDR.ARPA +25-Mar-2018 16:41:23.514 automatic empty zone: 31.172.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 168.192.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 64.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 65.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 66.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 67.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 68.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 69.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 70.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 71.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 72.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 73.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 74.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 75.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 76.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 77.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 78.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 79.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 80.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 81.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 82.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 83.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 84.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 85.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 86.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 87.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 88.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 89.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 90.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 91.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 92.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 93.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 94.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 95.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 96.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 97.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 98.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 99.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 100.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 101.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 102.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 103.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 104.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 105.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 106.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 107.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 108.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 109.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 110.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.515 automatic empty zone: 111.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.516 automatic empty zone: 112.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.516 automatic empty zone: 113.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.516 automatic empty zone: 114.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.516 automatic empty zone: 115.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.516 automatic empty zone: 116.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.516 automatic empty zone: 117.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.516 automatic empty zone: 118.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.516 automatic empty zone: 119.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.516 automatic empty zone: 120.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.516 automatic empty zone: 121.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.516 automatic empty zone: 122.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.516 automatic empty zone: 123.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.516 automatic empty zone: 124.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.516 automatic empty zone: 125.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.516 automatic empty zone: 126.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.516 automatic empty zone: 127.100.IN-ADDR.ARPA +25-Mar-2018 16:41:23.516 automatic empty zone: 0.IN-ADDR.ARPA +25-Mar-2018 16:41:23.516 automatic empty zone: 127.IN-ADDR.ARPA +25-Mar-2018 16:41:23.516 automatic empty zone: 254.169.IN-ADDR.ARPA +25-Mar-2018 16:41:23.516 automatic empty zone: 2.0.192.IN-ADDR.ARPA +25-Mar-2018 16:41:23.516 automatic empty zone: 100.51.198.IN-ADDR.ARPA +25-Mar-2018 16:41:23.516 automatic empty zone: 113.0.203.IN-ADDR.ARPA +25-Mar-2018 16:41:23.516 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +25-Mar-2018 16:41:23.516 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-Mar-2018 16:41:23.516 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-Mar-2018 16:41:23.516 automatic empty zone: D.F.IP6.ARPA +25-Mar-2018 16:41:23.516 automatic empty zone: 8.E.F.IP6.ARPA +25-Mar-2018 16:41:23.516 automatic empty zone: 9.E.F.IP6.ARPA +25-Mar-2018 16:41:23.516 automatic empty zone: A.E.F.IP6.ARPA +25-Mar-2018 16:41:23.516 automatic empty zone: B.E.F.IP6.ARPA +25-Mar-2018 16:41:23.516 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +25-Mar-2018 16:41:23.516 automatic empty zone: EMPTY.AS112.ARPA +25-Mar-2018 16:41:23.516 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-Mar-2018 16:41:23.519 configuring command channel from '/opt/local/etc/rndc.key' +25-Mar-2018 16:41:23.519 couldn't add command channel 127.0.0.1#953: file not found +25-Mar-2018 16:41:23.519 configuring command channel from '/opt/local/etc/rndc.key' +25-Mar-2018 16:41:23.519 couldn't add command channel ::1#953: file not found +25-Mar-2018 16:41:23.519 not using config file logging statement for logging due to -g option +25-Mar-2018 16:41:23.520 managed-keys-zone: loaded serial 0 +25-Mar-2018 16:41:23.555 zone local/IN: loaded serial 2 +25-Mar-2018 16:41:23.555 all zones loaded +25-Mar-2018 16:41:23.555 running +25-Mar-2018 16:41:27.364 shutting down +25-Mar-2018 16:41:27.364 no longer listening on 127.0.0.1#5400 +25-Mar-2018 16:41:27.479 exiting +=== Log Marked @ 2018-03-25 16:42:16 +1300 [2029] === +25-Mar-2018 16:42:16.933 starting BIND 9.12.0 +25-Mar-2018 16:42:16.933 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +25-Mar-2018 16:42:16.933 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +25-Mar-2018 16:42:16.933 running as: named -c named.conf -f -p 5400 -g +25-Mar-2018 16:42:16.933 ---------------------------------------------------- +25-Mar-2018 16:42:16.933 BIND 9 is maintained by Internet Systems Consortium, +25-Mar-2018 16:42:16.933 Inc. (ISC), a non-profit 501(c)(3) public-benefit +25-Mar-2018 16:42:16.933 corporation. Support and training for BIND 9 are +25-Mar-2018 16:42:16.933 available at https://www.isc.org/support +25-Mar-2018 16:42:16.933 ---------------------------------------------------- +25-Mar-2018 16:42:16.933 found 8 CPUs, using 8 worker threads +25-Mar-2018 16:42:16.933 using 7 UDP listeners per interface +25-Mar-2018 16:42:16.934 using up to 4096 sockets +25-Mar-2018 16:42:16.938 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +25-Mar-2018 16:42:16.938 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +25-Mar-2018 16:42:16.938 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +25-Mar-2018 16:42:16.938 using default UDP/IPv4 port range: [49152, 65535] +25-Mar-2018 16:42:16.938 using default UDP/IPv6 port range: [49152, 65535] +25-Mar-2018 16:42:16.939 listening on IPv4 interface lo0, 127.0.0.1#5400 +25-Mar-2018 16:42:16.941 generating session key for dynamic DNS +25-Mar-2018 16:42:16.941 could not open file '/opt/local/var/run/named/session.key': Permission denied +25-Mar-2018 16:42:16.941 could not create /opt/local/var/run/named/session.key +25-Mar-2018 16:42:16.941 failed to generate session key for dynamic DNS: permission denied +25-Mar-2018 16:42:16.941 sizing zone task pool based on 1 zones +25-Mar-2018 16:42:16.941 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-Mar-2018 16:42:16.944 set up managed keys zone for view _default, file 'managed-keys.bind' +25-Mar-2018 16:42:16.944 automatic empty zone: 10.IN-ADDR.ARPA +25-Mar-2018 16:42:16.944 automatic empty zone: 16.172.IN-ADDR.ARPA +25-Mar-2018 16:42:16.944 automatic empty zone: 17.172.IN-ADDR.ARPA +25-Mar-2018 16:42:16.944 automatic empty zone: 18.172.IN-ADDR.ARPA +25-Mar-2018 16:42:16.944 automatic empty zone: 19.172.IN-ADDR.ARPA +25-Mar-2018 16:42:16.944 automatic empty zone: 20.172.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 21.172.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 22.172.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 23.172.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 24.172.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 25.172.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 26.172.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 27.172.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 28.172.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 29.172.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 30.172.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 31.172.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 168.192.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 64.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 65.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 66.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 67.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 68.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 69.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 70.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 71.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 72.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 73.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 74.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 75.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 76.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 77.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 78.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 79.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 80.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 81.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 82.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 83.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 84.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 85.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 86.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 87.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 88.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 89.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 90.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 91.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 92.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 93.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 94.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 95.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 96.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 97.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.945 automatic empty zone: 98.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 99.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 100.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 101.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 102.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 103.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 104.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 105.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 106.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 107.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 108.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 109.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 110.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 111.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 112.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 113.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 114.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 115.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 116.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 117.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 118.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 119.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 120.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 121.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 122.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 123.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 124.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 125.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 126.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 127.100.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 0.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 127.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 254.169.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 2.0.192.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 100.51.198.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 113.0.203.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: D.F.IP6.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 8.E.F.IP6.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 9.E.F.IP6.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: A.E.F.IP6.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: B.E.F.IP6.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +25-Mar-2018 16:42:16.946 automatic empty zone: EMPTY.AS112.ARPA +25-Mar-2018 16:42:16.947 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-Mar-2018 16:42:16.949 configuring command channel from '/opt/local/etc/rndc.key' +25-Mar-2018 16:42:16.949 couldn't add command channel 127.0.0.1#953: file not found +25-Mar-2018 16:42:16.949 configuring command channel from '/opt/local/etc/rndc.key' +25-Mar-2018 16:42:16.949 couldn't add command channel ::1#953: file not found +25-Mar-2018 16:42:16.949 not using config file logging statement for logging due to -g option +25-Mar-2018 16:42:16.950 managed-keys-zone: loaded serial 0 +25-Mar-2018 16:42:16.980 zone local/IN: loaded serial 2 +25-Mar-2018 16:42:16.980 all zones loaded +25-Mar-2018 16:42:16.980 running +25-Mar-2018 16:42:22.032 shutting down +25-Mar-2018 16:42:22.032 no longer listening on 127.0.0.1#5400 +25-Mar-2018 16:42:22.154 exiting +=== Log Marked @ 2018-03-25 16:43:29 +1300 [2065] === +25-Mar-2018 16:43:29.867 starting BIND 9.12.0 +25-Mar-2018 16:43:29.867 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +25-Mar-2018 16:43:29.867 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +25-Mar-2018 16:43:29.867 running as: named -c named.conf -f -p 5400 -g +25-Mar-2018 16:43:29.867 ---------------------------------------------------- +25-Mar-2018 16:43:29.867 BIND 9 is maintained by Internet Systems Consortium, +25-Mar-2018 16:43:29.867 Inc. (ISC), a non-profit 501(c)(3) public-benefit +25-Mar-2018 16:43:29.867 corporation. Support and training for BIND 9 are +25-Mar-2018 16:43:29.867 available at https://www.isc.org/support +25-Mar-2018 16:43:29.867 ---------------------------------------------------- +25-Mar-2018 16:43:29.867 found 8 CPUs, using 8 worker threads +25-Mar-2018 16:43:29.867 using 7 UDP listeners per interface +25-Mar-2018 16:43:29.867 using up to 4096 sockets +25-Mar-2018 16:43:29.873 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +25-Mar-2018 16:43:29.873 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +25-Mar-2018 16:43:29.873 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +25-Mar-2018 16:43:29.873 using default UDP/IPv4 port range: [49152, 65535] +25-Mar-2018 16:43:29.873 using default UDP/IPv6 port range: [49152, 65535] +25-Mar-2018 16:43:29.874 listening on IPv4 interface lo0, 127.0.0.1#5400 +25-Mar-2018 16:43:29.876 generating session key for dynamic DNS +25-Mar-2018 16:43:29.877 could not open file '/opt/local/var/run/named/session.key': Permission denied +25-Mar-2018 16:43:29.877 could not create /opt/local/var/run/named/session.key +25-Mar-2018 16:43:29.877 failed to generate session key for dynamic DNS: permission denied +25-Mar-2018 16:43:29.877 sizing zone task pool based on 1 zones +25-Mar-2018 16:43:29.877 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-Mar-2018 16:43:29.880 set up managed keys zone for view _default, file 'managed-keys.bind' +25-Mar-2018 16:43:29.880 automatic empty zone: 10.IN-ADDR.ARPA +25-Mar-2018 16:43:29.880 automatic empty zone: 16.172.IN-ADDR.ARPA +25-Mar-2018 16:43:29.880 automatic empty zone: 17.172.IN-ADDR.ARPA +25-Mar-2018 16:43:29.880 automatic empty zone: 18.172.IN-ADDR.ARPA +25-Mar-2018 16:43:29.880 automatic empty zone: 19.172.IN-ADDR.ARPA +25-Mar-2018 16:43:29.880 automatic empty zone: 20.172.IN-ADDR.ARPA +25-Mar-2018 16:43:29.880 automatic empty zone: 21.172.IN-ADDR.ARPA +25-Mar-2018 16:43:29.880 automatic empty zone: 22.172.IN-ADDR.ARPA +25-Mar-2018 16:43:29.880 automatic empty zone: 23.172.IN-ADDR.ARPA +25-Mar-2018 16:43:29.880 automatic empty zone: 24.172.IN-ADDR.ARPA +25-Mar-2018 16:43:29.880 automatic empty zone: 25.172.IN-ADDR.ARPA +25-Mar-2018 16:43:29.880 automatic empty zone: 26.172.IN-ADDR.ARPA +25-Mar-2018 16:43:29.880 automatic empty zone: 27.172.IN-ADDR.ARPA +25-Mar-2018 16:43:29.880 automatic empty zone: 28.172.IN-ADDR.ARPA +25-Mar-2018 16:43:29.880 automatic empty zone: 29.172.IN-ADDR.ARPA +25-Mar-2018 16:43:29.880 automatic empty zone: 30.172.IN-ADDR.ARPA +25-Mar-2018 16:43:29.880 automatic empty zone: 31.172.IN-ADDR.ARPA +25-Mar-2018 16:43:29.880 automatic empty zone: 168.192.IN-ADDR.ARPA +25-Mar-2018 16:43:29.880 automatic empty zone: 64.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.880 automatic empty zone: 65.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.880 automatic empty zone: 66.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.880 automatic empty zone: 67.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.880 automatic empty zone: 68.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.880 automatic empty zone: 69.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.880 automatic empty zone: 70.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.880 automatic empty zone: 71.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 72.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 73.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 74.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 75.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 76.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 77.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 78.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 79.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 80.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 81.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 82.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 83.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 84.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 85.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 86.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 87.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 88.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 89.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 90.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 91.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 92.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 93.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 94.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 95.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 96.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 97.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 98.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 99.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 100.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 101.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 102.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 103.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 104.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 105.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 106.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 107.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 108.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 109.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 110.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 111.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 112.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 113.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.881 automatic empty zone: 114.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.882 automatic empty zone: 115.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.882 automatic empty zone: 116.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.882 automatic empty zone: 117.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.882 automatic empty zone: 118.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.882 automatic empty zone: 119.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.882 automatic empty zone: 120.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.882 automatic empty zone: 121.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.882 automatic empty zone: 122.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.882 automatic empty zone: 123.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.882 automatic empty zone: 124.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.882 automatic empty zone: 125.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.882 automatic empty zone: 126.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.882 automatic empty zone: 127.100.IN-ADDR.ARPA +25-Mar-2018 16:43:29.882 automatic empty zone: 0.IN-ADDR.ARPA +25-Mar-2018 16:43:29.882 automatic empty zone: 127.IN-ADDR.ARPA +25-Mar-2018 16:43:29.882 automatic empty zone: 254.169.IN-ADDR.ARPA +25-Mar-2018 16:43:29.882 automatic empty zone: 2.0.192.IN-ADDR.ARPA +25-Mar-2018 16:43:29.882 automatic empty zone: 100.51.198.IN-ADDR.ARPA +25-Mar-2018 16:43:29.882 automatic empty zone: 113.0.203.IN-ADDR.ARPA +25-Mar-2018 16:43:29.882 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +25-Mar-2018 16:43:29.882 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-Mar-2018 16:43:29.882 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-Mar-2018 16:43:29.882 automatic empty zone: D.F.IP6.ARPA +25-Mar-2018 16:43:29.882 automatic empty zone: 8.E.F.IP6.ARPA +25-Mar-2018 16:43:29.882 automatic empty zone: 9.E.F.IP6.ARPA +25-Mar-2018 16:43:29.882 automatic empty zone: A.E.F.IP6.ARPA +25-Mar-2018 16:43:29.882 automatic empty zone: B.E.F.IP6.ARPA +25-Mar-2018 16:43:29.882 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +25-Mar-2018 16:43:29.882 automatic empty zone: EMPTY.AS112.ARPA +25-Mar-2018 16:43:29.882 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-Mar-2018 16:43:29.885 configuring command channel from '/opt/local/etc/rndc.key' +25-Mar-2018 16:43:29.885 couldn't add command channel 127.0.0.1#953: file not found +25-Mar-2018 16:43:29.885 configuring command channel from '/opt/local/etc/rndc.key' +25-Mar-2018 16:43:29.885 couldn't add command channel ::1#953: file not found +25-Mar-2018 16:43:29.885 not using config file logging statement for logging due to -g option +25-Mar-2018 16:43:29.886 managed-keys-zone: loaded serial 0 +25-Mar-2018 16:43:29.925 zone local/IN: loaded serial 2 +25-Mar-2018 16:43:29.926 all zones loaded +25-Mar-2018 16:43:29.926 running +25-Mar-2018 16:43:33.883 shutting down +25-Mar-2018 16:43:33.884 no longer listening on 127.0.0.1#5400 +25-Mar-2018 16:43:33.987 exiting +=== Log Marked @ 2018-03-25 17:27:57 +1300 [2356] === +25-Mar-2018 17:27:57.770 starting BIND 9.12.0 +25-Mar-2018 17:27:57.771 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +25-Mar-2018 17:27:57.771 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +25-Mar-2018 17:27:57.771 running as: named -c named.conf -f -p 5400 -g +25-Mar-2018 17:27:57.771 ---------------------------------------------------- +25-Mar-2018 17:27:57.771 BIND 9 is maintained by Internet Systems Consortium, +25-Mar-2018 17:27:57.771 Inc. (ISC), a non-profit 501(c)(3) public-benefit +25-Mar-2018 17:27:57.771 corporation. Support and training for BIND 9 are +25-Mar-2018 17:27:57.771 available at https://www.isc.org/support +25-Mar-2018 17:27:57.771 ---------------------------------------------------- +25-Mar-2018 17:27:57.771 found 8 CPUs, using 8 worker threads +25-Mar-2018 17:27:57.771 using 7 UDP listeners per interface +25-Mar-2018 17:27:57.771 using up to 4096 sockets +25-Mar-2018 17:27:57.777 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +25-Mar-2018 17:27:57.777 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +25-Mar-2018 17:27:57.777 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +25-Mar-2018 17:27:57.777 using default UDP/IPv4 port range: [49152, 65535] +25-Mar-2018 17:27:57.777 using default UDP/IPv6 port range: [49152, 65535] +25-Mar-2018 17:27:57.778 listening on IPv4 interface lo0, 127.0.0.1#5400 +25-Mar-2018 17:27:57.781 generating session key for dynamic DNS +25-Mar-2018 17:27:57.782 could not open file '/opt/local/var/run/named/session.key': Permission denied +25-Mar-2018 17:27:57.782 could not create /opt/local/var/run/named/session.key +25-Mar-2018 17:27:57.782 failed to generate session key for dynamic DNS: permission denied +25-Mar-2018 17:27:57.782 sizing zone task pool based on 1 zones +25-Mar-2018 17:27:57.782 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-Mar-2018 17:27:57.785 set up managed keys zone for view _default, file 'managed-keys.bind' +25-Mar-2018 17:27:57.785 automatic empty zone: 10.IN-ADDR.ARPA +25-Mar-2018 17:27:57.785 automatic empty zone: 16.172.IN-ADDR.ARPA +25-Mar-2018 17:27:57.785 automatic empty zone: 17.172.IN-ADDR.ARPA +25-Mar-2018 17:27:57.785 automatic empty zone: 18.172.IN-ADDR.ARPA +25-Mar-2018 17:27:57.785 automatic empty zone: 19.172.IN-ADDR.ARPA +25-Mar-2018 17:27:57.785 automatic empty zone: 20.172.IN-ADDR.ARPA +25-Mar-2018 17:27:57.785 automatic empty zone: 21.172.IN-ADDR.ARPA +25-Mar-2018 17:27:57.785 automatic empty zone: 22.172.IN-ADDR.ARPA +25-Mar-2018 17:27:57.785 automatic empty zone: 23.172.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 24.172.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 25.172.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 26.172.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 27.172.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 28.172.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 29.172.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 30.172.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 31.172.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 168.192.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 64.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 65.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 66.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 67.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 68.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 69.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 70.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 71.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 72.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 73.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 74.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 75.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 76.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 77.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 78.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 79.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 80.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 81.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 82.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 83.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 84.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 85.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 86.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 87.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 88.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 89.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 90.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 91.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 92.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 93.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 94.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 95.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 96.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 97.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 98.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 99.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 100.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 101.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 102.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 103.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 104.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.786 automatic empty zone: 105.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: 106.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: 107.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: 108.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: 109.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: 110.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: 111.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: 112.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: 113.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: 114.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: 115.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: 116.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: 117.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: 118.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: 119.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: 120.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: 121.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: 122.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: 123.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: 124.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: 125.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: 126.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: 127.100.IN-ADDR.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: 0.IN-ADDR.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: 127.IN-ADDR.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: 254.169.IN-ADDR.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: 2.0.192.IN-ADDR.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: 100.51.198.IN-ADDR.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: 113.0.203.IN-ADDR.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: D.F.IP6.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: 8.E.F.IP6.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: 9.E.F.IP6.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: A.E.F.IP6.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: B.E.F.IP6.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +25-Mar-2018 17:27:57.787 automatic empty zone: EMPTY.AS112.ARPA +25-Mar-2018 17:27:57.787 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-Mar-2018 17:27:57.792 configuring command channel from '/opt/local/etc/rndc.key' +25-Mar-2018 17:27:57.792 couldn't add command channel 127.0.0.1#953: file not found +25-Mar-2018 17:27:57.792 configuring command channel from '/opt/local/etc/rndc.key' +25-Mar-2018 17:27:57.792 couldn't add command channel ::1#953: file not found +25-Mar-2018 17:27:57.792 not using config file logging statement for logging due to -g option +25-Mar-2018 17:27:57.793 managed-keys-zone: loaded serial 0 +25-Mar-2018 17:27:57.824 zone local/IN: loaded serial 2 +25-Mar-2018 17:27:57.824 all zones loaded +25-Mar-2018 17:27:57.824 running +25-Mar-2018 17:28:02.254 shutting down +25-Mar-2018 17:28:02.255 no longer listening on 127.0.0.1#5400 +25-Mar-2018 17:28:02.367 exiting +=== Log Marked @ 2018-03-25 17:30:33 +1300 [2399] === +25-Mar-2018 17:30:33.400 starting BIND 9.12.0 +25-Mar-2018 17:30:33.400 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +25-Mar-2018 17:30:33.400 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +25-Mar-2018 17:30:33.400 running as: named -c named.conf -f -p 5400 -g +25-Mar-2018 17:30:33.400 ---------------------------------------------------- +25-Mar-2018 17:30:33.400 BIND 9 is maintained by Internet Systems Consortium, +25-Mar-2018 17:30:33.400 Inc. (ISC), a non-profit 501(c)(3) public-benefit +25-Mar-2018 17:30:33.400 corporation. Support and training for BIND 9 are +25-Mar-2018 17:30:33.400 available at https://www.isc.org/support +25-Mar-2018 17:30:33.400 ---------------------------------------------------- +25-Mar-2018 17:30:33.400 found 8 CPUs, using 8 worker threads +25-Mar-2018 17:30:33.400 using 7 UDP listeners per interface +25-Mar-2018 17:30:33.401 using up to 4096 sockets +25-Mar-2018 17:30:33.405 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +25-Mar-2018 17:30:33.406 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +25-Mar-2018 17:30:33.406 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +25-Mar-2018 17:30:33.406 using default UDP/IPv4 port range: [49152, 65535] +25-Mar-2018 17:30:33.406 using default UDP/IPv6 port range: [49152, 65535] +25-Mar-2018 17:30:33.407 listening on IPv4 interface lo0, 127.0.0.1#5400 +25-Mar-2018 17:30:33.410 generating session key for dynamic DNS +25-Mar-2018 17:30:33.410 could not open file '/opt/local/var/run/named/session.key': Permission denied +25-Mar-2018 17:30:33.410 could not create /opt/local/var/run/named/session.key +25-Mar-2018 17:30:33.410 failed to generate session key for dynamic DNS: permission denied +25-Mar-2018 17:30:33.410 sizing zone task pool based on 1 zones +25-Mar-2018 17:30:33.410 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-Mar-2018 17:30:33.413 set up managed keys zone for view _default, file 'managed-keys.bind' +25-Mar-2018 17:30:33.413 automatic empty zone: 10.IN-ADDR.ARPA +25-Mar-2018 17:30:33.413 automatic empty zone: 16.172.IN-ADDR.ARPA +25-Mar-2018 17:30:33.413 automatic empty zone: 17.172.IN-ADDR.ARPA +25-Mar-2018 17:30:33.413 automatic empty zone: 18.172.IN-ADDR.ARPA +25-Mar-2018 17:30:33.413 automatic empty zone: 19.172.IN-ADDR.ARPA +25-Mar-2018 17:30:33.413 automatic empty zone: 20.172.IN-ADDR.ARPA +25-Mar-2018 17:30:33.413 automatic empty zone: 21.172.IN-ADDR.ARPA +25-Mar-2018 17:30:33.413 automatic empty zone: 22.172.IN-ADDR.ARPA +25-Mar-2018 17:30:33.413 automatic empty zone: 23.172.IN-ADDR.ARPA +25-Mar-2018 17:30:33.413 automatic empty zone: 24.172.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 25.172.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 26.172.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 27.172.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 28.172.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 29.172.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 30.172.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 31.172.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 168.192.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 64.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 65.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 66.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 67.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 68.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 69.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 70.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 71.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 72.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 73.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 74.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 75.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 76.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 77.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 78.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 79.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 80.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 81.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 82.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 83.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 84.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 85.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 86.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 87.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 88.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 89.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 90.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 91.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 92.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 93.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 94.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 95.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.414 automatic empty zone: 96.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 97.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 98.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 99.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 100.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 101.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 102.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 103.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 104.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 105.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 106.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 107.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 108.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 109.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 110.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 111.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 112.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 113.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 114.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 115.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 116.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 117.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 118.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 119.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 120.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 121.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 122.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 123.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 124.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 125.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 126.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 127.100.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 0.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 127.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 254.169.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 2.0.192.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 100.51.198.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 113.0.203.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: D.F.IP6.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 8.E.F.IP6.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: 9.E.F.IP6.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: A.E.F.IP6.ARPA +25-Mar-2018 17:30:33.415 automatic empty zone: B.E.F.IP6.ARPA +25-Mar-2018 17:30:33.416 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +25-Mar-2018 17:30:33.416 automatic empty zone: EMPTY.AS112.ARPA +25-Mar-2018 17:30:33.416 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +25-Mar-2018 17:30:33.418 configuring command channel from '/opt/local/etc/rndc.key' +25-Mar-2018 17:30:33.418 couldn't add command channel 127.0.0.1#953: file not found +25-Mar-2018 17:30:33.418 configuring command channel from '/opt/local/etc/rndc.key' +25-Mar-2018 17:30:33.418 couldn't add command channel ::1#953: file not found +25-Mar-2018 17:30:33.418 not using config file logging statement for logging due to -g option +25-Mar-2018 17:30:33.419 managed-keys-zone: loaded serial 0 +25-Mar-2018 17:30:33.448 zone local/IN: loaded serial 2 +25-Mar-2018 17:30:33.448 all zones loaded +25-Mar-2018 17:30:33.448 running +25-Mar-2018 17:30:37.598 shutting down +25-Mar-2018 17:30:37.598 no longer listening on 127.0.0.1#5400 +25-Mar-2018 17:30:37.707 exiting +=== Log Marked @ 2018-03-26 17:30:30 +1300 [7947] === +26-Mar-2018 17:30:30.624 starting BIND 9.12.0 +26-Mar-2018 17:30:30.624 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +26-Mar-2018 17:30:30.625 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +26-Mar-2018 17:30:30.625 running as: named -c named.conf -f -p 5400 -g +26-Mar-2018 17:30:30.625 ---------------------------------------------------- +26-Mar-2018 17:30:30.625 BIND 9 is maintained by Internet Systems Consortium, +26-Mar-2018 17:30:30.625 Inc. (ISC), a non-profit 501(c)(3) public-benefit +26-Mar-2018 17:30:30.625 corporation. Support and training for BIND 9 are +26-Mar-2018 17:30:30.625 available at https://www.isc.org/support +26-Mar-2018 17:30:30.625 ---------------------------------------------------- +26-Mar-2018 17:30:30.625 found 8 CPUs, using 8 worker threads +26-Mar-2018 17:30:30.625 using 7 UDP listeners per interface +26-Mar-2018 17:30:30.625 using up to 4096 sockets +26-Mar-2018 17:30:30.640 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +26-Mar-2018 17:30:30.640 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +26-Mar-2018 17:30:30.641 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +26-Mar-2018 17:30:30.642 using default UDP/IPv4 port range: [49152, 65535] +26-Mar-2018 17:30:30.642 using default UDP/IPv6 port range: [49152, 65535] +26-Mar-2018 17:30:30.643 listening on IPv4 interface lo0, 127.0.0.1#5400 +26-Mar-2018 17:30:30.646 generating session key for dynamic DNS +26-Mar-2018 17:30:30.648 could not open file '/opt/local/var/run/named/session.key': Permission denied +26-Mar-2018 17:30:30.648 could not create /opt/local/var/run/named/session.key +26-Mar-2018 17:30:30.648 failed to generate session key for dynamic DNS: permission denied +26-Mar-2018 17:30:30.650 sizing zone task pool based on 1 zones +26-Mar-2018 17:30:30.650 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Mar-2018 17:30:30.654 set up managed keys zone for view _default, file 'managed-keys.bind' +26-Mar-2018 17:30:30.654 automatic empty zone: 10.IN-ADDR.ARPA +26-Mar-2018 17:30:30.654 automatic empty zone: 16.172.IN-ADDR.ARPA +26-Mar-2018 17:30:30.654 automatic empty zone: 17.172.IN-ADDR.ARPA +26-Mar-2018 17:30:30.654 automatic empty zone: 18.172.IN-ADDR.ARPA +26-Mar-2018 17:30:30.654 automatic empty zone: 19.172.IN-ADDR.ARPA +26-Mar-2018 17:30:30.654 automatic empty zone: 20.172.IN-ADDR.ARPA +26-Mar-2018 17:30:30.654 automatic empty zone: 21.172.IN-ADDR.ARPA +26-Mar-2018 17:30:30.654 automatic empty zone: 22.172.IN-ADDR.ARPA +26-Mar-2018 17:30:30.654 automatic empty zone: 23.172.IN-ADDR.ARPA +26-Mar-2018 17:30:30.654 automatic empty zone: 24.172.IN-ADDR.ARPA +26-Mar-2018 17:30:30.654 automatic empty zone: 25.172.IN-ADDR.ARPA +26-Mar-2018 17:30:30.654 automatic empty zone: 26.172.IN-ADDR.ARPA +26-Mar-2018 17:30:30.654 automatic empty zone: 27.172.IN-ADDR.ARPA +26-Mar-2018 17:30:30.654 automatic empty zone: 28.172.IN-ADDR.ARPA +26-Mar-2018 17:30:30.654 automatic empty zone: 29.172.IN-ADDR.ARPA +26-Mar-2018 17:30:30.654 automatic empty zone: 30.172.IN-ADDR.ARPA +26-Mar-2018 17:30:30.654 automatic empty zone: 31.172.IN-ADDR.ARPA +26-Mar-2018 17:30:30.654 automatic empty zone: 168.192.IN-ADDR.ARPA +26-Mar-2018 17:30:30.654 automatic empty zone: 64.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.654 automatic empty zone: 65.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.654 automatic empty zone: 66.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.654 automatic empty zone: 67.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.654 automatic empty zone: 68.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.654 automatic empty zone: 69.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.654 automatic empty zone: 70.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.654 automatic empty zone: 71.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.654 automatic empty zone: 72.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.654 automatic empty zone: 73.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.654 automatic empty zone: 74.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.654 automatic empty zone: 75.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.654 automatic empty zone: 76.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.654 automatic empty zone: 77.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.654 automatic empty zone: 78.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.654 automatic empty zone: 79.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.654 automatic empty zone: 80.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.654 automatic empty zone: 81.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 82.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 83.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 84.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 85.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 86.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 87.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 88.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 89.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 90.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 91.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 92.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 93.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 94.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 95.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 96.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 97.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 98.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 99.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 100.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 101.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 102.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 103.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 104.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 105.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 106.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 107.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 108.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 109.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 110.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 111.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 112.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 113.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 114.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 115.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 116.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 117.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 118.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 119.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 120.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 121.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 122.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 123.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 124.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 125.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 126.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 127.100.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 0.IN-ADDR.ARPA +26-Mar-2018 17:30:30.655 automatic empty zone: 127.IN-ADDR.ARPA +26-Mar-2018 17:30:30.656 automatic empty zone: 254.169.IN-ADDR.ARPA +26-Mar-2018 17:30:30.656 automatic empty zone: 2.0.192.IN-ADDR.ARPA +26-Mar-2018 17:30:30.656 automatic empty zone: 100.51.198.IN-ADDR.ARPA +26-Mar-2018 17:30:30.656 automatic empty zone: 113.0.203.IN-ADDR.ARPA +26-Mar-2018 17:30:30.656 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +26-Mar-2018 17:30:30.656 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Mar-2018 17:30:30.656 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Mar-2018 17:30:30.656 automatic empty zone: D.F.IP6.ARPA +26-Mar-2018 17:30:30.656 automatic empty zone: 8.E.F.IP6.ARPA +26-Mar-2018 17:30:30.656 automatic empty zone: 9.E.F.IP6.ARPA +26-Mar-2018 17:30:30.656 automatic empty zone: A.E.F.IP6.ARPA +26-Mar-2018 17:30:30.656 automatic empty zone: B.E.F.IP6.ARPA +26-Mar-2018 17:30:30.656 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +26-Mar-2018 17:30:30.656 automatic empty zone: EMPTY.AS112.ARPA +26-Mar-2018 17:30:30.656 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Mar-2018 17:30:30.660 configuring command channel from '/opt/local/etc/rndc.key' +26-Mar-2018 17:30:30.660 couldn't add command channel 127.0.0.1#953: file not found +26-Mar-2018 17:30:30.660 configuring command channel from '/opt/local/etc/rndc.key' +26-Mar-2018 17:30:30.660 couldn't add command channel ::1#953: file not found +26-Mar-2018 17:30:30.660 not using config file logging statement for logging due to -g option +26-Mar-2018 17:30:30.661 managed-keys-zone: loaded serial 0 +26-Mar-2018 17:30:30.695 zone local/IN: loaded serial 2 +26-Mar-2018 17:30:30.695 all zones loaded +26-Mar-2018 17:30:30.696 running +26-Mar-2018 17:30:30.830 shutting down +26-Mar-2018 17:30:30.831 no longer listening on 127.0.0.1#5400 +26-Mar-2018 17:30:30.935 exiting +=== Log Marked @ 2018-03-26 17:31:11 +1300 [7966] === +26-Mar-2018 17:31:11.566 starting BIND 9.12.0 +26-Mar-2018 17:31:11.567 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +26-Mar-2018 17:31:11.567 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +26-Mar-2018 17:31:11.567 running as: named -c named.conf -f -p 5400 -g +26-Mar-2018 17:31:11.567 ---------------------------------------------------- +26-Mar-2018 17:31:11.567 BIND 9 is maintained by Internet Systems Consortium, +26-Mar-2018 17:31:11.567 Inc. (ISC), a non-profit 501(c)(3) public-benefit +26-Mar-2018 17:31:11.567 corporation. Support and training for BIND 9 are +26-Mar-2018 17:31:11.567 available at https://www.isc.org/support +26-Mar-2018 17:31:11.567 ---------------------------------------------------- +26-Mar-2018 17:31:11.567 found 8 CPUs, using 8 worker threads +26-Mar-2018 17:31:11.567 using 7 UDP listeners per interface +26-Mar-2018 17:31:11.567 using up to 4096 sockets +26-Mar-2018 17:31:11.571 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +26-Mar-2018 17:31:11.571 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +26-Mar-2018 17:31:11.571 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +26-Mar-2018 17:31:11.572 using default UDP/IPv4 port range: [49152, 65535] +26-Mar-2018 17:31:11.572 using default UDP/IPv6 port range: [49152, 65535] +26-Mar-2018 17:31:11.572 listening on IPv4 interface lo0, 127.0.0.1#5400 +26-Mar-2018 17:31:11.574 generating session key for dynamic DNS +26-Mar-2018 17:31:11.575 could not open file '/opt/local/var/run/named/session.key': Permission denied +26-Mar-2018 17:31:11.575 could not create /opt/local/var/run/named/session.key +26-Mar-2018 17:31:11.575 failed to generate session key for dynamic DNS: permission denied +26-Mar-2018 17:31:11.575 sizing zone task pool based on 1 zones +26-Mar-2018 17:31:11.575 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Mar-2018 17:31:11.578 set up managed keys zone for view _default, file 'managed-keys.bind' +26-Mar-2018 17:31:11.578 automatic empty zone: 10.IN-ADDR.ARPA +26-Mar-2018 17:31:11.578 automatic empty zone: 16.172.IN-ADDR.ARPA +26-Mar-2018 17:31:11.578 automatic empty zone: 17.172.IN-ADDR.ARPA +26-Mar-2018 17:31:11.578 automatic empty zone: 18.172.IN-ADDR.ARPA +26-Mar-2018 17:31:11.578 automatic empty zone: 19.172.IN-ADDR.ARPA +26-Mar-2018 17:31:11.578 automatic empty zone: 20.172.IN-ADDR.ARPA +26-Mar-2018 17:31:11.578 automatic empty zone: 21.172.IN-ADDR.ARPA +26-Mar-2018 17:31:11.578 automatic empty zone: 22.172.IN-ADDR.ARPA +26-Mar-2018 17:31:11.578 automatic empty zone: 23.172.IN-ADDR.ARPA +26-Mar-2018 17:31:11.578 automatic empty zone: 24.172.IN-ADDR.ARPA +26-Mar-2018 17:31:11.578 automatic empty zone: 25.172.IN-ADDR.ARPA +26-Mar-2018 17:31:11.578 automatic empty zone: 26.172.IN-ADDR.ARPA +26-Mar-2018 17:31:11.578 automatic empty zone: 27.172.IN-ADDR.ARPA +26-Mar-2018 17:31:11.578 automatic empty zone: 28.172.IN-ADDR.ARPA +26-Mar-2018 17:31:11.578 automatic empty zone: 29.172.IN-ADDR.ARPA +26-Mar-2018 17:31:11.578 automatic empty zone: 30.172.IN-ADDR.ARPA +26-Mar-2018 17:31:11.578 automatic empty zone: 31.172.IN-ADDR.ARPA +26-Mar-2018 17:31:11.578 automatic empty zone: 168.192.IN-ADDR.ARPA +26-Mar-2018 17:31:11.578 automatic empty zone: 64.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.578 automatic empty zone: 65.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.578 automatic empty zone: 66.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.578 automatic empty zone: 67.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.578 automatic empty zone: 68.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.578 automatic empty zone: 69.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 70.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 71.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 72.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 73.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 74.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 75.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 76.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 77.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 78.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 79.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 80.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 81.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 82.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 83.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 84.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 85.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 86.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 87.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 88.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 89.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 90.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 91.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 92.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 93.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 94.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 95.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 96.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 97.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 98.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 99.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 100.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 101.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 102.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 103.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 104.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 105.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 106.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 107.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 108.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 109.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 110.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 111.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 112.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 113.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 114.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 115.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 116.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 117.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.579 automatic empty zone: 118.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.580 automatic empty zone: 119.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.580 automatic empty zone: 120.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.580 automatic empty zone: 121.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.580 automatic empty zone: 122.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.580 automatic empty zone: 123.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.580 automatic empty zone: 124.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.580 automatic empty zone: 125.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.580 automatic empty zone: 126.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.580 automatic empty zone: 127.100.IN-ADDR.ARPA +26-Mar-2018 17:31:11.580 automatic empty zone: 0.IN-ADDR.ARPA +26-Mar-2018 17:31:11.580 automatic empty zone: 127.IN-ADDR.ARPA +26-Mar-2018 17:31:11.580 automatic empty zone: 254.169.IN-ADDR.ARPA +26-Mar-2018 17:31:11.580 automatic empty zone: 2.0.192.IN-ADDR.ARPA +26-Mar-2018 17:31:11.580 automatic empty zone: 100.51.198.IN-ADDR.ARPA +26-Mar-2018 17:31:11.580 automatic empty zone: 113.0.203.IN-ADDR.ARPA +26-Mar-2018 17:31:11.580 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +26-Mar-2018 17:31:11.580 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Mar-2018 17:31:11.580 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Mar-2018 17:31:11.580 automatic empty zone: D.F.IP6.ARPA +26-Mar-2018 17:31:11.580 automatic empty zone: 8.E.F.IP6.ARPA +26-Mar-2018 17:31:11.580 automatic empty zone: 9.E.F.IP6.ARPA +26-Mar-2018 17:31:11.580 automatic empty zone: A.E.F.IP6.ARPA +26-Mar-2018 17:31:11.580 automatic empty zone: B.E.F.IP6.ARPA +26-Mar-2018 17:31:11.580 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +26-Mar-2018 17:31:11.580 automatic empty zone: EMPTY.AS112.ARPA +26-Mar-2018 17:31:11.580 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Mar-2018 17:31:11.584 configuring command channel from '/opt/local/etc/rndc.key' +26-Mar-2018 17:31:11.584 couldn't add command channel 127.0.0.1#953: file not found +26-Mar-2018 17:31:11.584 configuring command channel from '/opt/local/etc/rndc.key' +26-Mar-2018 17:31:11.584 couldn't add command channel ::1#953: file not found +26-Mar-2018 17:31:11.584 not using config file logging statement for logging due to -g option +26-Mar-2018 17:31:11.585 managed-keys-zone: loaded serial 0 +26-Mar-2018 17:31:11.620 zone local/IN: loaded serial 2 +26-Mar-2018 17:31:11.620 all zones loaded +26-Mar-2018 17:31:11.620 running +26-Mar-2018 17:31:11.784 shutting down +26-Mar-2018 17:31:11.784 no longer listening on 127.0.0.1#5400 +26-Mar-2018 17:31:11.880 exiting +=== Log Marked @ 2018-03-26 17:33:22 +1300 [8062] === +26-Mar-2018 17:33:22.767 starting BIND 9.12.0 +26-Mar-2018 17:33:22.767 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +26-Mar-2018 17:33:22.767 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +26-Mar-2018 17:33:22.767 running as: named -c named.conf -f -p 5400 -g +26-Mar-2018 17:33:22.767 ---------------------------------------------------- +26-Mar-2018 17:33:22.767 BIND 9 is maintained by Internet Systems Consortium, +26-Mar-2018 17:33:22.767 Inc. (ISC), a non-profit 501(c)(3) public-benefit +26-Mar-2018 17:33:22.767 corporation. Support and training for BIND 9 are +26-Mar-2018 17:33:22.767 available at https://www.isc.org/support +26-Mar-2018 17:33:22.767 ---------------------------------------------------- +26-Mar-2018 17:33:22.768 found 8 CPUs, using 8 worker threads +26-Mar-2018 17:33:22.768 using 7 UDP listeners per interface +26-Mar-2018 17:33:22.768 using up to 4096 sockets +26-Mar-2018 17:33:22.772 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +26-Mar-2018 17:33:22.772 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +26-Mar-2018 17:33:22.773 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +26-Mar-2018 17:33:22.773 using default UDP/IPv4 port range: [49152, 65535] +26-Mar-2018 17:33:22.773 using default UDP/IPv6 port range: [49152, 65535] +26-Mar-2018 17:33:22.774 listening on IPv4 interface lo0, 127.0.0.1#5400 +26-Mar-2018 17:33:22.777 generating session key for dynamic DNS +26-Mar-2018 17:33:22.777 could not open file '/opt/local/var/run/named/session.key': Permission denied +26-Mar-2018 17:33:22.777 could not create /opt/local/var/run/named/session.key +26-Mar-2018 17:33:22.777 failed to generate session key for dynamic DNS: permission denied +26-Mar-2018 17:33:22.777 sizing zone task pool based on 1 zones +26-Mar-2018 17:33:22.777 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Mar-2018 17:33:22.780 set up managed keys zone for view _default, file 'managed-keys.bind' +26-Mar-2018 17:33:22.780 automatic empty zone: 10.IN-ADDR.ARPA +26-Mar-2018 17:33:22.780 automatic empty zone: 16.172.IN-ADDR.ARPA +26-Mar-2018 17:33:22.780 automatic empty zone: 17.172.IN-ADDR.ARPA +26-Mar-2018 17:33:22.780 automatic empty zone: 18.172.IN-ADDR.ARPA +26-Mar-2018 17:33:22.780 automatic empty zone: 19.172.IN-ADDR.ARPA +26-Mar-2018 17:33:22.780 automatic empty zone: 20.172.IN-ADDR.ARPA +26-Mar-2018 17:33:22.780 automatic empty zone: 21.172.IN-ADDR.ARPA +26-Mar-2018 17:33:22.780 automatic empty zone: 22.172.IN-ADDR.ARPA +26-Mar-2018 17:33:22.780 automatic empty zone: 23.172.IN-ADDR.ARPA +26-Mar-2018 17:33:22.780 automatic empty zone: 24.172.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 25.172.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 26.172.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 27.172.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 28.172.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 29.172.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 30.172.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 31.172.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 168.192.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 64.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 65.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 66.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 67.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 68.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 69.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 70.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 71.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 72.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 73.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 74.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 75.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 76.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 77.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 78.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 79.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 80.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 81.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 82.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 83.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 84.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 85.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 86.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 87.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 88.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 89.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 90.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 91.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 92.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 93.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 94.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 95.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 96.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 97.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 98.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 99.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.781 automatic empty zone: 100.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 101.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 102.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 103.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 104.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 105.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 106.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 107.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 108.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 109.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 110.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 111.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 112.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 113.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 114.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 115.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 116.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 117.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 118.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 119.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 120.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 121.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 122.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 123.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 124.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 125.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 126.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 127.100.IN-ADDR.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 0.IN-ADDR.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 127.IN-ADDR.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 254.169.IN-ADDR.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 2.0.192.IN-ADDR.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 100.51.198.IN-ADDR.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 113.0.203.IN-ADDR.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: D.F.IP6.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 8.E.F.IP6.ARPA +26-Mar-2018 17:33:22.782 automatic empty zone: 9.E.F.IP6.ARPA +26-Mar-2018 17:33:22.783 automatic empty zone: A.E.F.IP6.ARPA +26-Mar-2018 17:33:22.783 automatic empty zone: B.E.F.IP6.ARPA +26-Mar-2018 17:33:22.783 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +26-Mar-2018 17:33:22.783 automatic empty zone: EMPTY.AS112.ARPA +26-Mar-2018 17:33:22.783 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Mar-2018 17:33:22.785 configuring command channel from '/opt/local/etc/rndc.key' +26-Mar-2018 17:33:22.785 couldn't add command channel 127.0.0.1#953: file not found +26-Mar-2018 17:33:22.786 configuring command channel from '/opt/local/etc/rndc.key' +26-Mar-2018 17:33:22.786 couldn't add command channel ::1#953: file not found +26-Mar-2018 17:33:22.786 not using config file logging statement for logging due to -g option +26-Mar-2018 17:33:22.786 managed-keys-zone: loaded serial 0 +26-Mar-2018 17:33:22.815 zone local/IN: loaded serial 2 +26-Mar-2018 17:33:22.815 all zones loaded +26-Mar-2018 17:33:22.816 running +26-Mar-2018 17:33:27.300 shutting down +26-Mar-2018 17:33:27.300 no longer listening on 127.0.0.1#5400 +26-Mar-2018 17:33:27.404 exiting +=== Log Marked @ 2018-03-26 17:38:59 +1300 [8204] === +26-Mar-2018 17:38:59.496 starting BIND 9.12.0 +26-Mar-2018 17:38:59.497 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +26-Mar-2018 17:38:59.497 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +26-Mar-2018 17:38:59.497 running as: named -c named.conf -f -p 5400 -g +26-Mar-2018 17:38:59.497 ---------------------------------------------------- +26-Mar-2018 17:38:59.497 BIND 9 is maintained by Internet Systems Consortium, +26-Mar-2018 17:38:59.497 Inc. (ISC), a non-profit 501(c)(3) public-benefit +26-Mar-2018 17:38:59.497 corporation. Support and training for BIND 9 are +26-Mar-2018 17:38:59.497 available at https://www.isc.org/support +26-Mar-2018 17:38:59.497 ---------------------------------------------------- +26-Mar-2018 17:38:59.497 found 8 CPUs, using 8 worker threads +26-Mar-2018 17:38:59.497 using 7 UDP listeners per interface +26-Mar-2018 17:38:59.497 using up to 4096 sockets +26-Mar-2018 17:38:59.501 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +26-Mar-2018 17:38:59.501 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +26-Mar-2018 17:38:59.501 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +26-Mar-2018 17:38:59.501 using default UDP/IPv4 port range: [49152, 65535] +26-Mar-2018 17:38:59.501 using default UDP/IPv6 port range: [49152, 65535] +26-Mar-2018 17:38:59.502 listening on IPv4 interface lo0, 127.0.0.1#5400 +26-Mar-2018 17:38:59.505 generating session key for dynamic DNS +26-Mar-2018 17:38:59.505 could not open file '/opt/local/var/run/named/session.key': Permission denied +26-Mar-2018 17:38:59.505 could not create /opt/local/var/run/named/session.key +26-Mar-2018 17:38:59.505 failed to generate session key for dynamic DNS: permission denied +26-Mar-2018 17:38:59.505 sizing zone task pool based on 1 zones +26-Mar-2018 17:38:59.505 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Mar-2018 17:38:59.508 set up managed keys zone for view _default, file 'managed-keys.bind' +26-Mar-2018 17:38:59.508 automatic empty zone: 10.IN-ADDR.ARPA +26-Mar-2018 17:38:59.508 automatic empty zone: 16.172.IN-ADDR.ARPA +26-Mar-2018 17:38:59.508 automatic empty zone: 17.172.IN-ADDR.ARPA +26-Mar-2018 17:38:59.508 automatic empty zone: 18.172.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 19.172.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 20.172.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 21.172.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 22.172.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 23.172.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 24.172.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 25.172.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 26.172.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 27.172.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 28.172.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 29.172.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 30.172.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 31.172.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 168.192.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 64.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 65.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 66.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 67.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 68.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 69.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 70.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 71.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 72.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 73.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 74.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 75.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 76.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 77.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 78.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 79.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 80.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 81.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 82.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 83.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 84.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 85.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 86.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 87.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 88.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 89.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 90.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 91.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 92.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 93.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 94.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 95.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 96.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 97.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 98.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 99.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 100.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.509 automatic empty zone: 101.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 102.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 103.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 104.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 105.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 106.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 107.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 108.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 109.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 110.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 111.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 112.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 113.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 114.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 115.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 116.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 117.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 118.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 119.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 120.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 121.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 122.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 123.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 124.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 125.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 126.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 127.100.IN-ADDR.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 0.IN-ADDR.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 127.IN-ADDR.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 254.169.IN-ADDR.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 2.0.192.IN-ADDR.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 100.51.198.IN-ADDR.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 113.0.203.IN-ADDR.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: D.F.IP6.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 8.E.F.IP6.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 9.E.F.IP6.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: A.E.F.IP6.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: B.E.F.IP6.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +26-Mar-2018 17:38:59.510 automatic empty zone: EMPTY.AS112.ARPA +26-Mar-2018 17:38:59.511 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Mar-2018 17:38:59.515 configuring command channel from '/opt/local/etc/rndc.key' +26-Mar-2018 17:38:59.516 couldn't add command channel 127.0.0.1#953: file not found +26-Mar-2018 17:38:59.516 configuring command channel from '/opt/local/etc/rndc.key' +26-Mar-2018 17:38:59.516 couldn't add command channel ::1#953: file not found +26-Mar-2018 17:38:59.516 not using config file logging statement for logging due to -g option +26-Mar-2018 17:38:59.516 managed-keys-zone: loaded serial 0 +26-Mar-2018 17:38:59.550 zone local/IN: loaded serial 2 +26-Mar-2018 17:38:59.550 all zones loaded +26-Mar-2018 17:38:59.551 running +26-Mar-2018 17:39:03.702 shutting down +26-Mar-2018 17:39:03.703 no longer listening on 127.0.0.1#5400 +26-Mar-2018 17:39:03.805 exiting +=== Log Marked @ 2018-03-26 17:53:12 +1300 [8406] === +26-Mar-2018 17:53:12.860 starting BIND 9.12.0 +26-Mar-2018 17:53:12.860 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +26-Mar-2018 17:53:12.860 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +26-Mar-2018 17:53:12.860 running as: named -c named.conf -f -p 5400 -g +26-Mar-2018 17:53:12.860 ---------------------------------------------------- +26-Mar-2018 17:53:12.860 BIND 9 is maintained by Internet Systems Consortium, +26-Mar-2018 17:53:12.860 Inc. (ISC), a non-profit 501(c)(3) public-benefit +26-Mar-2018 17:53:12.860 corporation. Support and training for BIND 9 are +26-Mar-2018 17:53:12.860 available at https://www.isc.org/support +26-Mar-2018 17:53:12.860 ---------------------------------------------------- +26-Mar-2018 17:53:12.860 found 8 CPUs, using 8 worker threads +26-Mar-2018 17:53:12.860 using 7 UDP listeners per interface +26-Mar-2018 17:53:12.860 using up to 4096 sockets +26-Mar-2018 17:53:12.865 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +26-Mar-2018 17:53:12.866 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +26-Mar-2018 17:53:12.866 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +26-Mar-2018 17:53:12.867 using default UDP/IPv4 port range: [49152, 65535] +26-Mar-2018 17:53:12.867 using default UDP/IPv6 port range: [49152, 65535] +26-Mar-2018 17:53:12.868 listening on IPv4 interface lo0, 127.0.0.1#5400 +26-Mar-2018 17:53:12.872 generating session key for dynamic DNS +26-Mar-2018 17:53:12.872 could not open file '/opt/local/var/run/named/session.key': Permission denied +26-Mar-2018 17:53:12.872 could not create /opt/local/var/run/named/session.key +26-Mar-2018 17:53:12.872 failed to generate session key for dynamic DNS: permission denied +26-Mar-2018 17:53:12.872 sizing zone task pool based on 1 zones +26-Mar-2018 17:53:12.872 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Mar-2018 17:53:12.875 set up managed keys zone for view _default, file 'managed-keys.bind' +26-Mar-2018 17:53:12.876 automatic empty zone: 10.IN-ADDR.ARPA +26-Mar-2018 17:53:12.876 automatic empty zone: 16.172.IN-ADDR.ARPA +26-Mar-2018 17:53:12.876 automatic empty zone: 17.172.IN-ADDR.ARPA +26-Mar-2018 17:53:12.876 automatic empty zone: 18.172.IN-ADDR.ARPA +26-Mar-2018 17:53:12.876 automatic empty zone: 19.172.IN-ADDR.ARPA +26-Mar-2018 17:53:12.876 automatic empty zone: 20.172.IN-ADDR.ARPA +26-Mar-2018 17:53:12.876 automatic empty zone: 21.172.IN-ADDR.ARPA +26-Mar-2018 17:53:12.876 automatic empty zone: 22.172.IN-ADDR.ARPA +26-Mar-2018 17:53:12.876 automatic empty zone: 23.172.IN-ADDR.ARPA +26-Mar-2018 17:53:12.876 automatic empty zone: 24.172.IN-ADDR.ARPA +26-Mar-2018 17:53:12.876 automatic empty zone: 25.172.IN-ADDR.ARPA +26-Mar-2018 17:53:12.876 automatic empty zone: 26.172.IN-ADDR.ARPA +26-Mar-2018 17:53:12.876 automatic empty zone: 27.172.IN-ADDR.ARPA +26-Mar-2018 17:53:12.876 automatic empty zone: 28.172.IN-ADDR.ARPA +26-Mar-2018 17:53:12.876 automatic empty zone: 29.172.IN-ADDR.ARPA +26-Mar-2018 17:53:12.876 automatic empty zone: 30.172.IN-ADDR.ARPA +26-Mar-2018 17:53:12.876 automatic empty zone: 31.172.IN-ADDR.ARPA +26-Mar-2018 17:53:12.876 automatic empty zone: 168.192.IN-ADDR.ARPA +26-Mar-2018 17:53:12.876 automatic empty zone: 64.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.876 automatic empty zone: 65.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.876 automatic empty zone: 66.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.876 automatic empty zone: 67.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.876 automatic empty zone: 68.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.876 automatic empty zone: 69.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.876 automatic empty zone: 70.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.876 automatic empty zone: 71.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.876 automatic empty zone: 72.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.876 automatic empty zone: 73.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.876 automatic empty zone: 74.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.876 automatic empty zone: 75.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.876 automatic empty zone: 76.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.876 automatic empty zone: 77.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.876 automatic empty zone: 78.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.876 automatic empty zone: 79.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.876 automatic empty zone: 80.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.876 automatic empty zone: 81.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 82.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 83.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 84.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 85.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 86.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 87.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 88.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 89.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 90.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 91.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 92.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 93.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 94.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 95.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 96.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 97.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 98.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 99.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 100.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 101.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 102.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 103.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 104.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 105.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 106.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 107.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 108.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 109.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 110.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 111.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 112.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 113.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 114.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 115.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 116.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 117.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 118.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 119.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 120.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 121.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 122.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 123.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.877 automatic empty zone: 124.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.878 automatic empty zone: 125.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.878 automatic empty zone: 126.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.878 automatic empty zone: 127.100.IN-ADDR.ARPA +26-Mar-2018 17:53:12.878 automatic empty zone: 0.IN-ADDR.ARPA +26-Mar-2018 17:53:12.878 automatic empty zone: 127.IN-ADDR.ARPA +26-Mar-2018 17:53:12.878 automatic empty zone: 254.169.IN-ADDR.ARPA +26-Mar-2018 17:53:12.878 automatic empty zone: 2.0.192.IN-ADDR.ARPA +26-Mar-2018 17:53:12.878 automatic empty zone: 100.51.198.IN-ADDR.ARPA +26-Mar-2018 17:53:12.878 automatic empty zone: 113.0.203.IN-ADDR.ARPA +26-Mar-2018 17:53:12.878 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +26-Mar-2018 17:53:12.878 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Mar-2018 17:53:12.878 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Mar-2018 17:53:12.878 automatic empty zone: D.F.IP6.ARPA +26-Mar-2018 17:53:12.878 automatic empty zone: 8.E.F.IP6.ARPA +26-Mar-2018 17:53:12.878 automatic empty zone: 9.E.F.IP6.ARPA +26-Mar-2018 17:53:12.878 automatic empty zone: A.E.F.IP6.ARPA +26-Mar-2018 17:53:12.878 automatic empty zone: B.E.F.IP6.ARPA +26-Mar-2018 17:53:12.878 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +26-Mar-2018 17:53:12.878 automatic empty zone: EMPTY.AS112.ARPA +26-Mar-2018 17:53:12.878 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Mar-2018 17:53:12.882 configuring command channel from '/opt/local/etc/rndc.key' +26-Mar-2018 17:53:12.882 couldn't add command channel 127.0.0.1#953: file not found +26-Mar-2018 17:53:12.882 configuring command channel from '/opt/local/etc/rndc.key' +26-Mar-2018 17:53:12.882 couldn't add command channel ::1#953: file not found +26-Mar-2018 17:53:12.882 not using config file logging statement for logging due to -g option +26-Mar-2018 17:53:12.883 managed-keys-zone: loaded serial 0 +26-Mar-2018 17:53:12.913 zone local/IN: loaded serial 2 +26-Mar-2018 17:53:12.913 all zones loaded +26-Mar-2018 17:53:12.914 running +26-Mar-2018 17:53:17.019 shutting down +26-Mar-2018 17:53:17.020 no longer listening on 127.0.0.1#5400 +26-Mar-2018 17:53:17.145 exiting +=== Log Marked @ 2018-03-26 17:55:27 +1300 [8517] === +26-Mar-2018 17:55:27.696 starting BIND 9.12.0 +26-Mar-2018 17:55:27.696 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +26-Mar-2018 17:55:27.696 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +26-Mar-2018 17:55:27.696 running as: named -c named.conf -f -p 5400 -g +26-Mar-2018 17:55:27.696 ---------------------------------------------------- +26-Mar-2018 17:55:27.696 BIND 9 is maintained by Internet Systems Consortium, +26-Mar-2018 17:55:27.696 Inc. (ISC), a non-profit 501(c)(3) public-benefit +26-Mar-2018 17:55:27.697 corporation. Support and training for BIND 9 are +26-Mar-2018 17:55:27.697 available at https://www.isc.org/support +26-Mar-2018 17:55:27.697 ---------------------------------------------------- +26-Mar-2018 17:55:27.697 found 8 CPUs, using 8 worker threads +26-Mar-2018 17:55:27.697 using 7 UDP listeners per interface +26-Mar-2018 17:55:27.697 using up to 4096 sockets +26-Mar-2018 17:55:27.703 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +26-Mar-2018 17:55:27.703 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +26-Mar-2018 17:55:27.703 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +26-Mar-2018 17:55:27.703 using default UDP/IPv4 port range: [49152, 65535] +26-Mar-2018 17:55:27.703 using default UDP/IPv6 port range: [49152, 65535] +26-Mar-2018 17:55:27.704 listening on IPv4 interface lo0, 127.0.0.1#5400 +26-Mar-2018 17:55:27.707 generating session key for dynamic DNS +26-Mar-2018 17:55:27.707 could not open file '/opt/local/var/run/named/session.key': Permission denied +26-Mar-2018 17:55:27.707 could not create /opt/local/var/run/named/session.key +26-Mar-2018 17:55:27.707 failed to generate session key for dynamic DNS: permission denied +26-Mar-2018 17:55:27.707 sizing zone task pool based on 1 zones +26-Mar-2018 17:55:27.707 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Mar-2018 17:55:27.710 set up managed keys zone for view _default, file 'managed-keys.bind' +26-Mar-2018 17:55:27.710 automatic empty zone: 10.IN-ADDR.ARPA +26-Mar-2018 17:55:27.710 automatic empty zone: 16.172.IN-ADDR.ARPA +26-Mar-2018 17:55:27.710 automatic empty zone: 17.172.IN-ADDR.ARPA +26-Mar-2018 17:55:27.710 automatic empty zone: 18.172.IN-ADDR.ARPA +26-Mar-2018 17:55:27.710 automatic empty zone: 19.172.IN-ADDR.ARPA +26-Mar-2018 17:55:27.710 automatic empty zone: 20.172.IN-ADDR.ARPA +26-Mar-2018 17:55:27.710 automatic empty zone: 21.172.IN-ADDR.ARPA +26-Mar-2018 17:55:27.710 automatic empty zone: 22.172.IN-ADDR.ARPA +26-Mar-2018 17:55:27.710 automatic empty zone: 23.172.IN-ADDR.ARPA +26-Mar-2018 17:55:27.710 automatic empty zone: 24.172.IN-ADDR.ARPA +26-Mar-2018 17:55:27.710 automatic empty zone: 25.172.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 26.172.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 27.172.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 28.172.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 29.172.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 30.172.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 31.172.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 168.192.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 64.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 65.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 66.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 67.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 68.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 69.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 70.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 71.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 72.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 73.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 74.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 75.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 76.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 77.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 78.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 79.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 80.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 81.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 82.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 83.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 84.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 85.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 86.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 87.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 88.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 89.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 90.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 91.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 92.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 93.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 94.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 95.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 96.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 97.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 98.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 99.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 100.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 101.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.711 automatic empty zone: 102.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 103.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 104.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 105.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 106.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 107.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 108.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 109.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 110.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 111.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 112.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 113.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 114.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 115.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 116.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 117.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 118.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 119.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 120.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 121.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 122.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 123.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 124.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 125.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 126.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 127.100.IN-ADDR.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 0.IN-ADDR.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 127.IN-ADDR.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 254.169.IN-ADDR.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 2.0.192.IN-ADDR.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 100.51.198.IN-ADDR.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 113.0.203.IN-ADDR.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: D.F.IP6.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 8.E.F.IP6.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 9.E.F.IP6.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: A.E.F.IP6.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: B.E.F.IP6.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +26-Mar-2018 17:55:27.712 automatic empty zone: EMPTY.AS112.ARPA +26-Mar-2018 17:55:27.713 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Mar-2018 17:55:27.715 configuring command channel from '/opt/local/etc/rndc.key' +26-Mar-2018 17:55:27.715 couldn't add command channel 127.0.0.1#953: file not found +26-Mar-2018 17:55:27.715 configuring command channel from '/opt/local/etc/rndc.key' +26-Mar-2018 17:55:27.715 couldn't add command channel ::1#953: file not found +26-Mar-2018 17:55:27.715 not using config file logging statement for logging due to -g option +26-Mar-2018 17:55:27.716 managed-keys-zone: loaded serial 0 +26-Mar-2018 17:55:27.745 zone local/IN: loaded serial 2 +26-Mar-2018 17:55:27.745 all zones loaded +26-Mar-2018 17:55:27.745 running +26-Mar-2018 17:55:32.585 shutting down +26-Mar-2018 17:55:32.586 no longer listening on 127.0.0.1#5400 +26-Mar-2018 17:55:32.716 exiting +=== Log Marked @ 2018-03-26 18:53:20 +1300 [9380] === +26-Mar-2018 18:53:20.548 starting BIND 9.12.0 +26-Mar-2018 18:53:20.548 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +26-Mar-2018 18:53:20.549 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +26-Mar-2018 18:53:20.549 running as: named -c named.conf -f -p 5400 -g +26-Mar-2018 18:53:20.549 ---------------------------------------------------- +26-Mar-2018 18:53:20.549 BIND 9 is maintained by Internet Systems Consortium, +26-Mar-2018 18:53:20.549 Inc. (ISC), a non-profit 501(c)(3) public-benefit +26-Mar-2018 18:53:20.549 corporation. Support and training for BIND 9 are +26-Mar-2018 18:53:20.549 available at https://www.isc.org/support +26-Mar-2018 18:53:20.549 ---------------------------------------------------- +26-Mar-2018 18:53:20.549 found 8 CPUs, using 8 worker threads +26-Mar-2018 18:53:20.549 using 7 UDP listeners per interface +26-Mar-2018 18:53:20.550 using up to 4096 sockets +26-Mar-2018 18:53:20.564 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +26-Mar-2018 18:53:20.565 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +26-Mar-2018 18:53:20.565 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +26-Mar-2018 18:53:20.566 using default UDP/IPv4 port range: [49152, 65535] +26-Mar-2018 18:53:20.566 using default UDP/IPv6 port range: [49152, 65535] +26-Mar-2018 18:53:20.568 listening on IPv4 interface lo0, 127.0.0.1#5400 +26-Mar-2018 18:53:20.572 generating session key for dynamic DNS +26-Mar-2018 18:53:20.573 could not open file '/opt/local/var/run/named/session.key': Permission denied +26-Mar-2018 18:53:20.573 could not create /opt/local/var/run/named/session.key +26-Mar-2018 18:53:20.573 failed to generate session key for dynamic DNS: permission denied +26-Mar-2018 18:53:20.574 sizing zone task pool based on 1 zones +26-Mar-2018 18:53:20.574 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Mar-2018 18:53:20.578 set up managed keys zone for view _default, file 'managed-keys.bind' +26-Mar-2018 18:53:20.578 automatic empty zone: 10.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 16.172.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 17.172.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 18.172.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 19.172.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 20.172.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 21.172.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 22.172.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 23.172.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 24.172.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 25.172.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 26.172.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 27.172.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 28.172.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 29.172.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 30.172.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 31.172.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 168.192.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 64.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 65.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 66.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 67.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 68.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 69.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 70.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 71.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 72.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 73.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 74.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 75.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 76.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 77.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 78.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 79.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 80.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 81.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 82.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.578 automatic empty zone: 83.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 84.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 85.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 86.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 87.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 88.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 89.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 90.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 91.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 92.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 93.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 94.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 95.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 96.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 97.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 98.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 99.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 100.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 101.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 102.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 103.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 104.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 105.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 106.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 107.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 108.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 109.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 110.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 111.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 112.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 113.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 114.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 115.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 116.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 117.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 118.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 119.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 120.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 121.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 122.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 123.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 124.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 125.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 126.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 127.100.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 0.IN-ADDR.ARPA +26-Mar-2018 18:53:20.579 automatic empty zone: 127.IN-ADDR.ARPA +26-Mar-2018 18:53:20.580 automatic empty zone: 254.169.IN-ADDR.ARPA +26-Mar-2018 18:53:20.580 automatic empty zone: 2.0.192.IN-ADDR.ARPA +26-Mar-2018 18:53:20.580 automatic empty zone: 100.51.198.IN-ADDR.ARPA +26-Mar-2018 18:53:20.580 automatic empty zone: 113.0.203.IN-ADDR.ARPA +26-Mar-2018 18:53:20.580 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +26-Mar-2018 18:53:20.580 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Mar-2018 18:53:20.580 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Mar-2018 18:53:20.580 automatic empty zone: D.F.IP6.ARPA +26-Mar-2018 18:53:20.580 automatic empty zone: 8.E.F.IP6.ARPA +26-Mar-2018 18:53:20.580 automatic empty zone: 9.E.F.IP6.ARPA +26-Mar-2018 18:53:20.580 automatic empty zone: A.E.F.IP6.ARPA +26-Mar-2018 18:53:20.580 automatic empty zone: B.E.F.IP6.ARPA +26-Mar-2018 18:53:20.580 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +26-Mar-2018 18:53:20.580 automatic empty zone: EMPTY.AS112.ARPA +26-Mar-2018 18:53:20.580 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Mar-2018 18:53:20.583 configuring command channel from '/opt/local/etc/rndc.key' +26-Mar-2018 18:53:20.583 couldn't add command channel 127.0.0.1#953: file not found +26-Mar-2018 18:53:20.583 configuring command channel from '/opt/local/etc/rndc.key' +26-Mar-2018 18:53:20.583 couldn't add command channel ::1#953: file not found +26-Mar-2018 18:53:20.583 not using config file logging statement for logging due to -g option +26-Mar-2018 18:53:20.584 managed-keys-zone: loaded serial 0 +26-Mar-2018 18:53:20.616 zone local/IN: loaded serial 2 +26-Mar-2018 18:53:20.616 all zones loaded +26-Mar-2018 18:53:20.616 running +26-Mar-2018 18:53:24.746 shutting down +26-Mar-2018 18:53:24.747 no longer listening on 127.0.0.1#5400 +26-Mar-2018 18:53:24.850 exiting +=== Log Marked @ 2018-03-26 19:40:50 +1300 [11440] === +26-Mar-2018 19:40:50.961 starting BIND 9.12.0 +26-Mar-2018 19:40:50.961 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +26-Mar-2018 19:40:50.961 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +26-Mar-2018 19:40:50.961 running as: named -c named.conf -f -p 5400 -g +26-Mar-2018 19:40:50.961 ---------------------------------------------------- +26-Mar-2018 19:40:50.961 BIND 9 is maintained by Internet Systems Consortium, +26-Mar-2018 19:40:50.961 Inc. (ISC), a non-profit 501(c)(3) public-benefit +26-Mar-2018 19:40:50.961 corporation. Support and training for BIND 9 are +26-Mar-2018 19:40:50.961 available at https://www.isc.org/support +26-Mar-2018 19:40:50.961 ---------------------------------------------------- +26-Mar-2018 19:40:50.961 found 8 CPUs, using 8 worker threads +26-Mar-2018 19:40:50.961 using 7 UDP listeners per interface +26-Mar-2018 19:40:50.962 using up to 4096 sockets +26-Mar-2018 19:40:50.970 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +26-Mar-2018 19:40:50.970 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +26-Mar-2018 19:40:50.971 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +26-Mar-2018 19:40:50.971 using default UDP/IPv4 port range: [49152, 65535] +26-Mar-2018 19:40:50.971 using default UDP/IPv6 port range: [49152, 65535] +26-Mar-2018 19:40:50.972 listening on IPv4 interface lo0, 127.0.0.1#5400 +26-Mar-2018 19:40:50.975 generating session key for dynamic DNS +26-Mar-2018 19:40:50.976 could not open file '/opt/local/var/run/named/session.key': Permission denied +26-Mar-2018 19:40:50.976 could not create /opt/local/var/run/named/session.key +26-Mar-2018 19:40:50.976 failed to generate session key for dynamic DNS: permission denied +26-Mar-2018 19:40:50.976 sizing zone task pool based on 1 zones +26-Mar-2018 19:40:50.976 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Mar-2018 19:40:50.980 set up managed keys zone for view _default, file 'managed-keys.bind' +26-Mar-2018 19:40:50.980 automatic empty zone: 10.IN-ADDR.ARPA +26-Mar-2018 19:40:50.981 automatic empty zone: 16.172.IN-ADDR.ARPA +26-Mar-2018 19:40:50.981 automatic empty zone: 17.172.IN-ADDR.ARPA +26-Mar-2018 19:40:50.981 automatic empty zone: 18.172.IN-ADDR.ARPA +26-Mar-2018 19:40:50.981 automatic empty zone: 19.172.IN-ADDR.ARPA +26-Mar-2018 19:40:50.981 automatic empty zone: 20.172.IN-ADDR.ARPA +26-Mar-2018 19:40:50.981 automatic empty zone: 21.172.IN-ADDR.ARPA +26-Mar-2018 19:40:50.981 automatic empty zone: 22.172.IN-ADDR.ARPA +26-Mar-2018 19:40:50.981 automatic empty zone: 23.172.IN-ADDR.ARPA +26-Mar-2018 19:40:50.981 automatic empty zone: 24.172.IN-ADDR.ARPA +26-Mar-2018 19:40:50.981 automatic empty zone: 25.172.IN-ADDR.ARPA +26-Mar-2018 19:40:50.981 automatic empty zone: 26.172.IN-ADDR.ARPA +26-Mar-2018 19:40:50.981 automatic empty zone: 27.172.IN-ADDR.ARPA +26-Mar-2018 19:40:50.981 automatic empty zone: 28.172.IN-ADDR.ARPA +26-Mar-2018 19:40:50.981 automatic empty zone: 29.172.IN-ADDR.ARPA +26-Mar-2018 19:40:50.981 automatic empty zone: 30.172.IN-ADDR.ARPA +26-Mar-2018 19:40:50.981 automatic empty zone: 31.172.IN-ADDR.ARPA +26-Mar-2018 19:40:50.981 automatic empty zone: 168.192.IN-ADDR.ARPA +26-Mar-2018 19:40:50.981 automatic empty zone: 64.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.981 automatic empty zone: 65.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.981 automatic empty zone: 66.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.981 automatic empty zone: 67.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.981 automatic empty zone: 68.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.981 automatic empty zone: 69.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.981 automatic empty zone: 70.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.981 automatic empty zone: 71.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.981 automatic empty zone: 72.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.981 automatic empty zone: 73.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.981 automatic empty zone: 74.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.981 automatic empty zone: 75.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.981 automatic empty zone: 76.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 77.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 78.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 79.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 80.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 81.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 82.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 83.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 84.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 85.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 86.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 87.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 88.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 89.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 90.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 91.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 92.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 93.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 94.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 95.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 96.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 97.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 98.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 99.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 100.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 101.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 102.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 103.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 104.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 105.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 106.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 107.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 108.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 109.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 110.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 111.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 112.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 113.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 114.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 115.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 116.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 117.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 118.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 119.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 120.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 121.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 122.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 123.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 124.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 125.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.982 automatic empty zone: 126.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.983 automatic empty zone: 127.100.IN-ADDR.ARPA +26-Mar-2018 19:40:50.983 automatic empty zone: 0.IN-ADDR.ARPA +26-Mar-2018 19:40:50.983 automatic empty zone: 127.IN-ADDR.ARPA +26-Mar-2018 19:40:50.983 automatic empty zone: 254.169.IN-ADDR.ARPA +26-Mar-2018 19:40:50.983 automatic empty zone: 2.0.192.IN-ADDR.ARPA +26-Mar-2018 19:40:50.983 automatic empty zone: 100.51.198.IN-ADDR.ARPA +26-Mar-2018 19:40:50.983 automatic empty zone: 113.0.203.IN-ADDR.ARPA +26-Mar-2018 19:40:50.983 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +26-Mar-2018 19:40:50.983 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Mar-2018 19:40:50.983 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Mar-2018 19:40:50.983 automatic empty zone: D.F.IP6.ARPA +26-Mar-2018 19:40:50.983 automatic empty zone: 8.E.F.IP6.ARPA +26-Mar-2018 19:40:50.983 automatic empty zone: 9.E.F.IP6.ARPA +26-Mar-2018 19:40:50.983 automatic empty zone: A.E.F.IP6.ARPA +26-Mar-2018 19:40:50.983 automatic empty zone: B.E.F.IP6.ARPA +26-Mar-2018 19:40:50.983 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +26-Mar-2018 19:40:50.983 automatic empty zone: EMPTY.AS112.ARPA +26-Mar-2018 19:40:50.983 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Mar-2018 19:40:50.986 configuring command channel from '/opt/local/etc/rndc.key' +26-Mar-2018 19:40:50.986 couldn't add command channel 127.0.0.1#953: file not found +26-Mar-2018 19:40:50.986 configuring command channel from '/opt/local/etc/rndc.key' +26-Mar-2018 19:40:50.987 couldn't add command channel ::1#953: file not found +26-Mar-2018 19:40:50.987 not using config file logging statement for logging due to -g option +26-Mar-2018 19:40:50.987 managed-keys-zone: loaded serial 0 +26-Mar-2018 19:40:51.024 zone local/IN: loaded serial 2 +26-Mar-2018 19:40:51.024 all zones loaded +26-Mar-2018 19:40:51.025 running +26-Mar-2018 19:40:55.616 shutting down +26-Mar-2018 19:40:55.617 no longer listening on 127.0.0.1#5400 +26-Mar-2018 19:40:55.717 exiting +=== Log Marked @ 2018-03-26 19:51:07 +1300 [11578] === +26-Mar-2018 19:51:07.084 starting BIND 9.12.0 +26-Mar-2018 19:51:07.084 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +26-Mar-2018 19:51:07.084 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +26-Mar-2018 19:51:07.084 running as: named -c named.conf -f -p 5400 -g +26-Mar-2018 19:51:07.084 ---------------------------------------------------- +26-Mar-2018 19:51:07.084 BIND 9 is maintained by Internet Systems Consortium, +26-Mar-2018 19:51:07.084 Inc. (ISC), a non-profit 501(c)(3) public-benefit +26-Mar-2018 19:51:07.084 corporation. Support and training for BIND 9 are +26-Mar-2018 19:51:07.084 available at https://www.isc.org/support +26-Mar-2018 19:51:07.084 ---------------------------------------------------- +26-Mar-2018 19:51:07.084 found 8 CPUs, using 8 worker threads +26-Mar-2018 19:51:07.084 using 7 UDP listeners per interface +26-Mar-2018 19:51:07.085 using up to 4096 sockets +26-Mar-2018 19:51:07.090 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +26-Mar-2018 19:51:07.090 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +26-Mar-2018 19:51:07.090 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +26-Mar-2018 19:51:07.090 using default UDP/IPv4 port range: [49152, 65535] +26-Mar-2018 19:51:07.090 using default UDP/IPv6 port range: [49152, 65535] +26-Mar-2018 19:51:07.091 listening on IPv4 interface lo0, 127.0.0.1#5400 +26-Mar-2018 19:51:07.094 generating session key for dynamic DNS +26-Mar-2018 19:51:07.094 could not open file '/opt/local/var/run/named/session.key': Permission denied +26-Mar-2018 19:51:07.094 could not create /opt/local/var/run/named/session.key +26-Mar-2018 19:51:07.094 failed to generate session key for dynamic DNS: permission denied +26-Mar-2018 19:51:07.094 sizing zone task pool based on 1 zones +26-Mar-2018 19:51:07.094 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Mar-2018 19:51:07.097 set up managed keys zone for view _default, file 'managed-keys.bind' +26-Mar-2018 19:51:07.097 automatic empty zone: 10.IN-ADDR.ARPA +26-Mar-2018 19:51:07.097 automatic empty zone: 16.172.IN-ADDR.ARPA +26-Mar-2018 19:51:07.097 automatic empty zone: 17.172.IN-ADDR.ARPA +26-Mar-2018 19:51:07.097 automatic empty zone: 18.172.IN-ADDR.ARPA +26-Mar-2018 19:51:07.097 automatic empty zone: 19.172.IN-ADDR.ARPA +26-Mar-2018 19:51:07.097 automatic empty zone: 20.172.IN-ADDR.ARPA +26-Mar-2018 19:51:07.097 automatic empty zone: 21.172.IN-ADDR.ARPA +26-Mar-2018 19:51:07.097 automatic empty zone: 22.172.IN-ADDR.ARPA +26-Mar-2018 19:51:07.097 automatic empty zone: 23.172.IN-ADDR.ARPA +26-Mar-2018 19:51:07.097 automatic empty zone: 24.172.IN-ADDR.ARPA +26-Mar-2018 19:51:07.097 automatic empty zone: 25.172.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 26.172.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 27.172.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 28.172.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 29.172.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 30.172.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 31.172.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 168.192.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 64.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 65.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 66.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 67.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 68.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 69.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 70.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 71.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 72.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 73.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 74.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 75.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 76.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 77.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 78.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 79.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 80.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 81.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 82.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 83.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 84.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 85.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 86.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 87.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 88.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 89.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 90.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 91.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 92.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 93.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 94.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 95.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 96.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 97.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 98.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 99.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 100.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 101.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 102.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.098 automatic empty zone: 103.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 104.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 105.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 106.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 107.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 108.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 109.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 110.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 111.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 112.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 113.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 114.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 115.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 116.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 117.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 118.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 119.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 120.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 121.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 122.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 123.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 124.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 125.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 126.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 127.100.IN-ADDR.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 0.IN-ADDR.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 127.IN-ADDR.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 254.169.IN-ADDR.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 2.0.192.IN-ADDR.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 100.51.198.IN-ADDR.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 113.0.203.IN-ADDR.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: D.F.IP6.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 8.E.F.IP6.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 9.E.F.IP6.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: A.E.F.IP6.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: B.E.F.IP6.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +26-Mar-2018 19:51:07.099 automatic empty zone: EMPTY.AS112.ARPA +26-Mar-2018 19:51:07.100 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Mar-2018 19:51:07.102 configuring command channel from '/opt/local/etc/rndc.key' +26-Mar-2018 19:51:07.102 couldn't add command channel 127.0.0.1#953: file not found +26-Mar-2018 19:51:07.102 configuring command channel from '/opt/local/etc/rndc.key' +26-Mar-2018 19:51:07.102 couldn't add command channel ::1#953: file not found +26-Mar-2018 19:51:07.102 not using config file logging statement for logging due to -g option +26-Mar-2018 19:51:07.103 managed-keys-zone: loaded serial 0 +26-Mar-2018 19:51:07.139 zone local/IN: loaded serial 2 +26-Mar-2018 19:51:07.139 all zones loaded +26-Mar-2018 19:51:07.139 running +26-Mar-2018 19:51:11.545 shutting down +26-Mar-2018 19:51:11.546 no longer listening on 127.0.0.1#5400 +26-Mar-2018 19:51:11.645 exiting +=== Log Marked @ 2018-03-29 01:07:32 +1300 [60716] === +29-Mar-2018 01:07:32.790 starting BIND 9.12.0 +29-Mar-2018 01:07:32.791 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +29-Mar-2018 01:07:32.791 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +29-Mar-2018 01:07:32.791 running as: named -c named.conf -f -p 5400 -g +29-Mar-2018 01:07:32.791 ---------------------------------------------------- +29-Mar-2018 01:07:32.791 BIND 9 is maintained by Internet Systems Consortium, +29-Mar-2018 01:07:32.791 Inc. (ISC), a non-profit 501(c)(3) public-benefit +29-Mar-2018 01:07:32.791 corporation. Support and training for BIND 9 are +29-Mar-2018 01:07:32.791 available at https://www.isc.org/support +29-Mar-2018 01:07:32.791 ---------------------------------------------------- +29-Mar-2018 01:07:32.792 found 8 CPUs, using 8 worker threads +29-Mar-2018 01:07:32.792 using 7 UDP listeners per interface +29-Mar-2018 01:07:32.792 using up to 4096 sockets +29-Mar-2018 01:07:32.811 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +29-Mar-2018 01:07:32.811 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +29-Mar-2018 01:07:32.812 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +29-Mar-2018 01:07:32.813 using default UDP/IPv4 port range: [49152, 65535] +29-Mar-2018 01:07:32.813 using default UDP/IPv6 port range: [49152, 65535] +29-Mar-2018 01:07:32.814 listening on IPv4 interface lo0, 127.0.0.1#5400 +29-Mar-2018 01:07:32.817 generating session key for dynamic DNS +29-Mar-2018 01:07:32.818 could not open file '/opt/local/var/run/named/session.key': Permission denied +29-Mar-2018 01:07:32.818 could not create /opt/local/var/run/named/session.key +29-Mar-2018 01:07:32.818 failed to generate session key for dynamic DNS: permission denied +29-Mar-2018 01:07:32.819 sizing zone task pool based on 1 zones +29-Mar-2018 01:07:32.819 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +29-Mar-2018 01:07:32.824 set up managed keys zone for view _default, file 'managed-keys.bind' +29-Mar-2018 01:07:32.824 automatic empty zone: 10.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 16.172.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 17.172.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 18.172.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 19.172.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 20.172.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 21.172.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 22.172.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 23.172.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 24.172.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 25.172.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 26.172.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 27.172.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 28.172.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 29.172.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 30.172.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 31.172.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 168.192.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 64.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 65.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 66.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 67.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 68.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 69.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 70.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 71.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 72.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 73.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 74.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 75.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 76.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 77.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 78.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 79.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 80.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 81.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 82.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 83.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 84.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.824 automatic empty zone: 85.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 86.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 87.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 88.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 89.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 90.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 91.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 92.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 93.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 94.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 95.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 96.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 97.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 98.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 99.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 100.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 101.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 102.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 103.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 104.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 105.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 106.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 107.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 108.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 109.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 110.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 111.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 112.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 113.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 114.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 115.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 116.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 117.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 118.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 119.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 120.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 121.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 122.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 123.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 124.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 125.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 126.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 127.100.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 0.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 127.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 254.169.IN-ADDR.ARPA +29-Mar-2018 01:07:32.825 automatic empty zone: 2.0.192.IN-ADDR.ARPA +29-Mar-2018 01:07:32.826 automatic empty zone: 100.51.198.IN-ADDR.ARPA +29-Mar-2018 01:07:32.826 automatic empty zone: 113.0.203.IN-ADDR.ARPA +29-Mar-2018 01:07:32.826 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +29-Mar-2018 01:07:32.826 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +29-Mar-2018 01:07:32.826 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +29-Mar-2018 01:07:32.826 automatic empty zone: D.F.IP6.ARPA +29-Mar-2018 01:07:32.826 automatic empty zone: 8.E.F.IP6.ARPA +29-Mar-2018 01:07:32.826 automatic empty zone: 9.E.F.IP6.ARPA +29-Mar-2018 01:07:32.826 automatic empty zone: A.E.F.IP6.ARPA +29-Mar-2018 01:07:32.826 automatic empty zone: B.E.F.IP6.ARPA +29-Mar-2018 01:07:32.826 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +29-Mar-2018 01:07:32.826 automatic empty zone: EMPTY.AS112.ARPA +29-Mar-2018 01:07:32.826 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +29-Mar-2018 01:07:32.829 configuring command channel from '/opt/local/etc/rndc.key' +29-Mar-2018 01:07:32.829 couldn't add command channel 127.0.0.1#953: file not found +29-Mar-2018 01:07:32.829 configuring command channel from '/opt/local/etc/rndc.key' +29-Mar-2018 01:07:32.829 couldn't add command channel ::1#953: file not found +29-Mar-2018 01:07:32.829 not using config file logging statement for logging due to -g option +29-Mar-2018 01:07:32.831 managed-keys-zone: loaded serial 0 +29-Mar-2018 01:07:32.861 zone local/IN: loaded serial 2 +29-Mar-2018 01:07:32.861 all zones loaded +29-Mar-2018 01:07:32.862 running +29-Mar-2018 01:07:36.860 shutting down +29-Mar-2018 01:07:36.860 no longer listening on 127.0.0.1#5400 +29-Mar-2018 01:07:36.965 exiting +=== Log Marked @ 2018-04-11 22:52:18 +1200 [49274] === +11-Apr-2018 22:52:18.809 starting BIND 9.12.0 +11-Apr-2018 22:52:18.810 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +11-Apr-2018 22:52:18.810 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +11-Apr-2018 22:52:18.810 running as: named -c named.conf -f -p 5400 -g +11-Apr-2018 22:52:18.810 ---------------------------------------------------- +11-Apr-2018 22:52:18.810 BIND 9 is maintained by Internet Systems Consortium, +11-Apr-2018 22:52:18.810 Inc. (ISC), a non-profit 501(c)(3) public-benefit +11-Apr-2018 22:52:18.810 corporation. Support and training for BIND 9 are +11-Apr-2018 22:52:18.810 available at https://www.isc.org/support +11-Apr-2018 22:52:18.810 ---------------------------------------------------- +11-Apr-2018 22:52:18.811 found 8 CPUs, using 8 worker threads +11-Apr-2018 22:52:18.811 using 7 UDP listeners per interface +11-Apr-2018 22:52:18.811 using up to 4096 sockets +11-Apr-2018 22:52:18.833 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +11-Apr-2018 22:52:18.834 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +11-Apr-2018 22:52:18.834 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +11-Apr-2018 22:52:18.836 using default UDP/IPv4 port range: [49152, 65535] +11-Apr-2018 22:52:18.836 using default UDP/IPv6 port range: [49152, 65535] +11-Apr-2018 22:52:18.836 listening on IPv4 interface lo0, 127.0.0.1#5400 +11-Apr-2018 22:52:18.841 generating session key for dynamic DNS +11-Apr-2018 22:52:18.846 could not open file '/opt/local/var/run/named/session.key': Permission denied +11-Apr-2018 22:52:18.846 could not create /opt/local/var/run/named/session.key +11-Apr-2018 22:52:18.846 failed to generate session key for dynamic DNS: permission denied +11-Apr-2018 22:52:18.848 sizing zone task pool based on 1 zones +11-Apr-2018 22:52:18.849 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +11-Apr-2018 22:52:18.853 set up managed keys zone for view _default, file 'managed-keys.bind' +11-Apr-2018 22:52:18.853 automatic empty zone: 10.IN-ADDR.ARPA +11-Apr-2018 22:52:18.853 automatic empty zone: 16.172.IN-ADDR.ARPA +11-Apr-2018 22:52:18.853 automatic empty zone: 17.172.IN-ADDR.ARPA +11-Apr-2018 22:52:18.853 automatic empty zone: 18.172.IN-ADDR.ARPA +11-Apr-2018 22:52:18.853 automatic empty zone: 19.172.IN-ADDR.ARPA +11-Apr-2018 22:52:18.853 automatic empty zone: 20.172.IN-ADDR.ARPA +11-Apr-2018 22:52:18.853 automatic empty zone: 21.172.IN-ADDR.ARPA +11-Apr-2018 22:52:18.853 automatic empty zone: 22.172.IN-ADDR.ARPA +11-Apr-2018 22:52:18.853 automatic empty zone: 23.172.IN-ADDR.ARPA +11-Apr-2018 22:52:18.853 automatic empty zone: 24.172.IN-ADDR.ARPA +11-Apr-2018 22:52:18.853 automatic empty zone: 25.172.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 26.172.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 27.172.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 28.172.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 29.172.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 30.172.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 31.172.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 168.192.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 64.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 65.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 66.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 67.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 68.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 69.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 70.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 71.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 72.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 73.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 74.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 75.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 76.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 77.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 78.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 79.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 80.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 81.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 82.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 83.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 84.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 85.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 86.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 87.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 88.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 89.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 90.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 91.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 92.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 93.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 94.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 95.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 96.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 97.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 98.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 99.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 100.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 101.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.854 automatic empty zone: 102.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.855 automatic empty zone: 103.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.855 automatic empty zone: 104.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.855 automatic empty zone: 105.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.855 automatic empty zone: 106.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.855 automatic empty zone: 107.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.855 automatic empty zone: 108.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.855 automatic empty zone: 109.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.855 automatic empty zone: 110.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.855 automatic empty zone: 111.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.855 automatic empty zone: 112.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.855 automatic empty zone: 113.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.855 automatic empty zone: 114.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.855 automatic empty zone: 115.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.855 automatic empty zone: 116.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.855 automatic empty zone: 117.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.855 automatic empty zone: 118.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.855 automatic empty zone: 119.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.855 automatic empty zone: 120.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.855 automatic empty zone: 121.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.855 automatic empty zone: 122.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.855 automatic empty zone: 123.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.855 automatic empty zone: 124.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.855 automatic empty zone: 125.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.855 automatic empty zone: 126.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.855 automatic empty zone: 127.100.IN-ADDR.ARPA +11-Apr-2018 22:52:18.855 automatic empty zone: 0.IN-ADDR.ARPA +11-Apr-2018 22:52:18.855 automatic empty zone: 127.IN-ADDR.ARPA +11-Apr-2018 22:52:18.855 automatic empty zone: 254.169.IN-ADDR.ARPA +11-Apr-2018 22:52:18.855 automatic empty zone: 2.0.192.IN-ADDR.ARPA +11-Apr-2018 22:52:18.855 automatic empty zone: 100.51.198.IN-ADDR.ARPA +11-Apr-2018 22:52:18.855 automatic empty zone: 113.0.203.IN-ADDR.ARPA +11-Apr-2018 22:52:18.855 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +11-Apr-2018 22:52:18.855 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +11-Apr-2018 22:52:18.856 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +11-Apr-2018 22:52:18.856 automatic empty zone: D.F.IP6.ARPA +11-Apr-2018 22:52:18.856 automatic empty zone: 8.E.F.IP6.ARPA +11-Apr-2018 22:52:18.856 automatic empty zone: 9.E.F.IP6.ARPA +11-Apr-2018 22:52:18.856 automatic empty zone: A.E.F.IP6.ARPA +11-Apr-2018 22:52:18.856 automatic empty zone: B.E.F.IP6.ARPA +11-Apr-2018 22:52:18.856 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +11-Apr-2018 22:52:18.856 automatic empty zone: EMPTY.AS112.ARPA +11-Apr-2018 22:52:18.856 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +11-Apr-2018 22:52:18.862 configuring command channel from '/opt/local/etc/rndc.key' +11-Apr-2018 22:52:18.862 couldn't add command channel 127.0.0.1#953: file not found +11-Apr-2018 22:52:18.862 configuring command channel from '/opt/local/etc/rndc.key' +11-Apr-2018 22:52:18.862 couldn't add command channel ::1#953: file not found +11-Apr-2018 22:52:18.862 not using config file logging statement for logging due to -g option +11-Apr-2018 22:52:18.863 managed-keys-zone: loaded serial 0 +11-Apr-2018 22:52:18.896 zone local/IN: loaded serial 2 +11-Apr-2018 22:52:18.896 all zones loaded +11-Apr-2018 22:52:18.896 running +11-Apr-2018 22:52:23.830 shutting down +11-Apr-2018 22:52:23.831 no longer listening on 127.0.0.1#5400 +11-Apr-2018 22:52:23.942 exiting +=== Log Marked @ 2018-04-11 22:56:53 +1200 [49528] === +11-Apr-2018 22:56:53.608 starting BIND 9.12.0 +11-Apr-2018 22:56:53.608 running on Darwin x86_64 17.4.0 Darwin Kernel Version 17.4.0: Sun Dec 17 09:19:54 PST 2017; root:xnu-4570.41.2~1/RELEASE_X86_64 +11-Apr-2018 22:56:53.609 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +11-Apr-2018 22:56:53.609 running as: named -c named.conf -f -p 5400 -g +11-Apr-2018 22:56:53.609 ---------------------------------------------------- +11-Apr-2018 22:56:53.609 BIND 9 is maintained by Internet Systems Consortium, +11-Apr-2018 22:56:53.609 Inc. (ISC), a non-profit 501(c)(3) public-benefit +11-Apr-2018 22:56:53.609 corporation. Support and training for BIND 9 are +11-Apr-2018 22:56:53.609 available at https://www.isc.org/support +11-Apr-2018 22:56:53.609 ---------------------------------------------------- +11-Apr-2018 22:56:53.609 found 8 CPUs, using 8 worker threads +11-Apr-2018 22:56:53.609 using 7 UDP listeners per interface +11-Apr-2018 22:56:53.609 using up to 4096 sockets +11-Apr-2018 22:56:53.613 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +11-Apr-2018 22:56:53.613 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +11-Apr-2018 22:56:53.613 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +11-Apr-2018 22:56:53.614 using default UDP/IPv4 port range: [49152, 65535] +11-Apr-2018 22:56:53.614 using default UDP/IPv6 port range: [49152, 65535] +11-Apr-2018 22:56:53.614 listening on IPv4 interface lo0, 127.0.0.1#5400 +11-Apr-2018 22:56:53.617 generating session key for dynamic DNS +11-Apr-2018 22:56:53.617 could not open file '/opt/local/var/run/named/session.key': Permission denied +11-Apr-2018 22:56:53.617 could not create /opt/local/var/run/named/session.key +11-Apr-2018 22:56:53.617 failed to generate session key for dynamic DNS: permission denied +11-Apr-2018 22:56:53.617 sizing zone task pool based on 1 zones +11-Apr-2018 22:56:53.617 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +11-Apr-2018 22:56:53.620 set up managed keys zone for view _default, file 'managed-keys.bind' +11-Apr-2018 22:56:53.620 automatic empty zone: 10.IN-ADDR.ARPA +11-Apr-2018 22:56:53.620 automatic empty zone: 16.172.IN-ADDR.ARPA +11-Apr-2018 22:56:53.620 automatic empty zone: 17.172.IN-ADDR.ARPA +11-Apr-2018 22:56:53.620 automatic empty zone: 18.172.IN-ADDR.ARPA +11-Apr-2018 22:56:53.620 automatic empty zone: 19.172.IN-ADDR.ARPA +11-Apr-2018 22:56:53.620 automatic empty zone: 20.172.IN-ADDR.ARPA +11-Apr-2018 22:56:53.620 automatic empty zone: 21.172.IN-ADDR.ARPA +11-Apr-2018 22:56:53.620 automatic empty zone: 22.172.IN-ADDR.ARPA +11-Apr-2018 22:56:53.620 automatic empty zone: 23.172.IN-ADDR.ARPA +11-Apr-2018 22:56:53.620 automatic empty zone: 24.172.IN-ADDR.ARPA +11-Apr-2018 22:56:53.620 automatic empty zone: 25.172.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 26.172.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 27.172.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 28.172.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 29.172.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 30.172.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 31.172.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 168.192.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 64.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 65.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 66.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 67.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 68.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 69.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 70.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 71.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 72.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 73.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 74.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 75.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 76.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 77.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 78.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 79.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 80.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 81.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 82.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 83.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 84.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 85.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 86.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 87.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 88.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 89.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 90.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 91.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 92.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 93.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 94.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 95.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 96.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 97.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 98.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 99.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 100.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 101.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.621 automatic empty zone: 102.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 103.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 104.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 105.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 106.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 107.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 108.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 109.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 110.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 111.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 112.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 113.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 114.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 115.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 116.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 117.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 118.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 119.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 120.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 121.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 122.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 123.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 124.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 125.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 126.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 127.100.IN-ADDR.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 0.IN-ADDR.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 127.IN-ADDR.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 254.169.IN-ADDR.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 2.0.192.IN-ADDR.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 100.51.198.IN-ADDR.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 113.0.203.IN-ADDR.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: D.F.IP6.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 8.E.F.IP6.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 9.E.F.IP6.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: A.E.F.IP6.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: B.E.F.IP6.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +11-Apr-2018 22:56:53.622 automatic empty zone: EMPTY.AS112.ARPA +11-Apr-2018 22:56:53.623 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +11-Apr-2018 22:56:53.625 configuring command channel from '/opt/local/etc/rndc.key' +11-Apr-2018 22:56:53.625 couldn't add command channel 127.0.0.1#953: file not found +11-Apr-2018 22:56:53.625 configuring command channel from '/opt/local/etc/rndc.key' +11-Apr-2018 22:56:53.625 couldn't add command channel ::1#953: file not found +11-Apr-2018 22:56:53.625 not using config file logging statement for logging due to -g option +11-Apr-2018 22:56:53.626 managed-keys-zone: loaded serial 0 +11-Apr-2018 22:56:53.658 zone local/IN: loaded serial 2 +11-Apr-2018 22:56:53.658 all zones loaded +11-Apr-2018 22:56:53.658 running +11-Apr-2018 22:56:58.612 shutting down +11-Apr-2018 22:56:58.612 no longer listening on 127.0.0.1#5400 +11-Apr-2018 22:56:58.713 exiting +=== Log Marked @ 2018-05-01 00:43:47 +1200 [43732] === +01-May-2018 00:43:47.101 starting BIND 9.12.0 +01-May-2018 00:43:47.102 running on Darwin x86_64 17.5.0 Darwin Kernel Version 17.5.0: Mon Mar 5 22:24:32 PST 2018; root:xnu-4570.51.1~1/RELEASE_X86_64 +01-May-2018 00:43:47.102 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +01-May-2018 00:43:47.102 running as: named -c named.conf -f -p 5400 -g +01-May-2018 00:43:47.102 ---------------------------------------------------- +01-May-2018 00:43:47.102 BIND 9 is maintained by Internet Systems Consortium, +01-May-2018 00:43:47.102 Inc. (ISC), a non-profit 501(c)(3) public-benefit +01-May-2018 00:43:47.102 corporation. Support and training for BIND 9 are +01-May-2018 00:43:47.102 available at https://www.isc.org/support +01-May-2018 00:43:47.102 ---------------------------------------------------- +01-May-2018 00:43:47.102 found 8 CPUs, using 8 worker threads +01-May-2018 00:43:47.102 using 7 UDP listeners per interface +01-May-2018 00:43:47.103 using up to 4096 sockets +01-May-2018 00:43:47.123 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +01-May-2018 00:43:47.123 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +01-May-2018 00:43:47.124 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +01-May-2018 00:43:47.125 using default UDP/IPv4 port range: [49152, 65535] +01-May-2018 00:43:47.125 using default UDP/IPv6 port range: [49152, 65535] +01-May-2018 00:43:47.125 listening on IPv4 interface lo0, 127.0.0.1#5400 +01-May-2018 00:43:47.129 generating session key for dynamic DNS +01-May-2018 00:43:47.132 could not open file '/opt/local/var/run/named/session.key': Permission denied +01-May-2018 00:43:47.132 could not create /opt/local/var/run/named/session.key +01-May-2018 00:43:47.132 failed to generate session key for dynamic DNS: permission denied +01-May-2018 00:43:47.134 sizing zone task pool based on 1 zones +01-May-2018 00:43:47.135 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +01-May-2018 00:43:47.139 set up managed keys zone for view _default, file 'managed-keys.bind' +01-May-2018 00:43:47.139 automatic empty zone: 10.IN-ADDR.ARPA +01-May-2018 00:43:47.139 automatic empty zone: 16.172.IN-ADDR.ARPA +01-May-2018 00:43:47.139 automatic empty zone: 17.172.IN-ADDR.ARPA +01-May-2018 00:43:47.139 automatic empty zone: 18.172.IN-ADDR.ARPA +01-May-2018 00:43:47.139 automatic empty zone: 19.172.IN-ADDR.ARPA +01-May-2018 00:43:47.139 automatic empty zone: 20.172.IN-ADDR.ARPA +01-May-2018 00:43:47.139 automatic empty zone: 21.172.IN-ADDR.ARPA +01-May-2018 00:43:47.139 automatic empty zone: 22.172.IN-ADDR.ARPA +01-May-2018 00:43:47.139 automatic empty zone: 23.172.IN-ADDR.ARPA +01-May-2018 00:43:47.139 automatic empty zone: 24.172.IN-ADDR.ARPA +01-May-2018 00:43:47.139 automatic empty zone: 25.172.IN-ADDR.ARPA +01-May-2018 00:43:47.139 automatic empty zone: 26.172.IN-ADDR.ARPA +01-May-2018 00:43:47.139 automatic empty zone: 27.172.IN-ADDR.ARPA +01-May-2018 00:43:47.139 automatic empty zone: 28.172.IN-ADDR.ARPA +01-May-2018 00:43:47.139 automatic empty zone: 29.172.IN-ADDR.ARPA +01-May-2018 00:43:47.139 automatic empty zone: 30.172.IN-ADDR.ARPA +01-May-2018 00:43:47.139 automatic empty zone: 31.172.IN-ADDR.ARPA +01-May-2018 00:43:47.139 automatic empty zone: 168.192.IN-ADDR.ARPA +01-May-2018 00:43:47.139 automatic empty zone: 64.100.IN-ADDR.ARPA +01-May-2018 00:43:47.139 automatic empty zone: 65.100.IN-ADDR.ARPA +01-May-2018 00:43:47.139 automatic empty zone: 66.100.IN-ADDR.ARPA +01-May-2018 00:43:47.139 automatic empty zone: 67.100.IN-ADDR.ARPA +01-May-2018 00:43:47.139 automatic empty zone: 68.100.IN-ADDR.ARPA +01-May-2018 00:43:47.139 automatic empty zone: 69.100.IN-ADDR.ARPA +01-May-2018 00:43:47.139 automatic empty zone: 70.100.IN-ADDR.ARPA +01-May-2018 00:43:47.139 automatic empty zone: 71.100.IN-ADDR.ARPA +01-May-2018 00:43:47.140 automatic empty zone: 72.100.IN-ADDR.ARPA +01-May-2018 00:43:47.140 automatic empty zone: 73.100.IN-ADDR.ARPA +01-May-2018 00:43:47.140 automatic empty zone: 74.100.IN-ADDR.ARPA +01-May-2018 00:43:47.140 automatic empty zone: 75.100.IN-ADDR.ARPA +01-May-2018 00:43:47.140 automatic empty zone: 76.100.IN-ADDR.ARPA +01-May-2018 00:43:47.140 automatic empty zone: 77.100.IN-ADDR.ARPA +01-May-2018 00:43:47.140 automatic empty zone: 78.100.IN-ADDR.ARPA +01-May-2018 00:43:47.140 automatic empty zone: 79.100.IN-ADDR.ARPA +01-May-2018 00:43:47.140 automatic empty zone: 80.100.IN-ADDR.ARPA +01-May-2018 00:43:47.140 automatic empty zone: 81.100.IN-ADDR.ARPA +01-May-2018 00:43:47.140 automatic empty zone: 82.100.IN-ADDR.ARPA +01-May-2018 00:43:47.140 automatic empty zone: 83.100.IN-ADDR.ARPA +01-May-2018 00:43:47.140 automatic empty zone: 84.100.IN-ADDR.ARPA +01-May-2018 00:43:47.140 automatic empty zone: 85.100.IN-ADDR.ARPA +01-May-2018 00:43:47.140 automatic empty zone: 86.100.IN-ADDR.ARPA +01-May-2018 00:43:47.140 automatic empty zone: 87.100.IN-ADDR.ARPA +01-May-2018 00:43:47.140 automatic empty zone: 88.100.IN-ADDR.ARPA +01-May-2018 00:43:47.140 automatic empty zone: 89.100.IN-ADDR.ARPA +01-May-2018 00:43:47.140 automatic empty zone: 90.100.IN-ADDR.ARPA +01-May-2018 00:43:47.140 automatic empty zone: 91.100.IN-ADDR.ARPA +01-May-2018 00:43:47.140 automatic empty zone: 92.100.IN-ADDR.ARPA +01-May-2018 00:43:47.140 automatic empty zone: 93.100.IN-ADDR.ARPA +01-May-2018 00:43:47.140 automatic empty zone: 94.100.IN-ADDR.ARPA +01-May-2018 00:43:47.140 automatic empty zone: 95.100.IN-ADDR.ARPA +01-May-2018 00:43:47.140 automatic empty zone: 96.100.IN-ADDR.ARPA +01-May-2018 00:43:47.140 automatic empty zone: 97.100.IN-ADDR.ARPA +01-May-2018 00:43:47.140 automatic empty zone: 98.100.IN-ADDR.ARPA +01-May-2018 00:43:47.141 automatic empty zone: 99.100.IN-ADDR.ARPA +01-May-2018 00:43:47.141 automatic empty zone: 100.100.IN-ADDR.ARPA +01-May-2018 00:43:47.141 automatic empty zone: 101.100.IN-ADDR.ARPA +01-May-2018 00:43:47.141 automatic empty zone: 102.100.IN-ADDR.ARPA +01-May-2018 00:43:47.141 automatic empty zone: 103.100.IN-ADDR.ARPA +01-May-2018 00:43:47.141 automatic empty zone: 104.100.IN-ADDR.ARPA +01-May-2018 00:43:47.141 automatic empty zone: 105.100.IN-ADDR.ARPA +01-May-2018 00:43:47.141 automatic empty zone: 106.100.IN-ADDR.ARPA +01-May-2018 00:43:47.141 automatic empty zone: 107.100.IN-ADDR.ARPA +01-May-2018 00:43:47.141 automatic empty zone: 108.100.IN-ADDR.ARPA +01-May-2018 00:43:47.141 automatic empty zone: 109.100.IN-ADDR.ARPA +01-May-2018 00:43:47.141 automatic empty zone: 110.100.IN-ADDR.ARPA +01-May-2018 00:43:47.141 automatic empty zone: 111.100.IN-ADDR.ARPA +01-May-2018 00:43:47.141 automatic empty zone: 112.100.IN-ADDR.ARPA +01-May-2018 00:43:47.141 automatic empty zone: 113.100.IN-ADDR.ARPA +01-May-2018 00:43:47.141 automatic empty zone: 114.100.IN-ADDR.ARPA +01-May-2018 00:43:47.141 automatic empty zone: 115.100.IN-ADDR.ARPA +01-May-2018 00:43:47.141 automatic empty zone: 116.100.IN-ADDR.ARPA +01-May-2018 00:43:47.141 automatic empty zone: 117.100.IN-ADDR.ARPA +01-May-2018 00:43:47.141 automatic empty zone: 118.100.IN-ADDR.ARPA +01-May-2018 00:43:47.141 automatic empty zone: 119.100.IN-ADDR.ARPA +01-May-2018 00:43:47.141 automatic empty zone: 120.100.IN-ADDR.ARPA +01-May-2018 00:43:47.141 automatic empty zone: 121.100.IN-ADDR.ARPA +01-May-2018 00:43:47.141 automatic empty zone: 122.100.IN-ADDR.ARPA +01-May-2018 00:43:47.141 automatic empty zone: 123.100.IN-ADDR.ARPA +01-May-2018 00:43:47.141 automatic empty zone: 124.100.IN-ADDR.ARPA +01-May-2018 00:43:47.141 automatic empty zone: 125.100.IN-ADDR.ARPA +01-May-2018 00:43:47.141 automatic empty zone: 126.100.IN-ADDR.ARPA +01-May-2018 00:43:47.141 automatic empty zone: 127.100.IN-ADDR.ARPA +01-May-2018 00:43:47.141 automatic empty zone: 0.IN-ADDR.ARPA +01-May-2018 00:43:47.141 automatic empty zone: 127.IN-ADDR.ARPA +01-May-2018 00:43:47.141 automatic empty zone: 254.169.IN-ADDR.ARPA +01-May-2018 00:43:47.141 automatic empty zone: 2.0.192.IN-ADDR.ARPA +01-May-2018 00:43:47.142 automatic empty zone: 100.51.198.IN-ADDR.ARPA +01-May-2018 00:43:47.142 automatic empty zone: 113.0.203.IN-ADDR.ARPA +01-May-2018 00:43:47.142 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +01-May-2018 00:43:47.142 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +01-May-2018 00:43:47.142 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +01-May-2018 00:43:47.142 automatic empty zone: D.F.IP6.ARPA +01-May-2018 00:43:47.142 automatic empty zone: 8.E.F.IP6.ARPA +01-May-2018 00:43:47.142 automatic empty zone: 9.E.F.IP6.ARPA +01-May-2018 00:43:47.142 automatic empty zone: A.E.F.IP6.ARPA +01-May-2018 00:43:47.142 automatic empty zone: B.E.F.IP6.ARPA +01-May-2018 00:43:47.142 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +01-May-2018 00:43:47.142 automatic empty zone: EMPTY.AS112.ARPA +01-May-2018 00:43:47.142 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +01-May-2018 00:43:47.146 configuring command channel from '/opt/local/etc/rndc.key' +01-May-2018 00:43:47.146 couldn't add command channel 127.0.0.1#953: file not found +01-May-2018 00:43:47.146 configuring command channel from '/opt/local/etc/rndc.key' +01-May-2018 00:43:47.146 couldn't add command channel ::1#953: file not found +01-May-2018 00:43:47.146 not using config file logging statement for logging due to -g option +01-May-2018 00:43:47.146 managed-keys-zone: loaded serial 0 +01-May-2018 00:43:47.179 zone local/IN: loaded serial 2 +01-May-2018 00:43:47.179 all zones loaded +01-May-2018 00:43:47.179 running +01-May-2018 00:43:47.200 shutting down +01-May-2018 00:43:47.200 no longer listening on 127.0.0.1#5400 +01-May-2018 00:43:47.290 exiting +=== Log Marked @ 2018-05-01 00:45:20 +1200 [43803] === +01-May-2018 00:45:20.706 starting BIND 9.12.0 +01-May-2018 00:45:20.707 running on Darwin x86_64 17.5.0 Darwin Kernel Version 17.5.0: Mon Mar 5 22:24:32 PST 2018; root:xnu-4570.51.1~1/RELEASE_X86_64 +01-May-2018 00:45:20.707 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +01-May-2018 00:45:20.707 running as: named -c named.conf -f -p 5400 -g +01-May-2018 00:45:20.707 ---------------------------------------------------- +01-May-2018 00:45:20.707 BIND 9 is maintained by Internet Systems Consortium, +01-May-2018 00:45:20.707 Inc. (ISC), a non-profit 501(c)(3) public-benefit +01-May-2018 00:45:20.707 corporation. Support and training for BIND 9 are +01-May-2018 00:45:20.707 available at https://www.isc.org/support +01-May-2018 00:45:20.707 ---------------------------------------------------- +01-May-2018 00:45:20.707 found 8 CPUs, using 8 worker threads +01-May-2018 00:45:20.707 using 7 UDP listeners per interface +01-May-2018 00:45:20.707 using up to 4096 sockets +01-May-2018 00:45:20.712 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +01-May-2018 00:45:20.712 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +01-May-2018 00:45:20.712 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +01-May-2018 00:45:20.713 using default UDP/IPv4 port range: [49152, 65535] +01-May-2018 00:45:20.713 using default UDP/IPv6 port range: [49152, 65535] +01-May-2018 00:45:20.714 listening on IPv4 interface lo0, 127.0.0.1#5400 +01-May-2018 00:45:20.716 generating session key for dynamic DNS +01-May-2018 00:45:20.716 could not open file '/opt/local/var/run/named/session.key': Permission denied +01-May-2018 00:45:20.716 could not create /opt/local/var/run/named/session.key +01-May-2018 00:45:20.716 failed to generate session key for dynamic DNS: permission denied +01-May-2018 00:45:20.716 sizing zone task pool based on 1 zones +01-May-2018 00:45:20.717 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +01-May-2018 00:45:20.719 set up managed keys zone for view _default, file 'managed-keys.bind' +01-May-2018 00:45:20.720 automatic empty zone: 10.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 16.172.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 17.172.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 18.172.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 19.172.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 20.172.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 21.172.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 22.172.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 23.172.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 24.172.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 25.172.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 26.172.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 27.172.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 28.172.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 29.172.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 30.172.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 31.172.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 168.192.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 64.100.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 65.100.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 66.100.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 67.100.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 68.100.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 69.100.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 70.100.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 71.100.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 72.100.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 73.100.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 74.100.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 75.100.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 76.100.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 77.100.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 78.100.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 79.100.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 80.100.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 81.100.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 82.100.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 83.100.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 84.100.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 85.100.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 86.100.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 87.100.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 88.100.IN-ADDR.ARPA +01-May-2018 00:45:20.720 automatic empty zone: 89.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 90.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 91.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 92.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 93.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 94.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 95.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 96.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 97.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 98.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 99.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 100.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 101.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 102.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 103.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 104.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 105.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 106.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 107.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 108.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 109.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 110.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 111.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 112.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 113.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 114.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 115.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 116.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 117.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 118.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 119.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 120.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 121.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 122.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 123.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 124.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 125.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 126.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 127.100.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 0.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 127.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 254.169.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 2.0.192.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 100.51.198.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 113.0.203.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +01-May-2018 00:45:20.721 automatic empty zone: D.F.IP6.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 8.E.F.IP6.ARPA +01-May-2018 00:45:20.721 automatic empty zone: 9.E.F.IP6.ARPA +01-May-2018 00:45:20.722 automatic empty zone: A.E.F.IP6.ARPA +01-May-2018 00:45:20.722 automatic empty zone: B.E.F.IP6.ARPA +01-May-2018 00:45:20.722 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +01-May-2018 00:45:20.722 automatic empty zone: EMPTY.AS112.ARPA +01-May-2018 00:45:20.722 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +01-May-2018 00:45:20.724 configuring command channel from '/opt/local/etc/rndc.key' +01-May-2018 00:45:20.724 couldn't add command channel 127.0.0.1#953: file not found +01-May-2018 00:45:20.725 configuring command channel from '/opt/local/etc/rndc.key' +01-May-2018 00:45:20.725 couldn't add command channel ::1#953: file not found +01-May-2018 00:45:20.725 not using config file logging statement for logging due to -g option +01-May-2018 00:45:20.725 managed-keys-zone: loaded serial 0 +01-May-2018 00:45:20.757 zone local/IN: loaded serial 2 +01-May-2018 00:45:20.758 all zones loaded +01-May-2018 00:45:20.758 running +01-May-2018 00:45:24.880 shutting down +01-May-2018 00:45:24.881 no longer listening on 127.0.0.1#5400 +01-May-2018 00:45:24.975 exiting +=== Log Marked @ 2018-05-01 01:01:34 +1200 [44075] === +01-May-2018 01:01:34.349 starting BIND 9.12.0 +01-May-2018 01:01:34.350 running on Darwin x86_64 17.5.0 Darwin Kernel Version 17.5.0: Mon Mar 5 22:24:32 PST 2018; root:xnu-4570.51.1~1/RELEASE_X86_64 +01-May-2018 01:01:34.350 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +01-May-2018 01:01:34.350 running as: named -c named.conf -f -p 5400 -g +01-May-2018 01:01:34.350 ---------------------------------------------------- +01-May-2018 01:01:34.350 BIND 9 is maintained by Internet Systems Consortium, +01-May-2018 01:01:34.350 Inc. (ISC), a non-profit 501(c)(3) public-benefit +01-May-2018 01:01:34.350 corporation. Support and training for BIND 9 are +01-May-2018 01:01:34.350 available at https://www.isc.org/support +01-May-2018 01:01:34.350 ---------------------------------------------------- +01-May-2018 01:01:34.350 found 8 CPUs, using 8 worker threads +01-May-2018 01:01:34.351 using 7 UDP listeners per interface +01-May-2018 01:01:34.351 using up to 4096 sockets +01-May-2018 01:01:34.365 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +01-May-2018 01:01:34.366 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +01-May-2018 01:01:34.366 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +01-May-2018 01:01:34.367 using default UDP/IPv4 port range: [49152, 65535] +01-May-2018 01:01:34.367 using default UDP/IPv6 port range: [49152, 65535] +01-May-2018 01:01:34.367 listening on IPv4 interface lo0, 127.0.0.1#5400 +01-May-2018 01:01:34.371 generating session key for dynamic DNS +01-May-2018 01:01:34.371 could not open file '/opt/local/var/run/named/session.key': Permission denied +01-May-2018 01:01:34.371 could not create /opt/local/var/run/named/session.key +01-May-2018 01:01:34.371 failed to generate session key for dynamic DNS: permission denied +01-May-2018 01:01:34.373 sizing zone task pool based on 1 zones +01-May-2018 01:01:34.373 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +01-May-2018 01:01:34.377 set up managed keys zone for view _default, file 'managed-keys.bind' +01-May-2018 01:01:34.377 automatic empty zone: 10.IN-ADDR.ARPA +01-May-2018 01:01:34.377 automatic empty zone: 16.172.IN-ADDR.ARPA +01-May-2018 01:01:34.377 automatic empty zone: 17.172.IN-ADDR.ARPA +01-May-2018 01:01:34.377 automatic empty zone: 18.172.IN-ADDR.ARPA +01-May-2018 01:01:34.377 automatic empty zone: 19.172.IN-ADDR.ARPA +01-May-2018 01:01:34.377 automatic empty zone: 20.172.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 21.172.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 22.172.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 23.172.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 24.172.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 25.172.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 26.172.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 27.172.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 28.172.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 29.172.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 30.172.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 31.172.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 168.192.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 64.100.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 65.100.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 66.100.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 67.100.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 68.100.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 69.100.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 70.100.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 71.100.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 72.100.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 73.100.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 74.100.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 75.100.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 76.100.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 77.100.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 78.100.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 79.100.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 80.100.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 81.100.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 82.100.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 83.100.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 84.100.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 85.100.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 86.100.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 87.100.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 88.100.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 89.100.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 90.100.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 91.100.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 92.100.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 93.100.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 94.100.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 95.100.IN-ADDR.ARPA +01-May-2018 01:01:34.378 automatic empty zone: 96.100.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 97.100.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 98.100.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 99.100.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 100.100.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 101.100.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 102.100.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 103.100.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 104.100.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 105.100.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 106.100.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 107.100.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 108.100.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 109.100.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 110.100.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 111.100.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 112.100.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 113.100.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 114.100.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 115.100.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 116.100.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 117.100.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 118.100.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 119.100.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 120.100.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 121.100.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 122.100.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 123.100.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 124.100.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 125.100.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 126.100.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 127.100.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 0.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 127.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 254.169.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 2.0.192.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 100.51.198.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 113.0.203.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +01-May-2018 01:01:34.379 automatic empty zone: D.F.IP6.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 8.E.F.IP6.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 9.E.F.IP6.ARPA +01-May-2018 01:01:34.379 automatic empty zone: A.E.F.IP6.ARPA +01-May-2018 01:01:34.379 automatic empty zone: B.E.F.IP6.ARPA +01-May-2018 01:01:34.379 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +01-May-2018 01:01:34.379 automatic empty zone: EMPTY.AS112.ARPA +01-May-2018 01:01:34.380 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +01-May-2018 01:01:34.382 configuring command channel from '/opt/local/etc/rndc.key' +01-May-2018 01:01:34.382 couldn't add command channel 127.0.0.1#953: file not found +01-May-2018 01:01:34.382 configuring command channel from '/opt/local/etc/rndc.key' +01-May-2018 01:01:34.382 couldn't add command channel ::1#953: file not found +01-May-2018 01:01:34.382 not using config file logging statement for logging due to -g option +01-May-2018 01:01:34.383 managed-keys-zone: loaded serial 0 +01-May-2018 01:01:34.411 zone local/IN: loaded serial 2 +01-May-2018 01:01:34.411 all zones loaded +01-May-2018 01:01:34.412 running +01-May-2018 01:01:39.014 shutting down +01-May-2018 01:01:39.014 no longer listening on 127.0.0.1#5400 +01-May-2018 01:01:39.114 exiting +=== Log Marked @ 2018-05-01 01:30:02 +1200 [44543] === +01-May-2018 01:30:02.484 starting BIND 9.12.0 +01-May-2018 01:30:02.484 running on Darwin x86_64 17.5.0 Darwin Kernel Version 17.5.0: Mon Mar 5 22:24:32 PST 2018; root:xnu-4570.51.1~1/RELEASE_X86_64 +01-May-2018 01:30:02.484 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +01-May-2018 01:30:02.484 running as: named -c named.conf -f -p 5400 -g +01-May-2018 01:30:02.484 ---------------------------------------------------- +01-May-2018 01:30:02.485 BIND 9 is maintained by Internet Systems Consortium, +01-May-2018 01:30:02.485 Inc. (ISC), a non-profit 501(c)(3) public-benefit +01-May-2018 01:30:02.485 corporation. Support and training for BIND 9 are +01-May-2018 01:30:02.485 available at https://www.isc.org/support +01-May-2018 01:30:02.485 ---------------------------------------------------- +01-May-2018 01:30:02.485 found 8 CPUs, using 8 worker threads +01-May-2018 01:30:02.485 using 7 UDP listeners per interface +01-May-2018 01:30:02.486 using up to 4096 sockets +01-May-2018 01:30:02.500 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +01-May-2018 01:30:02.500 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +01-May-2018 01:30:02.500 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +01-May-2018 01:30:02.501 using default UDP/IPv4 port range: [49152, 65535] +01-May-2018 01:30:02.501 using default UDP/IPv6 port range: [49152, 65535] +01-May-2018 01:30:02.502 listening on IPv4 interface lo0, 127.0.0.1#5400 +01-May-2018 01:30:02.505 generating session key for dynamic DNS +01-May-2018 01:30:02.506 could not open file '/opt/local/var/run/named/session.key': Permission denied +01-May-2018 01:30:02.506 could not create /opt/local/var/run/named/session.key +01-May-2018 01:30:02.506 failed to generate session key for dynamic DNS: permission denied +01-May-2018 01:30:02.507 sizing zone task pool based on 1 zones +01-May-2018 01:30:02.507 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +01-May-2018 01:30:02.511 set up managed keys zone for view _default, file 'managed-keys.bind' +01-May-2018 01:30:02.511 automatic empty zone: 10.IN-ADDR.ARPA +01-May-2018 01:30:02.511 automatic empty zone: 16.172.IN-ADDR.ARPA +01-May-2018 01:30:02.511 automatic empty zone: 17.172.IN-ADDR.ARPA +01-May-2018 01:30:02.511 automatic empty zone: 18.172.IN-ADDR.ARPA +01-May-2018 01:30:02.511 automatic empty zone: 19.172.IN-ADDR.ARPA +01-May-2018 01:30:02.511 automatic empty zone: 20.172.IN-ADDR.ARPA +01-May-2018 01:30:02.511 automatic empty zone: 21.172.IN-ADDR.ARPA +01-May-2018 01:30:02.511 automatic empty zone: 22.172.IN-ADDR.ARPA +01-May-2018 01:30:02.512 automatic empty zone: 23.172.IN-ADDR.ARPA +01-May-2018 01:30:02.512 automatic empty zone: 24.172.IN-ADDR.ARPA +01-May-2018 01:30:02.512 automatic empty zone: 25.172.IN-ADDR.ARPA +01-May-2018 01:30:02.512 automatic empty zone: 26.172.IN-ADDR.ARPA +01-May-2018 01:30:02.512 automatic empty zone: 27.172.IN-ADDR.ARPA +01-May-2018 01:30:02.512 automatic empty zone: 28.172.IN-ADDR.ARPA +01-May-2018 01:30:02.512 automatic empty zone: 29.172.IN-ADDR.ARPA +01-May-2018 01:30:02.512 automatic empty zone: 30.172.IN-ADDR.ARPA +01-May-2018 01:30:02.512 automatic empty zone: 31.172.IN-ADDR.ARPA +01-May-2018 01:30:02.512 automatic empty zone: 168.192.IN-ADDR.ARPA +01-May-2018 01:30:02.512 automatic empty zone: 64.100.IN-ADDR.ARPA +01-May-2018 01:30:02.512 automatic empty zone: 65.100.IN-ADDR.ARPA +01-May-2018 01:30:02.512 automatic empty zone: 66.100.IN-ADDR.ARPA +01-May-2018 01:30:02.512 automatic empty zone: 67.100.IN-ADDR.ARPA +01-May-2018 01:30:02.512 automatic empty zone: 68.100.IN-ADDR.ARPA +01-May-2018 01:30:02.512 automatic empty zone: 69.100.IN-ADDR.ARPA +01-May-2018 01:30:02.512 automatic empty zone: 70.100.IN-ADDR.ARPA +01-May-2018 01:30:02.512 automatic empty zone: 71.100.IN-ADDR.ARPA +01-May-2018 01:30:02.512 automatic empty zone: 72.100.IN-ADDR.ARPA +01-May-2018 01:30:02.512 automatic empty zone: 73.100.IN-ADDR.ARPA +01-May-2018 01:30:02.512 automatic empty zone: 74.100.IN-ADDR.ARPA +01-May-2018 01:30:02.512 automatic empty zone: 75.100.IN-ADDR.ARPA +01-May-2018 01:30:02.512 automatic empty zone: 76.100.IN-ADDR.ARPA +01-May-2018 01:30:02.512 automatic empty zone: 77.100.IN-ADDR.ARPA +01-May-2018 01:30:02.512 automatic empty zone: 78.100.IN-ADDR.ARPA +01-May-2018 01:30:02.512 automatic empty zone: 79.100.IN-ADDR.ARPA +01-May-2018 01:30:02.512 automatic empty zone: 80.100.IN-ADDR.ARPA +01-May-2018 01:30:02.512 automatic empty zone: 81.100.IN-ADDR.ARPA +01-May-2018 01:30:02.512 automatic empty zone: 82.100.IN-ADDR.ARPA +01-May-2018 01:30:02.513 automatic empty zone: 83.100.IN-ADDR.ARPA +01-May-2018 01:30:02.513 automatic empty zone: 84.100.IN-ADDR.ARPA +01-May-2018 01:30:02.513 automatic empty zone: 85.100.IN-ADDR.ARPA +01-May-2018 01:30:02.513 automatic empty zone: 86.100.IN-ADDR.ARPA +01-May-2018 01:30:02.513 automatic empty zone: 87.100.IN-ADDR.ARPA +01-May-2018 01:30:02.513 automatic empty zone: 88.100.IN-ADDR.ARPA +01-May-2018 01:30:02.513 automatic empty zone: 89.100.IN-ADDR.ARPA +01-May-2018 01:30:02.513 automatic empty zone: 90.100.IN-ADDR.ARPA +01-May-2018 01:30:02.513 automatic empty zone: 91.100.IN-ADDR.ARPA +01-May-2018 01:30:02.513 automatic empty zone: 92.100.IN-ADDR.ARPA +01-May-2018 01:30:02.513 automatic empty zone: 93.100.IN-ADDR.ARPA +01-May-2018 01:30:02.513 automatic empty zone: 94.100.IN-ADDR.ARPA +01-May-2018 01:30:02.513 automatic empty zone: 95.100.IN-ADDR.ARPA +01-May-2018 01:30:02.513 automatic empty zone: 96.100.IN-ADDR.ARPA +01-May-2018 01:30:02.513 automatic empty zone: 97.100.IN-ADDR.ARPA +01-May-2018 01:30:02.513 automatic empty zone: 98.100.IN-ADDR.ARPA +01-May-2018 01:30:02.513 automatic empty zone: 99.100.IN-ADDR.ARPA +01-May-2018 01:30:02.514 automatic empty zone: 100.100.IN-ADDR.ARPA +01-May-2018 01:30:02.514 automatic empty zone: 101.100.IN-ADDR.ARPA +01-May-2018 01:30:02.514 automatic empty zone: 102.100.IN-ADDR.ARPA +01-May-2018 01:30:02.514 automatic empty zone: 103.100.IN-ADDR.ARPA +01-May-2018 01:30:02.514 automatic empty zone: 104.100.IN-ADDR.ARPA +01-May-2018 01:30:02.514 automatic empty zone: 105.100.IN-ADDR.ARPA +01-May-2018 01:30:02.514 automatic empty zone: 106.100.IN-ADDR.ARPA +01-May-2018 01:30:02.514 automatic empty zone: 107.100.IN-ADDR.ARPA +01-May-2018 01:30:02.514 automatic empty zone: 108.100.IN-ADDR.ARPA +01-May-2018 01:30:02.514 automatic empty zone: 109.100.IN-ADDR.ARPA +01-May-2018 01:30:02.514 automatic empty zone: 110.100.IN-ADDR.ARPA +01-May-2018 01:30:02.514 automatic empty zone: 111.100.IN-ADDR.ARPA +01-May-2018 01:30:02.514 automatic empty zone: 112.100.IN-ADDR.ARPA +01-May-2018 01:30:02.514 automatic empty zone: 113.100.IN-ADDR.ARPA +01-May-2018 01:30:02.514 automatic empty zone: 114.100.IN-ADDR.ARPA +01-May-2018 01:30:02.514 automatic empty zone: 115.100.IN-ADDR.ARPA +01-May-2018 01:30:02.514 automatic empty zone: 116.100.IN-ADDR.ARPA +01-May-2018 01:30:02.514 automatic empty zone: 117.100.IN-ADDR.ARPA +01-May-2018 01:30:02.514 automatic empty zone: 118.100.IN-ADDR.ARPA +01-May-2018 01:30:02.514 automatic empty zone: 119.100.IN-ADDR.ARPA +01-May-2018 01:30:02.514 automatic empty zone: 120.100.IN-ADDR.ARPA +01-May-2018 01:30:02.514 automatic empty zone: 121.100.IN-ADDR.ARPA +01-May-2018 01:30:02.514 automatic empty zone: 122.100.IN-ADDR.ARPA +01-May-2018 01:30:02.514 automatic empty zone: 123.100.IN-ADDR.ARPA +01-May-2018 01:30:02.514 automatic empty zone: 124.100.IN-ADDR.ARPA +01-May-2018 01:30:02.514 automatic empty zone: 125.100.IN-ADDR.ARPA +01-May-2018 01:30:02.514 automatic empty zone: 126.100.IN-ADDR.ARPA +01-May-2018 01:30:02.514 automatic empty zone: 127.100.IN-ADDR.ARPA +01-May-2018 01:30:02.514 automatic empty zone: 0.IN-ADDR.ARPA +01-May-2018 01:30:02.514 automatic empty zone: 127.IN-ADDR.ARPA +01-May-2018 01:30:02.514 automatic empty zone: 254.169.IN-ADDR.ARPA +01-May-2018 01:30:02.515 automatic empty zone: 2.0.192.IN-ADDR.ARPA +01-May-2018 01:30:02.515 automatic empty zone: 100.51.198.IN-ADDR.ARPA +01-May-2018 01:30:02.515 automatic empty zone: 113.0.203.IN-ADDR.ARPA +01-May-2018 01:30:02.515 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +01-May-2018 01:30:02.515 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +01-May-2018 01:30:02.515 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +01-May-2018 01:30:02.515 automatic empty zone: D.F.IP6.ARPA +01-May-2018 01:30:02.515 automatic empty zone: 8.E.F.IP6.ARPA +01-May-2018 01:30:02.515 automatic empty zone: 9.E.F.IP6.ARPA +01-May-2018 01:30:02.515 automatic empty zone: A.E.F.IP6.ARPA +01-May-2018 01:30:02.515 automatic empty zone: B.E.F.IP6.ARPA +01-May-2018 01:30:02.515 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +01-May-2018 01:30:02.515 automatic empty zone: EMPTY.AS112.ARPA +01-May-2018 01:30:02.515 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +01-May-2018 01:30:02.518 configuring command channel from '/opt/local/etc/rndc.key' +01-May-2018 01:30:02.518 couldn't add command channel 127.0.0.1#953: file not found +01-May-2018 01:30:02.518 configuring command channel from '/opt/local/etc/rndc.key' +01-May-2018 01:30:02.518 couldn't add command channel ::1#953: file not found +01-May-2018 01:30:02.518 not using config file logging statement for logging due to -g option +01-May-2018 01:30:02.519 managed-keys-zone: loaded serial 0 +01-May-2018 01:30:02.550 zone local/IN: loaded serial 2 +01-May-2018 01:30:02.550 all zones loaded +01-May-2018 01:30:02.550 running +01-May-2018 01:30:06.677 shutting down +01-May-2018 01:30:06.678 no longer listening on 127.0.0.1#5400 +01-May-2018 01:30:06.783 exiting +=== Log Marked @ 2018-05-01 02:22:37 +1200 [45485] === +01-May-2018 02:22:37.817 starting BIND 9.12.0 +01-May-2018 02:22:37.817 running on Darwin x86_64 17.5.0 Darwin Kernel Version 17.5.0: Mon Mar 5 22:24:32 PST 2018; root:xnu-4570.51.1~1/RELEASE_X86_64 +01-May-2018 02:22:37.817 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +01-May-2018 02:22:37.817 running as: named -c named.conf -f -p 5400 -g +01-May-2018 02:22:37.817 ---------------------------------------------------- +01-May-2018 02:22:37.817 BIND 9 is maintained by Internet Systems Consortium, +01-May-2018 02:22:37.817 Inc. (ISC), a non-profit 501(c)(3) public-benefit +01-May-2018 02:22:37.817 corporation. Support and training for BIND 9 are +01-May-2018 02:22:37.817 available at https://www.isc.org/support +01-May-2018 02:22:37.817 ---------------------------------------------------- +01-May-2018 02:22:37.817 found 8 CPUs, using 8 worker threads +01-May-2018 02:22:37.817 using 7 UDP listeners per interface +01-May-2018 02:22:37.817 using up to 4096 sockets +01-May-2018 02:22:37.823 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +01-May-2018 02:22:37.823 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +01-May-2018 02:22:37.823 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +01-May-2018 02:22:37.824 using default UDP/IPv4 port range: [49152, 65535] +01-May-2018 02:22:37.824 using default UDP/IPv6 port range: [49152, 65535] +01-May-2018 02:22:37.825 listening on IPv4 interface lo0, 127.0.0.1#5400 +01-May-2018 02:22:37.827 generating session key for dynamic DNS +01-May-2018 02:22:37.828 could not open file '/opt/local/var/run/named/session.key': Permission denied +01-May-2018 02:22:37.828 could not create /opt/local/var/run/named/session.key +01-May-2018 02:22:37.828 failed to generate session key for dynamic DNS: permission denied +01-May-2018 02:22:37.828 sizing zone task pool based on 1 zones +01-May-2018 02:22:37.828 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +01-May-2018 02:22:37.831 set up managed keys zone for view _default, file 'managed-keys.bind' +01-May-2018 02:22:37.832 automatic empty zone: 10.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 16.172.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 17.172.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 18.172.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 19.172.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 20.172.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 21.172.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 22.172.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 23.172.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 24.172.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 25.172.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 26.172.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 27.172.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 28.172.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 29.172.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 30.172.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 31.172.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 168.192.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 64.100.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 65.100.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 66.100.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 67.100.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 68.100.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 69.100.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 70.100.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 71.100.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 72.100.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 73.100.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 74.100.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 75.100.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 76.100.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 77.100.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 78.100.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 79.100.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 80.100.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 81.100.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 82.100.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 83.100.IN-ADDR.ARPA +01-May-2018 02:22:37.832 automatic empty zone: 84.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 85.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 86.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 87.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 88.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 89.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 90.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 91.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 92.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 93.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 94.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 95.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 96.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 97.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 98.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 99.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 100.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 101.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 102.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 103.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 104.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 105.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 106.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 107.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 108.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 109.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 110.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 111.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 112.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 113.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 114.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 115.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 116.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 117.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 118.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 119.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 120.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 121.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 122.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 123.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 124.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 125.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 126.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 127.100.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 0.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 127.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 254.169.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 2.0.192.IN-ADDR.ARPA +01-May-2018 02:22:37.833 automatic empty zone: 100.51.198.IN-ADDR.ARPA +01-May-2018 02:22:37.834 automatic empty zone: 113.0.203.IN-ADDR.ARPA +01-May-2018 02:22:37.834 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +01-May-2018 02:22:37.834 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +01-May-2018 02:22:37.834 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +01-May-2018 02:22:37.834 automatic empty zone: D.F.IP6.ARPA +01-May-2018 02:22:37.834 automatic empty zone: 8.E.F.IP6.ARPA +01-May-2018 02:22:37.834 automatic empty zone: 9.E.F.IP6.ARPA +01-May-2018 02:22:37.834 automatic empty zone: A.E.F.IP6.ARPA +01-May-2018 02:22:37.834 automatic empty zone: B.E.F.IP6.ARPA +01-May-2018 02:22:37.834 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +01-May-2018 02:22:37.834 automatic empty zone: EMPTY.AS112.ARPA +01-May-2018 02:22:37.834 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +01-May-2018 02:22:37.837 configuring command channel from '/opt/local/etc/rndc.key' +01-May-2018 02:22:37.837 couldn't add command channel 127.0.0.1#953: file not found +01-May-2018 02:22:37.837 configuring command channel from '/opt/local/etc/rndc.key' +01-May-2018 02:22:37.837 couldn't add command channel ::1#953: file not found +01-May-2018 02:22:37.837 not using config file logging statement for logging due to -g option +01-May-2018 02:22:37.838 managed-keys-zone: loaded serial 0 +01-May-2018 02:22:37.869 zone local/IN: loaded serial 2 +01-May-2018 02:22:37.869 all zones loaded +01-May-2018 02:22:37.869 running +01-May-2018 02:22:42.182 shutting down +01-May-2018 02:22:42.183 no longer listening on 127.0.0.1#5400 +01-May-2018 02:22:42.300 exiting +=== Log Marked @ 2018-05-01 02:25:57 +1200 [45595] === +01-May-2018 02:25:57.386 starting BIND 9.12.0 +01-May-2018 02:25:57.387 running on Darwin x86_64 17.5.0 Darwin Kernel Version 17.5.0: Mon Mar 5 22:24:32 PST 2018; root:xnu-4570.51.1~1/RELEASE_X86_64 +01-May-2018 02:25:57.387 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +01-May-2018 02:25:57.387 running as: named -c named.conf -f -p 5400 -g +01-May-2018 02:25:57.387 ---------------------------------------------------- +01-May-2018 02:25:57.387 BIND 9 is maintained by Internet Systems Consortium, +01-May-2018 02:25:57.387 Inc. (ISC), a non-profit 501(c)(3) public-benefit +01-May-2018 02:25:57.387 corporation. Support and training for BIND 9 are +01-May-2018 02:25:57.387 available at https://www.isc.org/support +01-May-2018 02:25:57.387 ---------------------------------------------------- +01-May-2018 02:25:57.387 found 8 CPUs, using 8 worker threads +01-May-2018 02:25:57.387 using 7 UDP listeners per interface +01-May-2018 02:25:57.387 using up to 4096 sockets +01-May-2018 02:25:57.392 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +01-May-2018 02:25:57.392 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +01-May-2018 02:25:57.392 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +01-May-2018 02:25:57.392 using default UDP/IPv4 port range: [49152, 65535] +01-May-2018 02:25:57.392 using default UDP/IPv6 port range: [49152, 65535] +01-May-2018 02:25:57.393 listening on IPv4 interface lo0, 127.0.0.1#5400 +01-May-2018 02:25:57.395 generating session key for dynamic DNS +01-May-2018 02:25:57.396 could not open file '/opt/local/var/run/named/session.key': Permission denied +01-May-2018 02:25:57.396 could not create /opt/local/var/run/named/session.key +01-May-2018 02:25:57.396 failed to generate session key for dynamic DNS: permission denied +01-May-2018 02:25:57.396 sizing zone task pool based on 1 zones +01-May-2018 02:25:57.396 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +01-May-2018 02:25:57.399 set up managed keys zone for view _default, file 'managed-keys.bind' +01-May-2018 02:25:57.399 automatic empty zone: 10.IN-ADDR.ARPA +01-May-2018 02:25:57.399 automatic empty zone: 16.172.IN-ADDR.ARPA +01-May-2018 02:25:57.399 automatic empty zone: 17.172.IN-ADDR.ARPA +01-May-2018 02:25:57.399 automatic empty zone: 18.172.IN-ADDR.ARPA +01-May-2018 02:25:57.399 automatic empty zone: 19.172.IN-ADDR.ARPA +01-May-2018 02:25:57.399 automatic empty zone: 20.172.IN-ADDR.ARPA +01-May-2018 02:25:57.399 automatic empty zone: 21.172.IN-ADDR.ARPA +01-May-2018 02:25:57.399 automatic empty zone: 22.172.IN-ADDR.ARPA +01-May-2018 02:25:57.399 automatic empty zone: 23.172.IN-ADDR.ARPA +01-May-2018 02:25:57.399 automatic empty zone: 24.172.IN-ADDR.ARPA +01-May-2018 02:25:57.399 automatic empty zone: 25.172.IN-ADDR.ARPA +01-May-2018 02:25:57.399 automatic empty zone: 26.172.IN-ADDR.ARPA +01-May-2018 02:25:57.399 automatic empty zone: 27.172.IN-ADDR.ARPA +01-May-2018 02:25:57.399 automatic empty zone: 28.172.IN-ADDR.ARPA +01-May-2018 02:25:57.399 automatic empty zone: 29.172.IN-ADDR.ARPA +01-May-2018 02:25:57.399 automatic empty zone: 30.172.IN-ADDR.ARPA +01-May-2018 02:25:57.399 automatic empty zone: 31.172.IN-ADDR.ARPA +01-May-2018 02:25:57.399 automatic empty zone: 168.192.IN-ADDR.ARPA +01-May-2018 02:25:57.399 automatic empty zone: 64.100.IN-ADDR.ARPA +01-May-2018 02:25:57.399 automatic empty zone: 65.100.IN-ADDR.ARPA +01-May-2018 02:25:57.399 automatic empty zone: 66.100.IN-ADDR.ARPA +01-May-2018 02:25:57.399 automatic empty zone: 67.100.IN-ADDR.ARPA +01-May-2018 02:25:57.399 automatic empty zone: 68.100.IN-ADDR.ARPA +01-May-2018 02:25:57.399 automatic empty zone: 69.100.IN-ADDR.ARPA +01-May-2018 02:25:57.399 automatic empty zone: 70.100.IN-ADDR.ARPA +01-May-2018 02:25:57.399 automatic empty zone: 71.100.IN-ADDR.ARPA +01-May-2018 02:25:57.399 automatic empty zone: 72.100.IN-ADDR.ARPA +01-May-2018 02:25:57.399 automatic empty zone: 73.100.IN-ADDR.ARPA +01-May-2018 02:25:57.399 automatic empty zone: 74.100.IN-ADDR.ARPA +01-May-2018 02:25:57.399 automatic empty zone: 75.100.IN-ADDR.ARPA +01-May-2018 02:25:57.399 automatic empty zone: 76.100.IN-ADDR.ARPA +01-May-2018 02:25:57.399 automatic empty zone: 77.100.IN-ADDR.ARPA +01-May-2018 02:25:57.399 automatic empty zone: 78.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 79.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 80.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 81.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 82.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 83.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 84.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 85.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 86.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 87.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 88.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 89.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 90.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 91.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 92.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 93.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 94.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 95.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 96.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 97.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 98.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 99.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 100.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 101.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 102.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 103.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 104.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 105.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 106.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 107.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 108.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 109.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 110.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 111.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 112.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 113.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 114.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 115.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 116.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 117.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 118.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 119.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 120.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 121.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 122.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 123.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 124.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 125.100.IN-ADDR.ARPA +01-May-2018 02:25:57.400 automatic empty zone: 126.100.IN-ADDR.ARPA +01-May-2018 02:25:57.401 automatic empty zone: 127.100.IN-ADDR.ARPA +01-May-2018 02:25:57.401 automatic empty zone: 0.IN-ADDR.ARPA +01-May-2018 02:25:57.401 automatic empty zone: 127.IN-ADDR.ARPA +01-May-2018 02:25:57.401 automatic empty zone: 254.169.IN-ADDR.ARPA +01-May-2018 02:25:57.401 automatic empty zone: 2.0.192.IN-ADDR.ARPA +01-May-2018 02:25:57.401 automatic empty zone: 100.51.198.IN-ADDR.ARPA +01-May-2018 02:25:57.401 automatic empty zone: 113.0.203.IN-ADDR.ARPA +01-May-2018 02:25:57.401 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +01-May-2018 02:25:57.401 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +01-May-2018 02:25:57.401 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +01-May-2018 02:25:57.401 automatic empty zone: D.F.IP6.ARPA +01-May-2018 02:25:57.401 automatic empty zone: 8.E.F.IP6.ARPA +01-May-2018 02:25:57.401 automatic empty zone: 9.E.F.IP6.ARPA +01-May-2018 02:25:57.401 automatic empty zone: A.E.F.IP6.ARPA +01-May-2018 02:25:57.401 automatic empty zone: B.E.F.IP6.ARPA +01-May-2018 02:25:57.401 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +01-May-2018 02:25:57.401 automatic empty zone: EMPTY.AS112.ARPA +01-May-2018 02:25:57.401 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +01-May-2018 02:25:57.404 configuring command channel from '/opt/local/etc/rndc.key' +01-May-2018 02:25:57.404 couldn't add command channel 127.0.0.1#953: file not found +01-May-2018 02:25:57.404 configuring command channel from '/opt/local/etc/rndc.key' +01-May-2018 02:25:57.404 couldn't add command channel ::1#953: file not found +01-May-2018 02:25:57.404 not using config file logging statement for logging due to -g option +01-May-2018 02:25:57.405 managed-keys-zone: loaded serial 0 +01-May-2018 02:25:57.434 zone local/IN: loaded serial 2 +01-May-2018 02:25:57.434 all zones loaded +01-May-2018 02:25:57.435 running +01-May-2018 02:26:01.423 shutting down +01-May-2018 02:26:01.423 no longer listening on 127.0.0.1#5400 +01-May-2018 02:26:01.517 exiting +=== Log Marked @ 2018-05-03 00:38:58 +1200 [66630] === +03-May-2018 00:38:58.830 starting BIND 9.12.0 +03-May-2018 00:38:58.830 running on Darwin x86_64 17.5.0 Darwin Kernel Version 17.5.0: Mon Mar 5 22:24:32 PST 2018; root:xnu-4570.51.1~1/RELEASE_X86_64 +03-May-2018 00:38:58.830 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +03-May-2018 00:38:58.830 running as: named -c named.conf -f -p 5400 -g +03-May-2018 00:38:58.830 ---------------------------------------------------- +03-May-2018 00:38:58.830 BIND 9 is maintained by Internet Systems Consortium, +03-May-2018 00:38:58.830 Inc. (ISC), a non-profit 501(c)(3) public-benefit +03-May-2018 00:38:58.830 corporation. Support and training for BIND 9 are +03-May-2018 00:38:58.830 available at https://www.isc.org/support +03-May-2018 00:38:58.830 ---------------------------------------------------- +03-May-2018 00:38:58.831 found 8 CPUs, using 8 worker threads +03-May-2018 00:38:58.831 using 7 UDP listeners per interface +03-May-2018 00:38:58.831 using up to 4096 sockets +03-May-2018 00:38:58.847 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +03-May-2018 00:38:58.847 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +03-May-2018 00:38:58.848 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +03-May-2018 00:38:58.849 using default UDP/IPv4 port range: [49152, 65535] +03-May-2018 00:38:58.849 using default UDP/IPv6 port range: [49152, 65535] +03-May-2018 00:38:58.849 listening on IPv4 interface lo0, 127.0.0.1#5400 +03-May-2018 00:38:58.854 generating session key for dynamic DNS +03-May-2018 00:38:58.858 could not open file '/opt/local/var/run/named/session.key': Permission denied +03-May-2018 00:38:58.858 could not create /opt/local/var/run/named/session.key +03-May-2018 00:38:58.858 failed to generate session key for dynamic DNS: permission denied +03-May-2018 00:38:58.858 sizing zone task pool based on 1 zones +03-May-2018 00:38:58.859 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +03-May-2018 00:38:58.863 set up managed keys zone for view _default, file 'managed-keys.bind' +03-May-2018 00:38:58.863 automatic empty zone: 10.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 16.172.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 17.172.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 18.172.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 19.172.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 20.172.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 21.172.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 22.172.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 23.172.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 24.172.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 25.172.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 26.172.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 27.172.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 28.172.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 29.172.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 30.172.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 31.172.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 168.192.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 64.100.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 65.100.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 66.100.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 67.100.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 68.100.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 69.100.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 70.100.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 71.100.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 72.100.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 73.100.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 74.100.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 75.100.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 76.100.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 77.100.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 78.100.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 79.100.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 80.100.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 81.100.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 82.100.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 83.100.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 84.100.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 85.100.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 86.100.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 87.100.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 88.100.IN-ADDR.ARPA +03-May-2018 00:38:58.863 automatic empty zone: 89.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 90.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 91.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 92.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 93.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 94.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 95.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 96.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 97.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 98.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 99.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 100.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 101.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 102.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 103.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 104.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 105.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 106.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 107.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 108.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 109.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 110.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 111.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 112.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 113.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 114.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 115.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 116.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 117.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 118.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 119.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 120.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 121.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 122.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 123.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 124.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 125.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 126.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 127.100.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 0.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 127.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 254.169.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 2.0.192.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 100.51.198.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 113.0.203.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +03-May-2018 00:38:58.864 automatic empty zone: D.F.IP6.ARPA +03-May-2018 00:38:58.864 automatic empty zone: 8.E.F.IP6.ARPA +03-May-2018 00:38:58.865 automatic empty zone: 9.E.F.IP6.ARPA +03-May-2018 00:38:58.865 automatic empty zone: A.E.F.IP6.ARPA +03-May-2018 00:38:58.865 automatic empty zone: B.E.F.IP6.ARPA +03-May-2018 00:38:58.865 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +03-May-2018 00:38:58.865 automatic empty zone: EMPTY.AS112.ARPA +03-May-2018 00:38:58.865 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +03-May-2018 00:38:58.868 configuring command channel from '/opt/local/etc/rndc.key' +03-May-2018 00:38:58.868 couldn't add command channel 127.0.0.1#953: file not found +03-May-2018 00:38:58.868 configuring command channel from '/opt/local/etc/rndc.key' +03-May-2018 00:38:58.868 couldn't add command channel ::1#953: file not found +03-May-2018 00:38:58.868 not using config file logging statement for logging due to -g option +03-May-2018 00:38:58.869 managed-keys-zone: loaded serial 0 +03-May-2018 00:38:58.898 zone local/IN: loaded serial 2 +03-May-2018 00:38:58.898 all zones loaded +03-May-2018 00:38:58.898 running +03-May-2018 00:39:04.099 shutting down +03-May-2018 00:39:04.104 no longer listening on 127.0.0.1#5400 +03-May-2018 00:39:04.199 exiting +=== Log Marked @ 2018-05-04 01:55:26 +1200 [82337] === +04-May-2018 01:55:26.890 starting BIND 9.12.0 +04-May-2018 01:55:26.890 running on Darwin x86_64 17.5.0 Darwin Kernel Version 17.5.0: Mon Mar 5 22:24:32 PST 2018; root:xnu-4570.51.1~1/RELEASE_X86_64 +04-May-2018 01:55:26.890 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +04-May-2018 01:55:26.890 running as: named -c named.conf -f -p 5400 -g +04-May-2018 01:55:26.890 ---------------------------------------------------- +04-May-2018 01:55:26.890 BIND 9 is maintained by Internet Systems Consortium, +04-May-2018 01:55:26.890 Inc. (ISC), a non-profit 501(c)(3) public-benefit +04-May-2018 01:55:26.890 corporation. Support and training for BIND 9 are +04-May-2018 01:55:26.890 available at https://www.isc.org/support +04-May-2018 01:55:26.890 ---------------------------------------------------- +04-May-2018 01:55:26.891 found 8 CPUs, using 8 worker threads +04-May-2018 01:55:26.891 using 7 UDP listeners per interface +04-May-2018 01:55:26.891 using up to 4096 sockets +04-May-2018 01:55:26.906 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +04-May-2018 01:55:26.906 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +04-May-2018 01:55:26.907 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +04-May-2018 01:55:26.908 using default UDP/IPv4 port range: [49152, 65535] +04-May-2018 01:55:26.908 using default UDP/IPv6 port range: [49152, 65535] +04-May-2018 01:55:26.909 listening on IPv4 interface lo0, 127.0.0.1#5400 +04-May-2018 01:55:26.913 generating session key for dynamic DNS +04-May-2018 01:55:26.916 could not open file '/opt/local/var/run/named/session.key': Permission denied +04-May-2018 01:55:26.916 could not create /opt/local/var/run/named/session.key +04-May-2018 01:55:26.916 failed to generate session key for dynamic DNS: permission denied +04-May-2018 01:55:26.917 sizing zone task pool based on 1 zones +04-May-2018 01:55:26.918 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +04-May-2018 01:55:26.921 set up managed keys zone for view _default, file 'managed-keys.bind' +04-May-2018 01:55:26.921 automatic empty zone: 10.IN-ADDR.ARPA +04-May-2018 01:55:26.921 automatic empty zone: 16.172.IN-ADDR.ARPA +04-May-2018 01:55:26.921 automatic empty zone: 17.172.IN-ADDR.ARPA +04-May-2018 01:55:26.921 automatic empty zone: 18.172.IN-ADDR.ARPA +04-May-2018 01:55:26.921 automatic empty zone: 19.172.IN-ADDR.ARPA +04-May-2018 01:55:26.921 automatic empty zone: 20.172.IN-ADDR.ARPA +04-May-2018 01:55:26.921 automatic empty zone: 21.172.IN-ADDR.ARPA +04-May-2018 01:55:26.921 automatic empty zone: 22.172.IN-ADDR.ARPA +04-May-2018 01:55:26.921 automatic empty zone: 23.172.IN-ADDR.ARPA +04-May-2018 01:55:26.921 automatic empty zone: 24.172.IN-ADDR.ARPA +04-May-2018 01:55:26.921 automatic empty zone: 25.172.IN-ADDR.ARPA +04-May-2018 01:55:26.921 automatic empty zone: 26.172.IN-ADDR.ARPA +04-May-2018 01:55:26.921 automatic empty zone: 27.172.IN-ADDR.ARPA +04-May-2018 01:55:26.921 automatic empty zone: 28.172.IN-ADDR.ARPA +04-May-2018 01:55:26.921 automatic empty zone: 29.172.IN-ADDR.ARPA +04-May-2018 01:55:26.921 automatic empty zone: 30.172.IN-ADDR.ARPA +04-May-2018 01:55:26.921 automatic empty zone: 31.172.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 168.192.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 64.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 65.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 66.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 67.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 68.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 69.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 70.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 71.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 72.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 73.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 74.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 75.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 76.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 77.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 78.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 79.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 80.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 81.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 82.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 83.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 84.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 85.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 86.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 87.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 88.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 89.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 90.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 91.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 92.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 93.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 94.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 95.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 96.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 97.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 98.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 99.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 100.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 101.100.IN-ADDR.ARPA +04-May-2018 01:55:26.922 automatic empty zone: 102.100.IN-ADDR.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 103.100.IN-ADDR.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 104.100.IN-ADDR.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 105.100.IN-ADDR.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 106.100.IN-ADDR.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 107.100.IN-ADDR.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 108.100.IN-ADDR.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 109.100.IN-ADDR.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 110.100.IN-ADDR.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 111.100.IN-ADDR.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 112.100.IN-ADDR.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 113.100.IN-ADDR.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 114.100.IN-ADDR.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 115.100.IN-ADDR.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 116.100.IN-ADDR.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 117.100.IN-ADDR.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 118.100.IN-ADDR.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 119.100.IN-ADDR.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 120.100.IN-ADDR.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 121.100.IN-ADDR.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 122.100.IN-ADDR.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 123.100.IN-ADDR.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 124.100.IN-ADDR.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 125.100.IN-ADDR.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 126.100.IN-ADDR.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 127.100.IN-ADDR.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 0.IN-ADDR.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 127.IN-ADDR.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 254.169.IN-ADDR.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 2.0.192.IN-ADDR.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 100.51.198.IN-ADDR.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 113.0.203.IN-ADDR.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +04-May-2018 01:55:26.923 automatic empty zone: D.F.IP6.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 8.E.F.IP6.ARPA +04-May-2018 01:55:26.923 automatic empty zone: 9.E.F.IP6.ARPA +04-May-2018 01:55:26.923 automatic empty zone: A.E.F.IP6.ARPA +04-May-2018 01:55:26.923 automatic empty zone: B.E.F.IP6.ARPA +04-May-2018 01:55:26.924 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +04-May-2018 01:55:26.924 automatic empty zone: EMPTY.AS112.ARPA +04-May-2018 01:55:26.924 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +04-May-2018 01:55:26.926 configuring command channel from '/opt/local/etc/rndc.key' +04-May-2018 01:55:26.926 couldn't add command channel 127.0.0.1#953: file not found +04-May-2018 01:55:26.927 configuring command channel from '/opt/local/etc/rndc.key' +04-May-2018 01:55:26.927 couldn't add command channel ::1#953: file not found +04-May-2018 01:55:26.927 not using config file logging statement for logging due to -g option +04-May-2018 01:55:26.928 managed-keys-zone: loaded serial 0 +04-May-2018 01:55:26.959 zone local/IN: loaded serial 2 +04-May-2018 01:55:26.959 all zones loaded +04-May-2018 01:55:26.959 running +04-May-2018 01:55:31.021 shutting down +04-May-2018 01:55:31.021 no longer listening on 127.0.0.1#5400 +04-May-2018 01:55:31.125 exiting +=== Log Marked @ 2018-05-18 00:06:43 +1200 [30425] === +18-May-2018 00:06:43.390 starting BIND 9.12.0 +18-May-2018 00:06:43.390 running on Darwin x86_64 17.5.0 Darwin Kernel Version 17.5.0: Fri Apr 13 19:32:32 PDT 2018; root:xnu-4570.51.2~1/RELEASE_X86_64 +18-May-2018 00:06:43.390 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +18-May-2018 00:06:43.390 running as: named -c named.conf -f -p 5400 -g +18-May-2018 00:06:43.391 ---------------------------------------------------- +18-May-2018 00:06:43.391 BIND 9 is maintained by Internet Systems Consortium, +18-May-2018 00:06:43.391 Inc. (ISC), a non-profit 501(c)(3) public-benefit +18-May-2018 00:06:43.391 corporation. Support and training for BIND 9 are +18-May-2018 00:06:43.391 available at https://www.isc.org/support +18-May-2018 00:06:43.391 ---------------------------------------------------- +18-May-2018 00:06:43.391 found 8 CPUs, using 8 worker threads +18-May-2018 00:06:43.391 using 7 UDP listeners per interface +18-May-2018 00:06:43.392 using up to 4096 sockets +18-May-2018 00:06:43.410 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +18-May-2018 00:06:43.410 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +18-May-2018 00:06:43.411 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +18-May-2018 00:06:43.412 using default UDP/IPv4 port range: [49152, 65535] +18-May-2018 00:06:43.412 using default UDP/IPv6 port range: [49152, 65535] +18-May-2018 00:06:43.412 listening on IPv4 interface lo0, 127.0.0.1#5400 +18-May-2018 00:06:43.416 generating session key for dynamic DNS +18-May-2018 00:06:43.419 could not open file '/opt/local/var/run/named/session.key': Permission denied +18-May-2018 00:06:43.419 could not create /opt/local/var/run/named/session.key +18-May-2018 00:06:43.419 failed to generate session key for dynamic DNS: permission denied +18-May-2018 00:06:43.420 sizing zone task pool based on 1 zones +18-May-2018 00:06:43.421 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +18-May-2018 00:06:43.425 set up managed keys zone for view _default, file 'managed-keys.bind' +18-May-2018 00:06:43.425 automatic empty zone: 10.IN-ADDR.ARPA +18-May-2018 00:06:43.425 automatic empty zone: 16.172.IN-ADDR.ARPA +18-May-2018 00:06:43.425 automatic empty zone: 17.172.IN-ADDR.ARPA +18-May-2018 00:06:43.425 automatic empty zone: 18.172.IN-ADDR.ARPA +18-May-2018 00:06:43.425 automatic empty zone: 19.172.IN-ADDR.ARPA +18-May-2018 00:06:43.425 automatic empty zone: 20.172.IN-ADDR.ARPA +18-May-2018 00:06:43.425 automatic empty zone: 21.172.IN-ADDR.ARPA +18-May-2018 00:06:43.425 automatic empty zone: 22.172.IN-ADDR.ARPA +18-May-2018 00:06:43.425 automatic empty zone: 23.172.IN-ADDR.ARPA +18-May-2018 00:06:43.425 automatic empty zone: 24.172.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 25.172.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 26.172.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 27.172.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 28.172.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 29.172.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 30.172.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 31.172.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 168.192.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 64.100.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 65.100.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 66.100.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 67.100.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 68.100.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 69.100.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 70.100.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 71.100.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 72.100.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 73.100.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 74.100.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 75.100.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 76.100.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 77.100.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 78.100.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 79.100.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 80.100.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 81.100.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 82.100.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 83.100.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 84.100.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 85.100.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 86.100.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 87.100.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 88.100.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 89.100.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 90.100.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 91.100.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 92.100.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 93.100.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 94.100.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 95.100.IN-ADDR.ARPA +18-May-2018 00:06:43.426 automatic empty zone: 96.100.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 97.100.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 98.100.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 99.100.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 100.100.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 101.100.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 102.100.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 103.100.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 104.100.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 105.100.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 106.100.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 107.100.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 108.100.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 109.100.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 110.100.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 111.100.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 112.100.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 113.100.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 114.100.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 115.100.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 116.100.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 117.100.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 118.100.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 119.100.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 120.100.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 121.100.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 122.100.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 123.100.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 124.100.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 125.100.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 126.100.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 127.100.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 0.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 127.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 254.169.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 2.0.192.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 100.51.198.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 113.0.203.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +18-May-2018 00:06:43.427 automatic empty zone: D.F.IP6.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 8.E.F.IP6.ARPA +18-May-2018 00:06:43.427 automatic empty zone: 9.E.F.IP6.ARPA +18-May-2018 00:06:43.427 automatic empty zone: A.E.F.IP6.ARPA +18-May-2018 00:06:43.428 automatic empty zone: B.E.F.IP6.ARPA +18-May-2018 00:06:43.428 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +18-May-2018 00:06:43.428 automatic empty zone: EMPTY.AS112.ARPA +18-May-2018 00:06:43.428 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +18-May-2018 00:06:43.431 configuring command channel from '/opt/local/etc/rndc.key' +18-May-2018 00:06:43.431 couldn't add command channel 127.0.0.1#953: file not found +18-May-2018 00:06:43.431 configuring command channel from '/opt/local/etc/rndc.key' +18-May-2018 00:06:43.431 couldn't add command channel ::1#953: file not found +18-May-2018 00:06:43.431 not using config file logging statement for logging due to -g option +18-May-2018 00:06:43.432 managed-keys-zone: loaded serial 0 +18-May-2018 00:06:43.467 zone local/IN: loaded serial 2 +18-May-2018 00:06:43.467 all zones loaded +18-May-2018 00:06:43.468 running +18-May-2018 00:06:47.903 shutting down +18-May-2018 00:06:47.903 no longer listening on 127.0.0.1#5400 +18-May-2018 00:06:48.029 exiting +=== Log Marked @ 2018-06-17 12:35:23 +1200 [49846] === +17-Jun-2018 12:35:23.220 starting BIND 9.12.0 +17-Jun-2018 12:35:23.220 running on Darwin x86_64 17.6.0 Darwin Kernel Version 17.6.0: Tue May 8 15:22:16 PDT 2018; root:xnu-4570.61.1~1/RELEASE_X86_64 +17-Jun-2018 12:35:23.220 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -arch x86_64' 'CPPFLAGS=-I/opt/local/include' +17-Jun-2018 12:35:23.220 running as: named -c named.conf -f -p 5400 -g +17-Jun-2018 12:35:23.220 ---------------------------------------------------- +17-Jun-2018 12:35:23.220 BIND 9 is maintained by Internet Systems Consortium, +17-Jun-2018 12:35:23.220 Inc. (ISC), a non-profit 501(c)(3) public-benefit +17-Jun-2018 12:35:23.220 corporation. Support and training for BIND 9 are +17-Jun-2018 12:35:23.220 available at https://www.isc.org/support +17-Jun-2018 12:35:23.220 ---------------------------------------------------- +17-Jun-2018 12:35:23.221 found 8 CPUs, using 8 worker threads +17-Jun-2018 12:35:23.221 using 7 UDP listeners per interface +17-Jun-2018 12:35:23.222 using up to 4096 sockets +17-Jun-2018 12:35:23.241 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +17-Jun-2018 12:35:23.241 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +17-Jun-2018 12:35:23.242 reading built-in trusted keys from file '/opt/local/etc/bind.keys' +17-Jun-2018 12:35:23.243 using default UDP/IPv4 port range: [49152, 65535] +17-Jun-2018 12:35:23.243 using default UDP/IPv6 port range: [49152, 65535] +17-Jun-2018 12:35:23.244 listening on IPv4 interface lo0, 127.0.0.1#5400 +17-Jun-2018 12:35:23.247 generating session key for dynamic DNS +17-Jun-2018 12:35:23.249 could not open file '/opt/local/var/run/named/session.key': Permission denied +17-Jun-2018 12:35:23.249 could not create /opt/local/var/run/named/session.key +17-Jun-2018 12:35:23.249 failed to generate session key for dynamic DNS: permission denied +17-Jun-2018 12:35:23.250 sizing zone task pool based on 1 zones +17-Jun-2018 12:35:23.251 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +17-Jun-2018 12:35:23.255 set up managed keys zone for view _default, file 'managed-keys.bind' +17-Jun-2018 12:35:23.255 automatic empty zone: 10.IN-ADDR.ARPA +17-Jun-2018 12:35:23.255 automatic empty zone: 16.172.IN-ADDR.ARPA +17-Jun-2018 12:35:23.255 automatic empty zone: 17.172.IN-ADDR.ARPA +17-Jun-2018 12:35:23.255 automatic empty zone: 18.172.IN-ADDR.ARPA +17-Jun-2018 12:35:23.255 automatic empty zone: 19.172.IN-ADDR.ARPA +17-Jun-2018 12:35:23.255 automatic empty zone: 20.172.IN-ADDR.ARPA +17-Jun-2018 12:35:23.255 automatic empty zone: 21.172.IN-ADDR.ARPA +17-Jun-2018 12:35:23.255 automatic empty zone: 22.172.IN-ADDR.ARPA +17-Jun-2018 12:35:23.255 automatic empty zone: 23.172.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 24.172.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 25.172.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 26.172.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 27.172.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 28.172.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 29.172.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 30.172.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 31.172.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 168.192.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 64.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 65.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 66.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 67.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 68.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 69.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 70.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 71.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 72.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 73.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 74.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 75.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 76.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 77.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 78.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 79.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 80.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 81.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 82.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 83.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 84.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 85.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 86.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 87.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 88.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 89.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 90.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 91.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 92.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 93.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 94.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 95.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 96.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 97.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 98.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.256 automatic empty zone: 99.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 100.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 101.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 102.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 103.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 104.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 105.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 106.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 107.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 108.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 109.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 110.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 111.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 112.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 113.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 114.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 115.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 116.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 117.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 118.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 119.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 120.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 121.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 122.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 123.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 124.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 125.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 126.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 127.100.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 0.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 127.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 254.169.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 2.0.192.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 100.51.198.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 113.0.203.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: D.F.IP6.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 8.E.F.IP6.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 9.E.F.IP6.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: A.E.F.IP6.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: B.E.F.IP6.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +17-Jun-2018 12:35:23.257 automatic empty zone: EMPTY.AS112.ARPA +17-Jun-2018 12:35:23.258 none:101: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +17-Jun-2018 12:35:23.261 configuring command channel from '/opt/local/etc/rndc.key' +17-Jun-2018 12:35:23.261 couldn't add command channel 127.0.0.1#953: file not found +17-Jun-2018 12:35:23.261 configuring command channel from '/opt/local/etc/rndc.key' +17-Jun-2018 12:35:23.261 couldn't add command channel ::1#953: file not found +17-Jun-2018 12:35:23.261 not using config file logging statement for logging due to -g option +17-Jun-2018 12:35:23.261 managed-keys-zone: loaded serial 0 +17-Jun-2018 12:35:23.290 zone local/IN: loaded serial 2 +17-Jun-2018 12:35:23.290 all zones loaded +17-Jun-2018 12:35:23.290 running +17-Jun-2018 12:35:27.764 shutting down +17-Jun-2018 12:35:27.765 no longer listening on 127.0.0.1#5400 +17-Jun-2018 12:35:27.862 exiting +=== Log Marked @ 2019-01-13 13:14:03 +1300 [30001] === +13-Jan-2019 13:14:03.734 starting BIND 9.12.3-P1 +13-Jan-2019 13:14:03.734 running on Darwin x86_64 18.2.0 Darwin Kernel Version 18.2.0: Mon Nov 12 20:24:46 PST 2018; root:xnu-4903.231.4~2/RELEASE_X86_64 +13-Jan-2019 13:14:03.734 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'CPPFLAGS=-I/opt/local/include -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk' +13-Jan-2019 13:14:03.734 running as: named -c named.conf -f -p 5400 -g +13-Jan-2019 13:14:03.734 compiled by CLANG 4.2.1 Compatible Apple LLVM 10.0.0 (clang-1000.11.45.5) +13-Jan-2019 13:14:03.734 compiled with OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +13-Jan-2019 13:14:03.734 linked to OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +13-Jan-2019 13:14:03.735 compiled with libxml2 version: 2.9.7 +13-Jan-2019 13:14:03.735 linked to libxml2 version: 20907 +13-Jan-2019 13:14:03.735 compiled with zlib version: 1.2.11 +13-Jan-2019 13:14:03.735 linked to zlib version: 1.2.11 +13-Jan-2019 13:14:03.735 threads support is enabled +13-Jan-2019 13:14:03.735 ---------------------------------------------------- +13-Jan-2019 13:14:03.735 BIND 9 is maintained by Internet Systems Consortium, +13-Jan-2019 13:14:03.735 Inc. (ISC), a non-profit 501(c)(3) public-benefit +13-Jan-2019 13:14:03.735 corporation. Support and training for BIND 9 are +13-Jan-2019 13:14:03.735 available at https://www.isc.org/support +13-Jan-2019 13:14:03.735 ---------------------------------------------------- +13-Jan-2019 13:14:03.735 found 8 CPUs, using 8 worker threads +13-Jan-2019 13:14:03.735 using 7 UDP listeners per interface +13-Jan-2019 13:14:03.735 using up to 4096 sockets +13-Jan-2019 13:14:03.739 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +13-Jan-2019 13:14:03.740 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +13-Jan-2019 13:14:03.740 reading built-in trust anchors from file '/opt/local/etc/bind.keys' +13-Jan-2019 13:14:03.740 using default UDP/IPv4 port range: [49152, 65535] +13-Jan-2019 13:14:03.740 using default UDP/IPv6 port range: [49152, 65535] +13-Jan-2019 13:14:03.741 listening on IPv4 interface lo0, 127.0.0.1#5400 +13-Jan-2019 13:14:03.743 generating session key for dynamic DNS +13-Jan-2019 13:14:03.743 could not open file '/opt/local/var/run/named/session.key': Permission denied +13-Jan-2019 13:14:03.743 could not create /opt/local/var/run/named/session.key +13-Jan-2019 13:14:03.743 failed to generate session key for dynamic DNS: permission denied +13-Jan-2019 13:14:03.743 sizing zone task pool based on 1 zones +13-Jan-2019 13:14:03.743 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +13-Jan-2019 13:14:03.746 set up managed keys zone for view _default, file 'managed-keys.bind' +13-Jan-2019 13:14:03.746 automatic empty zone: 10.IN-ADDR.ARPA +13-Jan-2019 13:14:03.746 automatic empty zone: 16.172.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 17.172.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 18.172.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 19.172.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 20.172.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 21.172.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 22.172.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 23.172.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 24.172.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 25.172.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 26.172.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 27.172.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 28.172.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 29.172.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 30.172.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 31.172.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 168.192.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 64.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 65.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 66.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 67.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 68.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 69.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 70.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 71.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 72.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 73.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 74.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 75.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 76.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 77.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 78.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 79.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 80.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 81.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 82.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 83.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 84.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 85.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 86.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 87.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 88.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 89.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.747 automatic empty zone: 90.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 91.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 92.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 93.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 94.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 95.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 96.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 97.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 98.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 99.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 100.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 101.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 102.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 103.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 104.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 105.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 106.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 107.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 108.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 109.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 110.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 111.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 112.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 113.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 114.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 115.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 116.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 117.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 118.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 119.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 120.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 121.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 122.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 123.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 124.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 125.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 126.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 127.100.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 0.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 127.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 254.169.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 2.0.192.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 100.51.198.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 113.0.203.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: D.F.IP6.ARPA +13-Jan-2019 13:14:03.748 automatic empty zone: 8.E.F.IP6.ARPA +13-Jan-2019 13:14:03.749 automatic empty zone: 9.E.F.IP6.ARPA +13-Jan-2019 13:14:03.749 automatic empty zone: A.E.F.IP6.ARPA +13-Jan-2019 13:14:03.749 automatic empty zone: B.E.F.IP6.ARPA +13-Jan-2019 13:14:03.749 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +13-Jan-2019 13:14:03.749 automatic empty zone: EMPTY.AS112.ARPA +13-Jan-2019 13:14:03.749 automatic empty zone: HOME.ARPA +13-Jan-2019 13:14:03.749 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +13-Jan-2019 13:14:03.751 configuring command channel from '/opt/local/etc/rndc.key' +13-Jan-2019 13:14:03.751 couldn't add command channel 127.0.0.1#953: file not found +13-Jan-2019 13:14:03.751 configuring command channel from '/opt/local/etc/rndc.key' +13-Jan-2019 13:14:03.751 couldn't add command channel ::1#953: file not found +13-Jan-2019 13:14:03.751 not using config file logging statement for logging due to -g option +13-Jan-2019 13:14:03.752 managed-keys-zone: loaded serial 0 +13-Jan-2019 13:14:03.779 zone local/IN: loaded serial 2 +13-Jan-2019 13:14:03.779 all zones loaded +13-Jan-2019 13:14:03.780 running +13-Jan-2019 13:14:13.976 shutting down +13-Jan-2019 13:14:13.977 no longer listening on 127.0.0.1#5400 +13-Jan-2019 13:14:13.996 exiting +=== Log Marked @ 2019-01-13 13:23:28 +1300 [30275] === +13-Jan-2019 13:23:28.336 starting BIND 9.12.3-P1 +13-Jan-2019 13:23:28.336 running on Darwin x86_64 18.2.0 Darwin Kernel Version 18.2.0: Mon Nov 12 20:24:46 PST 2018; root:xnu-4903.231.4~2/RELEASE_X86_64 +13-Jan-2019 13:23:28.336 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'CPPFLAGS=-I/opt/local/include -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk' +13-Jan-2019 13:23:28.336 running as: named -c named.conf -f -p 5400 -g +13-Jan-2019 13:23:28.336 compiled by CLANG 4.2.1 Compatible Apple LLVM 10.0.0 (clang-1000.11.45.5) +13-Jan-2019 13:23:28.336 compiled with OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +13-Jan-2019 13:23:28.336 linked to OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +13-Jan-2019 13:23:28.336 compiled with libxml2 version: 2.9.7 +13-Jan-2019 13:23:28.336 linked to libxml2 version: 20907 +13-Jan-2019 13:23:28.336 compiled with zlib version: 1.2.11 +13-Jan-2019 13:23:28.336 linked to zlib version: 1.2.11 +13-Jan-2019 13:23:28.336 threads support is enabled +13-Jan-2019 13:23:28.336 ---------------------------------------------------- +13-Jan-2019 13:23:28.336 BIND 9 is maintained by Internet Systems Consortium, +13-Jan-2019 13:23:28.337 Inc. (ISC), a non-profit 501(c)(3) public-benefit +13-Jan-2019 13:23:28.337 corporation. Support and training for BIND 9 are +13-Jan-2019 13:23:28.337 available at https://www.isc.org/support +13-Jan-2019 13:23:28.337 ---------------------------------------------------- +13-Jan-2019 13:23:28.337 found 8 CPUs, using 8 worker threads +13-Jan-2019 13:23:28.337 using 7 UDP listeners per interface +13-Jan-2019 13:23:28.337 using up to 4096 sockets +13-Jan-2019 13:23:28.342 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +13-Jan-2019 13:23:28.342 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +13-Jan-2019 13:23:28.342 reading built-in trust anchors from file '/opt/local/etc/bind.keys' +13-Jan-2019 13:23:28.342 using default UDP/IPv4 port range: [49152, 65535] +13-Jan-2019 13:23:28.342 using default UDP/IPv6 port range: [49152, 65535] +13-Jan-2019 13:23:28.343 listening on IPv4 interface lo0, 127.0.0.1#5400 +13-Jan-2019 13:23:28.345 generating session key for dynamic DNS +13-Jan-2019 13:23:28.345 could not open file '/opt/local/var/run/named/session.key': Permission denied +13-Jan-2019 13:23:28.345 could not create /opt/local/var/run/named/session.key +13-Jan-2019 13:23:28.345 failed to generate session key for dynamic DNS: permission denied +13-Jan-2019 13:23:28.345 sizing zone task pool based on 1 zones +13-Jan-2019 13:23:28.345 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +13-Jan-2019 13:23:28.348 set up managed keys zone for view _default, file 'managed-keys.bind' +13-Jan-2019 13:23:28.348 automatic empty zone: 10.IN-ADDR.ARPA +13-Jan-2019 13:23:28.348 automatic empty zone: 16.172.IN-ADDR.ARPA +13-Jan-2019 13:23:28.348 automatic empty zone: 17.172.IN-ADDR.ARPA +13-Jan-2019 13:23:28.348 automatic empty zone: 18.172.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 19.172.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 20.172.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 21.172.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 22.172.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 23.172.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 24.172.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 25.172.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 26.172.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 27.172.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 28.172.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 29.172.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 30.172.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 31.172.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 168.192.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 64.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 65.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 66.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 67.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 68.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 69.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 70.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 71.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 72.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 73.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 74.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 75.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 76.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 77.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 78.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 79.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 80.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 81.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 82.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 83.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 84.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 85.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 86.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 87.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 88.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 89.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 90.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 91.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 92.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 93.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 94.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 95.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 96.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 97.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.349 automatic empty zone: 98.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 99.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 100.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 101.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 102.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 103.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 104.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 105.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 106.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 107.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 108.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 109.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 110.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 111.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 112.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 113.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 114.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 115.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 116.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 117.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 118.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 119.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 120.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 121.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 122.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 123.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 124.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 125.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 126.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 127.100.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 0.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 127.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 254.169.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 2.0.192.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 100.51.198.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 113.0.203.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: D.F.IP6.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 8.E.F.IP6.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 9.E.F.IP6.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: A.E.F.IP6.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: B.E.F.IP6.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: EMPTY.AS112.ARPA +13-Jan-2019 13:23:28.350 automatic empty zone: HOME.ARPA +13-Jan-2019 13:23:28.351 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +13-Jan-2019 13:23:28.353 configuring command channel from '/opt/local/etc/rndc.key' +13-Jan-2019 13:23:28.353 couldn't add command channel 127.0.0.1#953: file not found +13-Jan-2019 13:23:28.353 configuring command channel from '/opt/local/etc/rndc.key' +13-Jan-2019 13:23:28.353 couldn't add command channel ::1#953: file not found +13-Jan-2019 13:23:28.353 not using config file logging statement for logging due to -g option +13-Jan-2019 13:23:28.354 managed-keys-zone: loaded serial 0 +13-Jan-2019 13:23:28.379 zone local/IN: loaded serial 2 +13-Jan-2019 13:23:28.379 all zones loaded +13-Jan-2019 13:23:28.379 running +13-Jan-2019 13:23:38.582 shutting down +13-Jan-2019 13:23:38.583 no longer listening on 127.0.0.1#5400 +13-Jan-2019 13:23:38.596 exiting +=== Log Marked @ 2019-01-13 13:24:33 +1300 [30310] === +13-Jan-2019 13:24:33.411 starting BIND 9.12.3-P1 +13-Jan-2019 13:24:33.411 running on Darwin x86_64 18.2.0 Darwin Kernel Version 18.2.0: Mon Nov 12 20:24:46 PST 2018; root:xnu-4903.231.4~2/RELEASE_X86_64 +13-Jan-2019 13:24:33.411 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'CPPFLAGS=-I/opt/local/include -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk' +13-Jan-2019 13:24:33.411 running as: named -c named.conf -f -p 5400 -g +13-Jan-2019 13:24:33.411 compiled by CLANG 4.2.1 Compatible Apple LLVM 10.0.0 (clang-1000.11.45.5) +13-Jan-2019 13:24:33.411 compiled with OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +13-Jan-2019 13:24:33.411 linked to OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +13-Jan-2019 13:24:33.411 compiled with libxml2 version: 2.9.7 +13-Jan-2019 13:24:33.412 linked to libxml2 version: 20907 +13-Jan-2019 13:24:33.412 compiled with zlib version: 1.2.11 +13-Jan-2019 13:24:33.412 linked to zlib version: 1.2.11 +13-Jan-2019 13:24:33.412 threads support is enabled +13-Jan-2019 13:24:33.412 ---------------------------------------------------- +13-Jan-2019 13:24:33.412 BIND 9 is maintained by Internet Systems Consortium, +13-Jan-2019 13:24:33.412 Inc. (ISC), a non-profit 501(c)(3) public-benefit +13-Jan-2019 13:24:33.412 corporation. Support and training for BIND 9 are +13-Jan-2019 13:24:33.412 available at https://www.isc.org/support +13-Jan-2019 13:24:33.412 ---------------------------------------------------- +13-Jan-2019 13:24:33.412 found 8 CPUs, using 8 worker threads +13-Jan-2019 13:24:33.412 using 7 UDP listeners per interface +13-Jan-2019 13:24:33.412 using up to 4096 sockets +13-Jan-2019 13:24:33.416 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +13-Jan-2019 13:24:33.416 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +13-Jan-2019 13:24:33.417 reading built-in trust anchors from file '/opt/local/etc/bind.keys' +13-Jan-2019 13:24:33.417 using default UDP/IPv4 port range: [49152, 65535] +13-Jan-2019 13:24:33.417 using default UDP/IPv6 port range: [49152, 65535] +13-Jan-2019 13:24:33.417 listening on IPv4 interface lo0, 127.0.0.1#5400 +13-Jan-2019 13:24:33.420 generating session key for dynamic DNS +13-Jan-2019 13:24:33.421 could not open file '/opt/local/var/run/named/session.key': Permission denied +13-Jan-2019 13:24:33.421 could not create /opt/local/var/run/named/session.key +13-Jan-2019 13:24:33.421 failed to generate session key for dynamic DNS: permission denied +13-Jan-2019 13:24:33.421 sizing zone task pool based on 1 zones +13-Jan-2019 13:24:33.421 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +13-Jan-2019 13:24:33.424 set up managed keys zone for view _default, file 'managed-keys.bind' +13-Jan-2019 13:24:33.424 automatic empty zone: 10.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 16.172.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 17.172.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 18.172.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 19.172.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 20.172.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 21.172.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 22.172.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 23.172.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 24.172.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 25.172.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 26.172.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 27.172.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 28.172.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 29.172.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 30.172.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 31.172.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 168.192.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 64.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 65.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 66.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 67.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 68.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 69.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 70.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 71.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 72.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 73.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 74.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 75.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 76.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 77.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 78.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 79.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 80.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 81.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 82.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 83.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 84.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 85.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.424 automatic empty zone: 86.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 87.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 88.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 89.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 90.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 91.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 92.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 93.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 94.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 95.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 96.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 97.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 98.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 99.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 100.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 101.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 102.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 103.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 104.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 105.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 106.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 107.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 108.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 109.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 110.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 111.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 112.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 113.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 114.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 115.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 116.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 117.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 118.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 119.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 120.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 121.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 122.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 123.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 124.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 125.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 126.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 127.100.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 0.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 127.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 254.169.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 2.0.192.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 100.51.198.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 113.0.203.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +13-Jan-2019 13:24:33.425 automatic empty zone: D.F.IP6.ARPA +13-Jan-2019 13:24:33.426 automatic empty zone: 8.E.F.IP6.ARPA +13-Jan-2019 13:24:33.426 automatic empty zone: 9.E.F.IP6.ARPA +13-Jan-2019 13:24:33.426 automatic empty zone: A.E.F.IP6.ARPA +13-Jan-2019 13:24:33.426 automatic empty zone: B.E.F.IP6.ARPA +13-Jan-2019 13:24:33.426 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +13-Jan-2019 13:24:33.426 automatic empty zone: EMPTY.AS112.ARPA +13-Jan-2019 13:24:33.426 automatic empty zone: HOME.ARPA +13-Jan-2019 13:24:33.426 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +13-Jan-2019 13:24:33.429 configuring command channel from '/opt/local/etc/rndc.key' +13-Jan-2019 13:24:33.429 couldn't add command channel 127.0.0.1#953: file not found +13-Jan-2019 13:24:33.429 configuring command channel from '/opt/local/etc/rndc.key' +13-Jan-2019 13:24:33.429 couldn't add command channel ::1#953: file not found +13-Jan-2019 13:24:33.429 not using config file logging statement for logging due to -g option +13-Jan-2019 13:24:33.429 managed-keys-zone: loaded serial 0 +13-Jan-2019 13:24:33.457 zone local/IN: loaded serial 2 +13-Jan-2019 13:24:33.457 all zones loaded +13-Jan-2019 13:24:33.458 running +13-Jan-2019 13:24:37.991 shutting down +13-Jan-2019 13:24:37.991 no longer listening on 127.0.0.1#5400 +13-Jan-2019 13:24:38.004 exiting +=== Log Marked @ 2019-01-13 13:29:06 +1300 [30619] === +13-Jan-2019 13:29:06.499 starting BIND 9.12.3-P1 +13-Jan-2019 13:29:06.499 running on Darwin x86_64 18.2.0 Darwin Kernel Version 18.2.0: Mon Nov 12 20:24:46 PST 2018; root:xnu-4903.231.4~2/RELEASE_X86_64 +13-Jan-2019 13:29:06.499 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'CPPFLAGS=-I/opt/local/include -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk' +13-Jan-2019 13:29:06.499 running as: named -c named.conf -f -p 5400 -g +13-Jan-2019 13:29:06.499 compiled by CLANG 4.2.1 Compatible Apple LLVM 10.0.0 (clang-1000.11.45.5) +13-Jan-2019 13:29:06.499 compiled with OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +13-Jan-2019 13:29:06.499 linked to OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +13-Jan-2019 13:29:06.499 compiled with libxml2 version: 2.9.7 +13-Jan-2019 13:29:06.499 linked to libxml2 version: 20907 +13-Jan-2019 13:29:06.499 compiled with zlib version: 1.2.11 +13-Jan-2019 13:29:06.499 linked to zlib version: 1.2.11 +13-Jan-2019 13:29:06.499 threads support is enabled +13-Jan-2019 13:29:06.499 ---------------------------------------------------- +13-Jan-2019 13:29:06.499 BIND 9 is maintained by Internet Systems Consortium, +13-Jan-2019 13:29:06.499 Inc. (ISC), a non-profit 501(c)(3) public-benefit +13-Jan-2019 13:29:06.499 corporation. Support and training for BIND 9 are +13-Jan-2019 13:29:06.499 available at https://www.isc.org/support +13-Jan-2019 13:29:06.499 ---------------------------------------------------- +13-Jan-2019 13:29:06.499 found 8 CPUs, using 8 worker threads +13-Jan-2019 13:29:06.499 using 7 UDP listeners per interface +13-Jan-2019 13:29:06.499 using up to 4096 sockets +13-Jan-2019 13:29:06.504 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +13-Jan-2019 13:29:06.504 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +13-Jan-2019 13:29:06.504 reading built-in trust anchors from file '/opt/local/etc/bind.keys' +13-Jan-2019 13:29:06.504 using default UDP/IPv4 port range: [49152, 65535] +13-Jan-2019 13:29:06.504 using default UDP/IPv6 port range: [49152, 65535] +13-Jan-2019 13:29:06.505 listening on IPv4 interface lo0, 127.0.0.1#5400 +13-Jan-2019 13:29:06.507 generating session key for dynamic DNS +13-Jan-2019 13:29:06.508 could not open file '/opt/local/var/run/named/session.key': Permission denied +13-Jan-2019 13:29:06.508 could not create /opt/local/var/run/named/session.key +13-Jan-2019 13:29:06.508 failed to generate session key for dynamic DNS: permission denied +13-Jan-2019 13:29:06.508 sizing zone task pool based on 1 zones +13-Jan-2019 13:29:06.508 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +13-Jan-2019 13:29:06.511 set up managed keys zone for view _default, file 'managed-keys.bind' +13-Jan-2019 13:29:06.511 automatic empty zone: 10.IN-ADDR.ARPA +13-Jan-2019 13:29:06.511 automatic empty zone: 16.172.IN-ADDR.ARPA +13-Jan-2019 13:29:06.511 automatic empty zone: 17.172.IN-ADDR.ARPA +13-Jan-2019 13:29:06.511 automatic empty zone: 18.172.IN-ADDR.ARPA +13-Jan-2019 13:29:06.511 automatic empty zone: 19.172.IN-ADDR.ARPA +13-Jan-2019 13:29:06.511 automatic empty zone: 20.172.IN-ADDR.ARPA +13-Jan-2019 13:29:06.511 automatic empty zone: 21.172.IN-ADDR.ARPA +13-Jan-2019 13:29:06.511 automatic empty zone: 22.172.IN-ADDR.ARPA +13-Jan-2019 13:29:06.511 automatic empty zone: 23.172.IN-ADDR.ARPA +13-Jan-2019 13:29:06.511 automatic empty zone: 24.172.IN-ADDR.ARPA +13-Jan-2019 13:29:06.511 automatic empty zone: 25.172.IN-ADDR.ARPA +13-Jan-2019 13:29:06.511 automatic empty zone: 26.172.IN-ADDR.ARPA +13-Jan-2019 13:29:06.511 automatic empty zone: 27.172.IN-ADDR.ARPA +13-Jan-2019 13:29:06.511 automatic empty zone: 28.172.IN-ADDR.ARPA +13-Jan-2019 13:29:06.511 automatic empty zone: 29.172.IN-ADDR.ARPA +13-Jan-2019 13:29:06.511 automatic empty zone: 30.172.IN-ADDR.ARPA +13-Jan-2019 13:29:06.511 automatic empty zone: 31.172.IN-ADDR.ARPA +13-Jan-2019 13:29:06.511 automatic empty zone: 168.192.IN-ADDR.ARPA +13-Jan-2019 13:29:06.511 automatic empty zone: 64.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 65.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 66.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 67.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 68.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 69.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 70.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 71.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 72.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 73.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 74.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 75.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 76.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 77.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 78.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 79.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 80.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 81.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 82.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 83.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 84.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 85.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 86.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 87.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 88.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 89.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 90.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 91.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 92.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 93.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 94.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 95.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 96.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 97.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 98.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 99.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 100.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 101.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 102.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 103.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 104.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 105.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 106.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 107.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 108.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 109.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 110.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 111.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 112.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 113.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.512 automatic empty zone: 114.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.513 automatic empty zone: 115.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.513 automatic empty zone: 116.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.513 automatic empty zone: 117.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.513 automatic empty zone: 118.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.513 automatic empty zone: 119.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.513 automatic empty zone: 120.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.513 automatic empty zone: 121.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.513 automatic empty zone: 122.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.513 automatic empty zone: 123.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.513 automatic empty zone: 124.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.513 automatic empty zone: 125.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.513 automatic empty zone: 126.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.513 automatic empty zone: 127.100.IN-ADDR.ARPA +13-Jan-2019 13:29:06.513 automatic empty zone: 0.IN-ADDR.ARPA +13-Jan-2019 13:29:06.513 automatic empty zone: 127.IN-ADDR.ARPA +13-Jan-2019 13:29:06.513 automatic empty zone: 254.169.IN-ADDR.ARPA +13-Jan-2019 13:29:06.513 automatic empty zone: 2.0.192.IN-ADDR.ARPA +13-Jan-2019 13:29:06.513 automatic empty zone: 100.51.198.IN-ADDR.ARPA +13-Jan-2019 13:29:06.513 automatic empty zone: 113.0.203.IN-ADDR.ARPA +13-Jan-2019 13:29:06.513 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +13-Jan-2019 13:29:06.513 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +13-Jan-2019 13:29:06.513 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +13-Jan-2019 13:29:06.513 automatic empty zone: D.F.IP6.ARPA +13-Jan-2019 13:29:06.513 automatic empty zone: 8.E.F.IP6.ARPA +13-Jan-2019 13:29:06.513 automatic empty zone: 9.E.F.IP6.ARPA +13-Jan-2019 13:29:06.513 automatic empty zone: A.E.F.IP6.ARPA +13-Jan-2019 13:29:06.513 automatic empty zone: B.E.F.IP6.ARPA +13-Jan-2019 13:29:06.513 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +13-Jan-2019 13:29:06.513 automatic empty zone: EMPTY.AS112.ARPA +13-Jan-2019 13:29:06.513 automatic empty zone: HOME.ARPA +13-Jan-2019 13:29:06.513 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +13-Jan-2019 13:29:06.516 configuring command channel from '/opt/local/etc/rndc.key' +13-Jan-2019 13:29:06.516 couldn't add command channel 127.0.0.1#953: file not found +13-Jan-2019 13:29:06.516 configuring command channel from '/opt/local/etc/rndc.key' +13-Jan-2019 13:29:06.516 couldn't add command channel ::1#953: file not found +13-Jan-2019 13:29:06.516 not using config file logging statement for logging due to -g option +13-Jan-2019 13:29:06.517 managed-keys-zone: loaded serial 0 +13-Jan-2019 13:29:06.542 zone local/IN: loaded serial 2 +13-Jan-2019 13:29:06.542 all zones loaded +13-Jan-2019 13:29:06.542 running +13-Jan-2019 13:29:06.737 shutting down +13-Jan-2019 13:29:06.738 no longer listening on 127.0.0.1#5400 +13-Jan-2019 13:29:06.752 exiting +=== Log Marked @ 2019-01-13 13:42:56 +1300 [30668] === +13-Jan-2019 13:42:56.282 starting BIND 9.12.3-P1 +13-Jan-2019 13:42:56.283 running on Darwin x86_64 18.2.0 Darwin Kernel Version 18.2.0: Mon Nov 12 20:24:46 PST 2018; root:xnu-4903.231.4~2/RELEASE_X86_64 +13-Jan-2019 13:42:56.283 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'CPPFLAGS=-I/opt/local/include -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk' +13-Jan-2019 13:42:56.283 running as: named -c named.conf -f -p 5400 -g +13-Jan-2019 13:42:56.283 compiled by CLANG 4.2.1 Compatible Apple LLVM 10.0.0 (clang-1000.11.45.5) +13-Jan-2019 13:42:56.283 compiled with OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +13-Jan-2019 13:42:56.283 linked to OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +13-Jan-2019 13:42:56.283 compiled with libxml2 version: 2.9.7 +13-Jan-2019 13:42:56.283 linked to libxml2 version: 20907 +13-Jan-2019 13:42:56.283 compiled with zlib version: 1.2.11 +13-Jan-2019 13:42:56.283 linked to zlib version: 1.2.11 +13-Jan-2019 13:42:56.283 threads support is enabled +13-Jan-2019 13:42:56.283 ---------------------------------------------------- +13-Jan-2019 13:42:56.283 BIND 9 is maintained by Internet Systems Consortium, +13-Jan-2019 13:42:56.283 Inc. (ISC), a non-profit 501(c)(3) public-benefit +13-Jan-2019 13:42:56.283 corporation. Support and training for BIND 9 are +13-Jan-2019 13:42:56.283 available at https://www.isc.org/support +13-Jan-2019 13:42:56.283 ---------------------------------------------------- +13-Jan-2019 13:42:56.283 found 8 CPUs, using 8 worker threads +13-Jan-2019 13:42:56.283 using 7 UDP listeners per interface +13-Jan-2019 13:42:56.283 using up to 4096 sockets +13-Jan-2019 13:42:56.287 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +13-Jan-2019 13:42:56.287 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +13-Jan-2019 13:42:56.287 reading built-in trust anchors from file '/opt/local/etc/bind.keys' +13-Jan-2019 13:42:56.288 using default UDP/IPv4 port range: [49152, 65535] +13-Jan-2019 13:42:56.288 using default UDP/IPv6 port range: [49152, 65535] +13-Jan-2019 13:42:56.288 listening on IPv4 interface lo0, 127.0.0.1#5400 +13-Jan-2019 13:42:56.291 generating session key for dynamic DNS +13-Jan-2019 13:42:56.291 could not open file '/opt/local/var/run/named/session.key': Permission denied +13-Jan-2019 13:42:56.291 could not create /opt/local/var/run/named/session.key +13-Jan-2019 13:42:56.291 failed to generate session key for dynamic DNS: permission denied +13-Jan-2019 13:42:56.292 sizing zone task pool based on 1 zones +13-Jan-2019 13:42:56.292 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +13-Jan-2019 13:42:56.295 set up managed keys zone for view _default, file 'managed-keys.bind' +13-Jan-2019 13:42:56.295 automatic empty zone: 10.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 16.172.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 17.172.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 18.172.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 19.172.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 20.172.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 21.172.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 22.172.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 23.172.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 24.172.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 25.172.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 26.172.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 27.172.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 28.172.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 29.172.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 30.172.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 31.172.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 168.192.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 64.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 65.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 66.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 67.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 68.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 69.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 70.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 71.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 72.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 73.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 74.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 75.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 76.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 77.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 78.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 79.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 80.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 81.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 82.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 83.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 84.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 85.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 86.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 87.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 88.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.295 automatic empty zone: 89.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 90.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 91.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 92.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 93.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 94.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 95.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 96.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 97.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 98.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 99.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 100.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 101.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 102.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 103.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 104.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 105.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 106.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 107.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 108.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 109.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 110.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 111.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 112.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 113.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 114.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 115.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 116.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 117.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 118.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 119.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 120.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 121.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 122.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 123.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 124.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 125.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 126.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 127.100.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 0.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 127.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 254.169.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 2.0.192.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 100.51.198.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 113.0.203.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: D.F.IP6.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 8.E.F.IP6.ARPA +13-Jan-2019 13:42:56.296 automatic empty zone: 9.E.F.IP6.ARPA +13-Jan-2019 13:42:56.297 automatic empty zone: A.E.F.IP6.ARPA +13-Jan-2019 13:42:56.297 automatic empty zone: B.E.F.IP6.ARPA +13-Jan-2019 13:42:56.297 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +13-Jan-2019 13:42:56.297 automatic empty zone: EMPTY.AS112.ARPA +13-Jan-2019 13:42:56.297 automatic empty zone: HOME.ARPA +13-Jan-2019 13:42:56.297 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +13-Jan-2019 13:42:56.300 configuring command channel from '/opt/local/etc/rndc.key' +13-Jan-2019 13:42:56.300 couldn't add command channel 127.0.0.1#953: file not found +13-Jan-2019 13:42:56.300 configuring command channel from '/opt/local/etc/rndc.key' +13-Jan-2019 13:42:56.300 couldn't add command channel ::1#953: file not found +13-Jan-2019 13:42:56.300 not using config file logging statement for logging due to -g option +13-Jan-2019 13:42:56.301 managed-keys-zone: loaded serial 0 +13-Jan-2019 13:42:56.327 zone local/IN: loaded serial 2 +13-Jan-2019 13:42:56.327 all zones loaded +13-Jan-2019 13:42:56.327 running +13-Jan-2019 13:42:56.514 shutting down +13-Jan-2019 13:42:56.514 no longer listening on 127.0.0.1#5400 +13-Jan-2019 13:42:56.528 exiting +=== Log Marked @ 2019-01-13 13:45:06 +1300 [30686] === +13-Jan-2019 13:45:06.193 starting BIND 9.12.3-P1 +13-Jan-2019 13:45:06.194 running on Darwin x86_64 18.2.0 Darwin Kernel Version 18.2.0: Mon Nov 12 20:24:46 PST 2018; root:xnu-4903.231.4~2/RELEASE_X86_64 +13-Jan-2019 13:45:06.194 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'CPPFLAGS=-I/opt/local/include -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk' +13-Jan-2019 13:45:06.194 running as: named -c named.conf -f -p 5400 -g +13-Jan-2019 13:45:06.194 compiled by CLANG 4.2.1 Compatible Apple LLVM 10.0.0 (clang-1000.11.45.5) +13-Jan-2019 13:45:06.194 compiled with OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +13-Jan-2019 13:45:06.194 linked to OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +13-Jan-2019 13:45:06.194 compiled with libxml2 version: 2.9.7 +13-Jan-2019 13:45:06.194 linked to libxml2 version: 20907 +13-Jan-2019 13:45:06.194 compiled with zlib version: 1.2.11 +13-Jan-2019 13:45:06.194 linked to zlib version: 1.2.11 +13-Jan-2019 13:45:06.194 threads support is enabled +13-Jan-2019 13:45:06.194 ---------------------------------------------------- +13-Jan-2019 13:45:06.194 BIND 9 is maintained by Internet Systems Consortium, +13-Jan-2019 13:45:06.194 Inc. (ISC), a non-profit 501(c)(3) public-benefit +13-Jan-2019 13:45:06.194 corporation. Support and training for BIND 9 are +13-Jan-2019 13:45:06.194 available at https://www.isc.org/support +13-Jan-2019 13:45:06.194 ---------------------------------------------------- +13-Jan-2019 13:45:06.194 found 8 CPUs, using 8 worker threads +13-Jan-2019 13:45:06.194 using 7 UDP listeners per interface +13-Jan-2019 13:45:06.194 using up to 4096 sockets +13-Jan-2019 13:45:06.199 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +13-Jan-2019 13:45:06.199 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +13-Jan-2019 13:45:06.199 reading built-in trust anchors from file '/opt/local/etc/bind.keys' +13-Jan-2019 13:45:06.199 using default UDP/IPv4 port range: [49152, 65535] +13-Jan-2019 13:45:06.199 using default UDP/IPv6 port range: [49152, 65535] +13-Jan-2019 13:45:06.201 listening on IPv4 interface lo0, 127.0.0.1#5400 +13-Jan-2019 13:45:06.205 generating session key for dynamic DNS +13-Jan-2019 13:45:06.205 could not open file '/opt/local/var/run/named/session.key': Permission denied +13-Jan-2019 13:45:06.205 could not create /opt/local/var/run/named/session.key +13-Jan-2019 13:45:06.205 failed to generate session key for dynamic DNS: permission denied +13-Jan-2019 13:45:06.205 sizing zone task pool based on 1 zones +13-Jan-2019 13:45:06.205 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +13-Jan-2019 13:45:06.208 set up managed keys zone for view _default, file 'managed-keys.bind' +13-Jan-2019 13:45:06.208 automatic empty zone: 10.IN-ADDR.ARPA +13-Jan-2019 13:45:06.208 automatic empty zone: 16.172.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 17.172.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 18.172.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 19.172.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 20.172.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 21.172.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 22.172.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 23.172.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 24.172.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 25.172.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 26.172.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 27.172.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 28.172.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 29.172.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 30.172.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 31.172.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 168.192.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 64.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 65.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 66.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 67.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 68.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 69.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 70.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 71.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 72.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 73.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 74.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 75.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 76.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 77.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 78.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 79.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 80.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 81.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 82.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 83.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 84.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 85.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 86.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 87.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 88.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 89.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 90.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 91.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 92.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 93.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 94.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 95.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.209 automatic empty zone: 96.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 97.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 98.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 99.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 100.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 101.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 102.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 103.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 104.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 105.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 106.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 107.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 108.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 109.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 110.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 111.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 112.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 113.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 114.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 115.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 116.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 117.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 118.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 119.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 120.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 121.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 122.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 123.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 124.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 125.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 126.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 127.100.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 0.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 127.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 254.169.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 2.0.192.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 100.51.198.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 113.0.203.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: D.F.IP6.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 8.E.F.IP6.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 9.E.F.IP6.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: A.E.F.IP6.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: B.E.F.IP6.ARPA +13-Jan-2019 13:45:06.210 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +13-Jan-2019 13:45:06.211 automatic empty zone: EMPTY.AS112.ARPA +13-Jan-2019 13:45:06.211 automatic empty zone: HOME.ARPA +13-Jan-2019 13:45:06.211 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +13-Jan-2019 13:45:06.214 configuring command channel from '/opt/local/etc/rndc.key' +13-Jan-2019 13:45:06.214 couldn't add command channel 127.0.0.1#953: file not found +13-Jan-2019 13:45:06.214 configuring command channel from '/opt/local/etc/rndc.key' +13-Jan-2019 13:45:06.214 couldn't add command channel ::1#953: file not found +13-Jan-2019 13:45:06.214 not using config file logging statement for logging due to -g option +13-Jan-2019 13:45:06.215 managed-keys-zone: loaded serial 0 +13-Jan-2019 13:45:06.240 zone local/IN: loaded serial 2 +13-Jan-2019 13:45:06.240 all zones loaded +13-Jan-2019 13:45:06.241 running +13-Jan-2019 13:45:11.449 shutting down +13-Jan-2019 13:45:11.449 no longer listening on 127.0.0.1#5400 +13-Jan-2019 13:45:11.463 exiting +=== Log Marked @ 2019-01-21 14:10:27 +1300 [58724] === +21-Jan-2019 14:10:27.631 starting BIND 9.12.3-P1 +21-Jan-2019 14:10:27.631 running on Darwin x86_64 18.2.0 Darwin Kernel Version 18.2.0: Mon Nov 12 20:24:46 PST 2018; root:xnu-4903.231.4~2/RELEASE_X86_64 +21-Jan-2019 14:10:27.631 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'CPPFLAGS=-I/opt/local/include -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk' +21-Jan-2019 14:10:27.631 running as: named -c named.conf -f -p 5400 -g +21-Jan-2019 14:10:27.631 compiled by CLANG 4.2.1 Compatible Apple LLVM 10.0.0 (clang-1000.11.45.5) +21-Jan-2019 14:10:27.631 compiled with OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +21-Jan-2019 14:10:27.631 linked to OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +21-Jan-2019 14:10:27.631 compiled with libxml2 version: 2.9.7 +21-Jan-2019 14:10:27.635 linked to libxml2 version: 20907 +21-Jan-2019 14:10:27.635 compiled with zlib version: 1.2.11 +21-Jan-2019 14:10:27.635 linked to zlib version: 1.2.11 +21-Jan-2019 14:10:27.635 threads support is enabled +21-Jan-2019 14:10:27.635 ---------------------------------------------------- +21-Jan-2019 14:10:27.635 BIND 9 is maintained by Internet Systems Consortium, +21-Jan-2019 14:10:27.635 Inc. (ISC), a non-profit 501(c)(3) public-benefit +21-Jan-2019 14:10:27.635 corporation. Support and training for BIND 9 are +21-Jan-2019 14:10:27.635 available at https://www.isc.org/support +21-Jan-2019 14:10:27.636 ---------------------------------------------------- +21-Jan-2019 14:10:27.636 found 8 CPUs, using 8 worker threads +21-Jan-2019 14:10:27.636 using 7 UDP listeners per interface +21-Jan-2019 14:10:27.636 using up to 4096 sockets +21-Jan-2019 14:10:27.662 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +21-Jan-2019 14:10:27.663 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +21-Jan-2019 14:10:27.663 reading built-in trust anchors from file '/opt/local/etc/bind.keys' +21-Jan-2019 14:10:27.665 using default UDP/IPv4 port range: [49152, 65535] +21-Jan-2019 14:10:27.665 using default UDP/IPv6 port range: [49152, 65535] +21-Jan-2019 14:10:27.666 listening on IPv4 interface lo0, 127.0.0.1#5400 +21-Jan-2019 14:10:27.670 generating session key for dynamic DNS +21-Jan-2019 14:10:27.673 could not open file '/opt/local/var/run/named/session.key': Permission denied +21-Jan-2019 14:10:27.673 could not create /opt/local/var/run/named/session.key +21-Jan-2019 14:10:27.673 failed to generate session key for dynamic DNS: permission denied +21-Jan-2019 14:10:27.675 sizing zone task pool based on 1 zones +21-Jan-2019 14:10:27.676 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +21-Jan-2019 14:10:27.680 set up managed keys zone for view _default, file 'managed-keys.bind' +21-Jan-2019 14:10:27.680 automatic empty zone: 10.IN-ADDR.ARPA +21-Jan-2019 14:10:27.680 automatic empty zone: 16.172.IN-ADDR.ARPA +21-Jan-2019 14:10:27.680 automatic empty zone: 17.172.IN-ADDR.ARPA +21-Jan-2019 14:10:27.680 automatic empty zone: 18.172.IN-ADDR.ARPA +21-Jan-2019 14:10:27.680 automatic empty zone: 19.172.IN-ADDR.ARPA +21-Jan-2019 14:10:27.680 automatic empty zone: 20.172.IN-ADDR.ARPA +21-Jan-2019 14:10:27.680 automatic empty zone: 21.172.IN-ADDR.ARPA +21-Jan-2019 14:10:27.680 automatic empty zone: 22.172.IN-ADDR.ARPA +21-Jan-2019 14:10:27.680 automatic empty zone: 23.172.IN-ADDR.ARPA +21-Jan-2019 14:10:27.680 automatic empty zone: 24.172.IN-ADDR.ARPA +21-Jan-2019 14:10:27.680 automatic empty zone: 25.172.IN-ADDR.ARPA +21-Jan-2019 14:10:27.680 automatic empty zone: 26.172.IN-ADDR.ARPA +21-Jan-2019 14:10:27.680 automatic empty zone: 27.172.IN-ADDR.ARPA +21-Jan-2019 14:10:27.680 automatic empty zone: 28.172.IN-ADDR.ARPA +21-Jan-2019 14:10:27.680 automatic empty zone: 29.172.IN-ADDR.ARPA +21-Jan-2019 14:10:27.680 automatic empty zone: 30.172.IN-ADDR.ARPA +21-Jan-2019 14:10:27.680 automatic empty zone: 31.172.IN-ADDR.ARPA +21-Jan-2019 14:10:27.680 automatic empty zone: 168.192.IN-ADDR.ARPA +21-Jan-2019 14:10:27.680 automatic empty zone: 64.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.680 automatic empty zone: 65.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.680 automatic empty zone: 66.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.680 automatic empty zone: 67.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.680 automatic empty zone: 68.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.680 automatic empty zone: 69.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.680 automatic empty zone: 70.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.680 automatic empty zone: 71.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.680 automatic empty zone: 72.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.680 automatic empty zone: 73.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.680 automatic empty zone: 74.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.680 automatic empty zone: 75.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.680 automatic empty zone: 76.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 77.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 78.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 79.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 80.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 81.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 82.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 83.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 84.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 85.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 86.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 87.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 88.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 89.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 90.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 91.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 92.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 93.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 94.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 95.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 96.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 97.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 98.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 99.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 100.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 101.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 102.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 103.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 104.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 105.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 106.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 107.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 108.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 109.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 110.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 111.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 112.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 113.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 114.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 115.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 116.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 117.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 118.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 119.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 120.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 121.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.681 automatic empty zone: 122.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.682 automatic empty zone: 123.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.682 automatic empty zone: 124.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.682 automatic empty zone: 125.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.682 automatic empty zone: 126.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.682 automatic empty zone: 127.100.IN-ADDR.ARPA +21-Jan-2019 14:10:27.682 automatic empty zone: 0.IN-ADDR.ARPA +21-Jan-2019 14:10:27.682 automatic empty zone: 127.IN-ADDR.ARPA +21-Jan-2019 14:10:27.682 automatic empty zone: 254.169.IN-ADDR.ARPA +21-Jan-2019 14:10:27.682 automatic empty zone: 2.0.192.IN-ADDR.ARPA +21-Jan-2019 14:10:27.682 automatic empty zone: 100.51.198.IN-ADDR.ARPA +21-Jan-2019 14:10:27.682 automatic empty zone: 113.0.203.IN-ADDR.ARPA +21-Jan-2019 14:10:27.682 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +21-Jan-2019 14:10:27.682 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +21-Jan-2019 14:10:27.682 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +21-Jan-2019 14:10:27.682 automatic empty zone: D.F.IP6.ARPA +21-Jan-2019 14:10:27.682 automatic empty zone: 8.E.F.IP6.ARPA +21-Jan-2019 14:10:27.682 automatic empty zone: 9.E.F.IP6.ARPA +21-Jan-2019 14:10:27.682 automatic empty zone: A.E.F.IP6.ARPA +21-Jan-2019 14:10:27.682 automatic empty zone: B.E.F.IP6.ARPA +21-Jan-2019 14:10:27.682 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +21-Jan-2019 14:10:27.682 automatic empty zone: EMPTY.AS112.ARPA +21-Jan-2019 14:10:27.682 automatic empty zone: HOME.ARPA +21-Jan-2019 14:10:27.682 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +21-Jan-2019 14:10:27.685 configuring command channel from '/opt/local/etc/rndc.key' +21-Jan-2019 14:10:27.685 couldn't add command channel 127.0.0.1#953: file not found +21-Jan-2019 14:10:27.685 configuring command channel from '/opt/local/etc/rndc.key' +21-Jan-2019 14:10:27.685 couldn't add command channel ::1#953: file not found +21-Jan-2019 14:10:27.685 not using config file logging statement for logging due to -g option +21-Jan-2019 14:10:27.685 managed-keys-zone: loaded serial 0 +21-Jan-2019 14:10:27.710 zone local/IN: loaded serial 2 +21-Jan-2019 14:10:27.710 all zones loaded +21-Jan-2019 14:10:27.710 running +21-Jan-2019 14:10:32.220 shutting down +21-Jan-2019 14:10:32.221 no longer listening on 127.0.0.1#5400 +21-Jan-2019 14:10:32.234 exiting +=== Log Marked @ 2019-01-21 14:19:32 +1300 [59066] === +21-Jan-2019 14:19:32.420 starting BIND 9.12.3-P1 +21-Jan-2019 14:19:32.420 running on Darwin x86_64 18.2.0 Darwin Kernel Version 18.2.0: Mon Nov 12 20:24:46 PST 2018; root:xnu-4903.231.4~2/RELEASE_X86_64 +21-Jan-2019 14:19:32.420 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'CPPFLAGS=-I/opt/local/include -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk' +21-Jan-2019 14:19:32.420 running as: named -c named.conf -f -p 5400 -g +21-Jan-2019 14:19:32.420 compiled by CLANG 4.2.1 Compatible Apple LLVM 10.0.0 (clang-1000.11.45.5) +21-Jan-2019 14:19:32.420 compiled with OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +21-Jan-2019 14:19:32.420 linked to OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +21-Jan-2019 14:19:32.420 compiled with libxml2 version: 2.9.7 +21-Jan-2019 14:19:32.421 linked to libxml2 version: 20907 +21-Jan-2019 14:19:32.421 compiled with zlib version: 1.2.11 +21-Jan-2019 14:19:32.421 linked to zlib version: 1.2.11 +21-Jan-2019 14:19:32.421 threads support is enabled +21-Jan-2019 14:19:32.421 ---------------------------------------------------- +21-Jan-2019 14:19:32.421 BIND 9 is maintained by Internet Systems Consortium, +21-Jan-2019 14:19:32.421 Inc. (ISC), a non-profit 501(c)(3) public-benefit +21-Jan-2019 14:19:32.421 corporation. Support and training for BIND 9 are +21-Jan-2019 14:19:32.421 available at https://www.isc.org/support +21-Jan-2019 14:19:32.421 ---------------------------------------------------- +21-Jan-2019 14:19:32.421 found 8 CPUs, using 8 worker threads +21-Jan-2019 14:19:32.421 using 7 UDP listeners per interface +21-Jan-2019 14:19:32.421 using up to 4096 sockets +21-Jan-2019 14:19:32.425 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +21-Jan-2019 14:19:32.425 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +21-Jan-2019 14:19:32.426 reading built-in trust anchors from file '/opt/local/etc/bind.keys' +21-Jan-2019 14:19:32.426 using default UDP/IPv4 port range: [49152, 65535] +21-Jan-2019 14:19:32.426 using default UDP/IPv6 port range: [49152, 65535] +21-Jan-2019 14:19:32.427 listening on IPv4 interface lo0, 127.0.0.1#5400 +21-Jan-2019 14:19:32.429 generating session key for dynamic DNS +21-Jan-2019 14:19:32.429 could not open file '/opt/local/var/run/named/session.key': Permission denied +21-Jan-2019 14:19:32.429 could not create /opt/local/var/run/named/session.key +21-Jan-2019 14:19:32.429 failed to generate session key for dynamic DNS: permission denied +21-Jan-2019 14:19:32.429 sizing zone task pool based on 1 zones +21-Jan-2019 14:19:32.429 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +21-Jan-2019 14:19:32.433 set up managed keys zone for view _default, file 'managed-keys.bind' +21-Jan-2019 14:19:32.433 automatic empty zone: 10.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 16.172.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 17.172.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 18.172.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 19.172.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 20.172.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 21.172.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 22.172.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 23.172.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 24.172.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 25.172.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 26.172.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 27.172.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 28.172.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 29.172.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 30.172.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 31.172.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 168.192.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 64.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 65.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 66.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 67.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 68.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 69.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 70.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 71.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 72.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 73.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 74.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 75.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 76.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 77.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 78.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 79.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 80.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 81.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 82.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 83.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 84.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 85.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 86.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 87.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 88.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 89.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.433 automatic empty zone: 90.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.434 automatic empty zone: 91.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.434 automatic empty zone: 92.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.434 automatic empty zone: 93.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.434 automatic empty zone: 94.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.434 automatic empty zone: 95.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.434 automatic empty zone: 96.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.434 automatic empty zone: 97.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.434 automatic empty zone: 98.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.434 automatic empty zone: 99.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.434 automatic empty zone: 100.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.434 automatic empty zone: 101.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.434 automatic empty zone: 102.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.434 automatic empty zone: 103.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.434 automatic empty zone: 104.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.434 automatic empty zone: 105.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.434 automatic empty zone: 106.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.434 automatic empty zone: 107.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.434 automatic empty zone: 108.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.434 automatic empty zone: 109.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.434 automatic empty zone: 110.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.434 automatic empty zone: 111.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.434 automatic empty zone: 112.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.434 automatic empty zone: 113.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.434 automatic empty zone: 114.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.434 automatic empty zone: 115.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.434 automatic empty zone: 116.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.434 automatic empty zone: 117.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.434 automatic empty zone: 118.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.434 automatic empty zone: 119.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.434 automatic empty zone: 120.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.434 automatic empty zone: 121.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.434 automatic empty zone: 122.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.434 automatic empty zone: 123.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.435 automatic empty zone: 124.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.435 automatic empty zone: 125.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.435 automatic empty zone: 126.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.435 automatic empty zone: 127.100.IN-ADDR.ARPA +21-Jan-2019 14:19:32.435 automatic empty zone: 0.IN-ADDR.ARPA +21-Jan-2019 14:19:32.435 automatic empty zone: 127.IN-ADDR.ARPA +21-Jan-2019 14:19:32.435 automatic empty zone: 254.169.IN-ADDR.ARPA +21-Jan-2019 14:19:32.435 automatic empty zone: 2.0.192.IN-ADDR.ARPA +21-Jan-2019 14:19:32.435 automatic empty zone: 100.51.198.IN-ADDR.ARPA +21-Jan-2019 14:19:32.435 automatic empty zone: 113.0.203.IN-ADDR.ARPA +21-Jan-2019 14:19:32.435 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +21-Jan-2019 14:19:32.435 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +21-Jan-2019 14:19:32.435 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +21-Jan-2019 14:19:32.435 automatic empty zone: D.F.IP6.ARPA +21-Jan-2019 14:19:32.435 automatic empty zone: 8.E.F.IP6.ARPA +21-Jan-2019 14:19:32.435 automatic empty zone: 9.E.F.IP6.ARPA +21-Jan-2019 14:19:32.435 automatic empty zone: A.E.F.IP6.ARPA +21-Jan-2019 14:19:32.435 automatic empty zone: B.E.F.IP6.ARPA +21-Jan-2019 14:19:32.435 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +21-Jan-2019 14:19:32.435 automatic empty zone: EMPTY.AS112.ARPA +21-Jan-2019 14:19:32.435 automatic empty zone: HOME.ARPA +21-Jan-2019 14:19:32.435 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +21-Jan-2019 14:19:32.439 configuring command channel from '/opt/local/etc/rndc.key' +21-Jan-2019 14:19:32.439 couldn't add command channel 127.0.0.1#953: file not found +21-Jan-2019 14:19:32.439 configuring command channel from '/opt/local/etc/rndc.key' +21-Jan-2019 14:19:32.439 couldn't add command channel ::1#953: file not found +21-Jan-2019 14:19:32.439 not using config file logging statement for logging due to -g option +21-Jan-2019 14:19:32.440 managed-keys-zone: loaded serial 0 +21-Jan-2019 14:19:32.469 zone local/IN: loaded serial 2 +21-Jan-2019 14:19:32.469 all zones loaded +21-Jan-2019 14:19:32.469 running +21-Jan-2019 14:19:36.900 shutting down +21-Jan-2019 14:19:36.900 no longer listening on 127.0.0.1#5400 +21-Jan-2019 14:19:36.915 exiting +=== Log Marked @ 2019-01-21 14:21:36 +1300 [59081] === +21-Jan-2019 14:21:36.390 starting BIND 9.12.3-P1 +21-Jan-2019 14:21:36.390 running on Darwin x86_64 18.2.0 Darwin Kernel Version 18.2.0: Mon Nov 12 20:24:46 PST 2018; root:xnu-4903.231.4~2/RELEASE_X86_64 +21-Jan-2019 14:21:36.390 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'CPPFLAGS=-I/opt/local/include -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk' +21-Jan-2019 14:21:36.390 running as: named -c named.conf -f -p 5400 -g +21-Jan-2019 14:21:36.390 compiled by CLANG 4.2.1 Compatible Apple LLVM 10.0.0 (clang-1000.11.45.5) +21-Jan-2019 14:21:36.390 compiled with OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +21-Jan-2019 14:21:36.390 linked to OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +21-Jan-2019 14:21:36.390 compiled with libxml2 version: 2.9.7 +21-Jan-2019 14:21:36.390 linked to libxml2 version: 20907 +21-Jan-2019 14:21:36.390 compiled with zlib version: 1.2.11 +21-Jan-2019 14:21:36.390 linked to zlib version: 1.2.11 +21-Jan-2019 14:21:36.390 threads support is enabled +21-Jan-2019 14:21:36.390 ---------------------------------------------------- +21-Jan-2019 14:21:36.390 BIND 9 is maintained by Internet Systems Consortium, +21-Jan-2019 14:21:36.390 Inc. (ISC), a non-profit 501(c)(3) public-benefit +21-Jan-2019 14:21:36.390 corporation. Support and training for BIND 9 are +21-Jan-2019 14:21:36.390 available at https://www.isc.org/support +21-Jan-2019 14:21:36.390 ---------------------------------------------------- +21-Jan-2019 14:21:36.390 found 8 CPUs, using 8 worker threads +21-Jan-2019 14:21:36.390 using 7 UDP listeners per interface +21-Jan-2019 14:21:36.390 using up to 4096 sockets +21-Jan-2019 14:21:36.394 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +21-Jan-2019 14:21:36.394 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +21-Jan-2019 14:21:36.395 reading built-in trust anchors from file '/opt/local/etc/bind.keys' +21-Jan-2019 14:21:36.395 using default UDP/IPv4 port range: [49152, 65535] +21-Jan-2019 14:21:36.395 using default UDP/IPv6 port range: [49152, 65535] +21-Jan-2019 14:21:36.396 listening on IPv4 interface lo0, 127.0.0.1#5400 +21-Jan-2019 14:21:36.398 generating session key for dynamic DNS +21-Jan-2019 14:21:36.399 could not open file '/opt/local/var/run/named/session.key': Permission denied +21-Jan-2019 14:21:36.399 could not create /opt/local/var/run/named/session.key +21-Jan-2019 14:21:36.399 failed to generate session key for dynamic DNS: permission denied +21-Jan-2019 14:21:36.399 sizing zone task pool based on 1 zones +21-Jan-2019 14:21:36.399 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +21-Jan-2019 14:21:36.402 set up managed keys zone for view _default, file 'managed-keys.bind' +21-Jan-2019 14:21:36.402 automatic empty zone: 10.IN-ADDR.ARPA +21-Jan-2019 14:21:36.402 automatic empty zone: 16.172.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 17.172.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 18.172.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 19.172.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 20.172.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 21.172.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 22.172.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 23.172.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 24.172.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 25.172.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 26.172.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 27.172.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 28.172.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 29.172.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 30.172.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 31.172.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 168.192.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 64.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 65.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 66.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 67.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 68.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 69.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 70.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 71.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 72.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 73.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 74.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 75.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 76.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 77.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 78.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 79.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 80.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 81.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 82.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 83.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 84.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 85.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 86.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 87.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 88.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 89.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.403 automatic empty zone: 90.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 91.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 92.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 93.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 94.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 95.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 96.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 97.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 98.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 99.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 100.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 101.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 102.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 103.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 104.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 105.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 106.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 107.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 108.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 109.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 110.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 111.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 112.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 113.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 114.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 115.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 116.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 117.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 118.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 119.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 120.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 121.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 122.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 123.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 124.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 125.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 126.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 127.100.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 0.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 127.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 254.169.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 2.0.192.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 100.51.198.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 113.0.203.IN-ADDR.ARPA +21-Jan-2019 14:21:36.404 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +21-Jan-2019 14:21:36.405 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +21-Jan-2019 14:21:36.405 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +21-Jan-2019 14:21:36.405 automatic empty zone: D.F.IP6.ARPA +21-Jan-2019 14:21:36.405 automatic empty zone: 8.E.F.IP6.ARPA +21-Jan-2019 14:21:36.405 automatic empty zone: 9.E.F.IP6.ARPA +21-Jan-2019 14:21:36.405 automatic empty zone: A.E.F.IP6.ARPA +21-Jan-2019 14:21:36.405 automatic empty zone: B.E.F.IP6.ARPA +21-Jan-2019 14:21:36.405 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +21-Jan-2019 14:21:36.405 automatic empty zone: EMPTY.AS112.ARPA +21-Jan-2019 14:21:36.405 automatic empty zone: HOME.ARPA +21-Jan-2019 14:21:36.405 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +21-Jan-2019 14:21:36.408 configuring command channel from '/opt/local/etc/rndc.key' +21-Jan-2019 14:21:36.408 couldn't add command channel 127.0.0.1#953: file not found +21-Jan-2019 14:21:36.408 configuring command channel from '/opt/local/etc/rndc.key' +21-Jan-2019 14:21:36.408 couldn't add command channel ::1#953: file not found +21-Jan-2019 14:21:36.408 not using config file logging statement for logging due to -g option +21-Jan-2019 14:21:36.409 managed-keys-zone: loaded serial 0 +21-Jan-2019 14:21:36.435 zone local/IN: loaded serial 2 +21-Jan-2019 14:21:36.435 all zones loaded +21-Jan-2019 14:21:36.436 running +21-Jan-2019 14:21:40.782 shutting down +21-Jan-2019 14:21:40.783 no longer listening on 127.0.0.1#5400 +21-Jan-2019 14:21:40.799 exiting +=== Log Marked @ 2019-04-26 17:35:57 +1200 [9092] === +26-Apr-2019 17:35:57.492 starting BIND 9.12.3-P1 +26-Apr-2019 17:35:57.492 running on Darwin x86_64 18.5.0 Darwin Kernel Version 18.5.0: Mon Mar 11 20:40:32 PDT 2019; root:xnu-4903.251.3~3/RELEASE_X86_64 +26-Apr-2019 17:35:57.492 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'CPPFLAGS=-I/opt/local/include -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk' +26-Apr-2019 17:35:57.492 running as: named -c named.conf -f -p 5400 -g +26-Apr-2019 17:35:57.492 compiled by CLANG 4.2.1 Compatible Apple LLVM 10.0.0 (clang-1000.11.45.5) +26-Apr-2019 17:35:57.492 compiled with OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +26-Apr-2019 17:35:57.492 linked to OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +26-Apr-2019 17:35:57.492 compiled with libxml2 version: 2.9.7 +26-Apr-2019 17:35:57.495 linked to libxml2 version: 20907 +26-Apr-2019 17:35:57.495 compiled with zlib version: 1.2.11 +26-Apr-2019 17:35:57.495 linked to zlib version: 1.2.11 +26-Apr-2019 17:35:57.495 threads support is enabled +26-Apr-2019 17:35:57.495 ---------------------------------------------------- +26-Apr-2019 17:35:57.495 BIND 9 is maintained by Internet Systems Consortium, +26-Apr-2019 17:35:57.495 Inc. (ISC), a non-profit 501(c)(3) public-benefit +26-Apr-2019 17:35:57.495 corporation. Support and training for BIND 9 are +26-Apr-2019 17:35:57.495 available at https://www.isc.org/support +26-Apr-2019 17:35:57.495 ---------------------------------------------------- +26-Apr-2019 17:35:57.495 found 8 CPUs, using 8 worker threads +26-Apr-2019 17:35:57.495 using 7 UDP listeners per interface +26-Apr-2019 17:35:57.496 using up to 4096 sockets +26-Apr-2019 17:35:57.523 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +26-Apr-2019 17:35:57.523 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +26-Apr-2019 17:35:57.524 reading built-in trust anchors from file '/opt/local/etc/bind.keys' +26-Apr-2019 17:35:57.526 using default UDP/IPv4 port range: [49152, 65535] +26-Apr-2019 17:35:57.526 using default UDP/IPv6 port range: [49152, 65535] +26-Apr-2019 17:35:57.526 listening on IPv4 interface lo0, 127.0.0.1#5400 +26-Apr-2019 17:35:57.531 generating session key for dynamic DNS +26-Apr-2019 17:35:57.532 could not open file '/opt/local/var/run/named/session.key': Permission denied +26-Apr-2019 17:35:57.532 could not create /opt/local/var/run/named/session.key +26-Apr-2019 17:35:57.532 failed to generate session key for dynamic DNS: permission denied +26-Apr-2019 17:35:57.534 sizing zone task pool based on 1 zones +26-Apr-2019 17:35:57.536 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Apr-2019 17:35:57.540 set up managed keys zone for view _default, file 'managed-keys.bind' +26-Apr-2019 17:35:57.540 automatic empty zone: 10.IN-ADDR.ARPA +26-Apr-2019 17:35:57.540 automatic empty zone: 16.172.IN-ADDR.ARPA +26-Apr-2019 17:35:57.540 automatic empty zone: 17.172.IN-ADDR.ARPA +26-Apr-2019 17:35:57.540 automatic empty zone: 18.172.IN-ADDR.ARPA +26-Apr-2019 17:35:57.540 automatic empty zone: 19.172.IN-ADDR.ARPA +26-Apr-2019 17:35:57.540 automatic empty zone: 20.172.IN-ADDR.ARPA +26-Apr-2019 17:35:57.540 automatic empty zone: 21.172.IN-ADDR.ARPA +26-Apr-2019 17:35:57.540 automatic empty zone: 22.172.IN-ADDR.ARPA +26-Apr-2019 17:35:57.540 automatic empty zone: 23.172.IN-ADDR.ARPA +26-Apr-2019 17:35:57.540 automatic empty zone: 24.172.IN-ADDR.ARPA +26-Apr-2019 17:35:57.540 automatic empty zone: 25.172.IN-ADDR.ARPA +26-Apr-2019 17:35:57.540 automatic empty zone: 26.172.IN-ADDR.ARPA +26-Apr-2019 17:35:57.540 automatic empty zone: 27.172.IN-ADDR.ARPA +26-Apr-2019 17:35:57.540 automatic empty zone: 28.172.IN-ADDR.ARPA +26-Apr-2019 17:35:57.540 automatic empty zone: 29.172.IN-ADDR.ARPA +26-Apr-2019 17:35:57.540 automatic empty zone: 30.172.IN-ADDR.ARPA +26-Apr-2019 17:35:57.540 automatic empty zone: 31.172.IN-ADDR.ARPA +26-Apr-2019 17:35:57.540 automatic empty zone: 168.192.IN-ADDR.ARPA +26-Apr-2019 17:35:57.540 automatic empty zone: 64.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.540 automatic empty zone: 65.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 66.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 67.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 68.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 69.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 70.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 71.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 72.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 73.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 74.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 75.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 76.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 77.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 78.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 79.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 80.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 81.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 82.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 83.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 84.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 85.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 86.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 87.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 88.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 89.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 90.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 91.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 92.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 93.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 94.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 95.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 96.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 97.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 98.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 99.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 100.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 101.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 102.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 103.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 104.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 105.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 106.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 107.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 108.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.541 automatic empty zone: 109.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.542 automatic empty zone: 110.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.542 automatic empty zone: 111.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.542 automatic empty zone: 112.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.542 automatic empty zone: 113.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.542 automatic empty zone: 114.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.542 automatic empty zone: 115.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.542 automatic empty zone: 116.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.542 automatic empty zone: 117.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.542 automatic empty zone: 118.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.542 automatic empty zone: 119.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.542 automatic empty zone: 120.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.542 automatic empty zone: 121.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.542 automatic empty zone: 122.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.542 automatic empty zone: 123.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.542 automatic empty zone: 124.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.542 automatic empty zone: 125.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.542 automatic empty zone: 126.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.542 automatic empty zone: 127.100.IN-ADDR.ARPA +26-Apr-2019 17:35:57.542 automatic empty zone: 0.IN-ADDR.ARPA +26-Apr-2019 17:35:57.542 automatic empty zone: 127.IN-ADDR.ARPA +26-Apr-2019 17:35:57.542 automatic empty zone: 254.169.IN-ADDR.ARPA +26-Apr-2019 17:35:57.542 automatic empty zone: 2.0.192.IN-ADDR.ARPA +26-Apr-2019 17:35:57.542 automatic empty zone: 100.51.198.IN-ADDR.ARPA +26-Apr-2019 17:35:57.542 automatic empty zone: 113.0.203.IN-ADDR.ARPA +26-Apr-2019 17:35:57.542 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +26-Apr-2019 17:35:57.542 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Apr-2019 17:35:57.542 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Apr-2019 17:35:57.542 automatic empty zone: D.F.IP6.ARPA +26-Apr-2019 17:35:57.542 automatic empty zone: 8.E.F.IP6.ARPA +26-Apr-2019 17:35:57.542 automatic empty zone: 9.E.F.IP6.ARPA +26-Apr-2019 17:35:57.542 automatic empty zone: A.E.F.IP6.ARPA +26-Apr-2019 17:35:57.542 automatic empty zone: B.E.F.IP6.ARPA +26-Apr-2019 17:35:57.542 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +26-Apr-2019 17:35:57.542 automatic empty zone: EMPTY.AS112.ARPA +26-Apr-2019 17:35:57.542 automatic empty zone: HOME.ARPA +26-Apr-2019 17:35:57.543 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Apr-2019 17:35:57.546 configuring command channel from '/opt/local/etc/rndc.key' +26-Apr-2019 17:35:57.546 couldn't add command channel 127.0.0.1#953: file not found +26-Apr-2019 17:35:57.546 configuring command channel from '/opt/local/etc/rndc.key' +26-Apr-2019 17:35:57.546 couldn't add command channel ::1#953: file not found +26-Apr-2019 17:35:57.546 not using config file logging statement for logging due to -g option +26-Apr-2019 17:35:57.547 managed-keys-zone: loaded serial 0 +26-Apr-2019 17:35:57.582 zone local/IN: loaded serial 2 +26-Apr-2019 17:35:57.582 all zones loaded +26-Apr-2019 17:35:57.582 running +26-Apr-2019 17:36:02.819 shutting down +26-Apr-2019 17:36:02.820 no longer listening on 127.0.0.1#5400 +26-Apr-2019 17:36:02.837 exiting +=== Log Marked @ 2019-04-26 17:36:46 +1200 [9106] === +26-Apr-2019 17:36:46.511 starting BIND 9.12.3-P1 +26-Apr-2019 17:36:46.512 running on Darwin x86_64 18.5.0 Darwin Kernel Version 18.5.0: Mon Mar 11 20:40:32 PDT 2019; root:xnu-4903.251.3~3/RELEASE_X86_64 +26-Apr-2019 17:36:46.512 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'CPPFLAGS=-I/opt/local/include -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk' +26-Apr-2019 17:36:46.512 running as: named -c named.conf -f -p 5400 -g +26-Apr-2019 17:36:46.512 compiled by CLANG 4.2.1 Compatible Apple LLVM 10.0.0 (clang-1000.11.45.5) +26-Apr-2019 17:36:46.512 compiled with OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +26-Apr-2019 17:36:46.512 linked to OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +26-Apr-2019 17:36:46.512 compiled with libxml2 version: 2.9.7 +26-Apr-2019 17:36:46.512 linked to libxml2 version: 20907 +26-Apr-2019 17:36:46.512 compiled with zlib version: 1.2.11 +26-Apr-2019 17:36:46.512 linked to zlib version: 1.2.11 +26-Apr-2019 17:36:46.512 threads support is enabled +26-Apr-2019 17:36:46.512 ---------------------------------------------------- +26-Apr-2019 17:36:46.512 BIND 9 is maintained by Internet Systems Consortium, +26-Apr-2019 17:36:46.512 Inc. (ISC), a non-profit 501(c)(3) public-benefit +26-Apr-2019 17:36:46.512 corporation. Support and training for BIND 9 are +26-Apr-2019 17:36:46.512 available at https://www.isc.org/support +26-Apr-2019 17:36:46.512 ---------------------------------------------------- +26-Apr-2019 17:36:46.512 found 8 CPUs, using 8 worker threads +26-Apr-2019 17:36:46.512 using 7 UDP listeners per interface +26-Apr-2019 17:36:46.512 using up to 4096 sockets +26-Apr-2019 17:36:46.517 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +26-Apr-2019 17:36:46.517 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +26-Apr-2019 17:36:46.517 reading built-in trust anchors from file '/opt/local/etc/bind.keys' +26-Apr-2019 17:36:46.517 using default UDP/IPv4 port range: [49152, 65535] +26-Apr-2019 17:36:46.517 using default UDP/IPv6 port range: [49152, 65535] +26-Apr-2019 17:36:46.518 listening on IPv4 interface lo0, 127.0.0.1#5400 +26-Apr-2019 17:36:46.521 generating session key for dynamic DNS +26-Apr-2019 17:36:46.521 could not open file '/opt/local/var/run/named/session.key': Permission denied +26-Apr-2019 17:36:46.521 could not create /opt/local/var/run/named/session.key +26-Apr-2019 17:36:46.521 failed to generate session key for dynamic DNS: permission denied +26-Apr-2019 17:36:46.521 sizing zone task pool based on 1 zones +26-Apr-2019 17:36:46.522 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Apr-2019 17:36:46.526 set up managed keys zone for view _default, file 'managed-keys.bind' +26-Apr-2019 17:36:46.526 automatic empty zone: 10.IN-ADDR.ARPA +26-Apr-2019 17:36:46.526 automatic empty zone: 16.172.IN-ADDR.ARPA +26-Apr-2019 17:36:46.526 automatic empty zone: 17.172.IN-ADDR.ARPA +26-Apr-2019 17:36:46.526 automatic empty zone: 18.172.IN-ADDR.ARPA +26-Apr-2019 17:36:46.526 automatic empty zone: 19.172.IN-ADDR.ARPA +26-Apr-2019 17:36:46.526 automatic empty zone: 20.172.IN-ADDR.ARPA +26-Apr-2019 17:36:46.526 automatic empty zone: 21.172.IN-ADDR.ARPA +26-Apr-2019 17:36:46.526 automatic empty zone: 22.172.IN-ADDR.ARPA +26-Apr-2019 17:36:46.526 automatic empty zone: 23.172.IN-ADDR.ARPA +26-Apr-2019 17:36:46.526 automatic empty zone: 24.172.IN-ADDR.ARPA +26-Apr-2019 17:36:46.526 automatic empty zone: 25.172.IN-ADDR.ARPA +26-Apr-2019 17:36:46.527 automatic empty zone: 26.172.IN-ADDR.ARPA +26-Apr-2019 17:36:46.527 automatic empty zone: 27.172.IN-ADDR.ARPA +26-Apr-2019 17:36:46.527 automatic empty zone: 28.172.IN-ADDR.ARPA +26-Apr-2019 17:36:46.527 automatic empty zone: 29.172.IN-ADDR.ARPA +26-Apr-2019 17:36:46.527 automatic empty zone: 30.172.IN-ADDR.ARPA +26-Apr-2019 17:36:46.527 automatic empty zone: 31.172.IN-ADDR.ARPA +26-Apr-2019 17:36:46.527 automatic empty zone: 168.192.IN-ADDR.ARPA +26-Apr-2019 17:36:46.527 automatic empty zone: 64.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.527 automatic empty zone: 65.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.527 automatic empty zone: 66.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.527 automatic empty zone: 67.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.527 automatic empty zone: 68.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.527 automatic empty zone: 69.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.527 automatic empty zone: 70.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.527 automatic empty zone: 71.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.527 automatic empty zone: 72.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.527 automatic empty zone: 73.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.527 automatic empty zone: 74.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.527 automatic empty zone: 75.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.527 automatic empty zone: 76.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.527 automatic empty zone: 77.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.527 automatic empty zone: 78.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.527 automatic empty zone: 79.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.527 automatic empty zone: 80.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 81.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 82.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 83.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 84.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 85.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 86.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 87.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 88.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 89.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 90.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 91.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 92.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 93.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 94.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 95.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 96.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 97.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 98.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 99.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 100.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 101.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 102.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 103.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 104.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 105.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 106.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 107.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 108.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 109.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 110.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 111.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 112.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 113.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 114.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 115.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 116.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 117.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 118.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 119.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 120.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 121.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 122.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.528 automatic empty zone: 123.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.529 automatic empty zone: 124.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.529 automatic empty zone: 125.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.529 automatic empty zone: 126.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.529 automatic empty zone: 127.100.IN-ADDR.ARPA +26-Apr-2019 17:36:46.529 automatic empty zone: 0.IN-ADDR.ARPA +26-Apr-2019 17:36:46.529 automatic empty zone: 127.IN-ADDR.ARPA +26-Apr-2019 17:36:46.529 automatic empty zone: 254.169.IN-ADDR.ARPA +26-Apr-2019 17:36:46.529 automatic empty zone: 2.0.192.IN-ADDR.ARPA +26-Apr-2019 17:36:46.529 automatic empty zone: 100.51.198.IN-ADDR.ARPA +26-Apr-2019 17:36:46.529 automatic empty zone: 113.0.203.IN-ADDR.ARPA +26-Apr-2019 17:36:46.529 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +26-Apr-2019 17:36:46.529 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Apr-2019 17:36:46.529 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Apr-2019 17:36:46.529 automatic empty zone: D.F.IP6.ARPA +26-Apr-2019 17:36:46.529 automatic empty zone: 8.E.F.IP6.ARPA +26-Apr-2019 17:36:46.529 automatic empty zone: 9.E.F.IP6.ARPA +26-Apr-2019 17:36:46.529 automatic empty zone: A.E.F.IP6.ARPA +26-Apr-2019 17:36:46.529 automatic empty zone: B.E.F.IP6.ARPA +26-Apr-2019 17:36:46.529 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +26-Apr-2019 17:36:46.529 automatic empty zone: EMPTY.AS112.ARPA +26-Apr-2019 17:36:46.529 automatic empty zone: HOME.ARPA +26-Apr-2019 17:36:46.529 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Apr-2019 17:36:46.534 configuring command channel from '/opt/local/etc/rndc.key' +26-Apr-2019 17:36:46.534 couldn't add command channel 127.0.0.1#953: file not found +26-Apr-2019 17:36:46.534 configuring command channel from '/opt/local/etc/rndc.key' +26-Apr-2019 17:36:46.534 couldn't add command channel ::1#953: file not found +26-Apr-2019 17:36:46.534 not using config file logging statement for logging due to -g option +26-Apr-2019 17:36:46.534 managed-keys-zone: loaded serial 0 +26-Apr-2019 17:36:46.563 zone local/IN: loaded serial 2 +26-Apr-2019 17:36:46.563 all zones loaded +26-Apr-2019 17:36:46.563 running +26-Apr-2019 17:36:51.393 shutting down +26-Apr-2019 17:36:51.393 no longer listening on 127.0.0.1#5400 +26-Apr-2019 17:36:51.410 exiting +=== Log Marked @ 2019-04-26 17:40:56 +1200 [9222] === +26-Apr-2019 17:40:56.339 starting BIND 9.12.3-P1 +26-Apr-2019 17:40:56.339 running on Darwin x86_64 18.5.0 Darwin Kernel Version 18.5.0: Mon Mar 11 20:40:32 PDT 2019; root:xnu-4903.251.3~3/RELEASE_X86_64 +26-Apr-2019 17:40:56.339 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'CPPFLAGS=-I/opt/local/include -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk' +26-Apr-2019 17:40:56.339 running as: named -c named.conf -f -p 5400 -g +26-Apr-2019 17:40:56.339 compiled by CLANG 4.2.1 Compatible Apple LLVM 10.0.0 (clang-1000.11.45.5) +26-Apr-2019 17:40:56.339 compiled with OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +26-Apr-2019 17:40:56.339 linked to OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +26-Apr-2019 17:40:56.339 compiled with libxml2 version: 2.9.7 +26-Apr-2019 17:40:56.339 linked to libxml2 version: 20907 +26-Apr-2019 17:40:56.339 compiled with zlib version: 1.2.11 +26-Apr-2019 17:40:56.339 linked to zlib version: 1.2.11 +26-Apr-2019 17:40:56.339 threads support is enabled +26-Apr-2019 17:40:56.340 ---------------------------------------------------- +26-Apr-2019 17:40:56.340 BIND 9 is maintained by Internet Systems Consortium, +26-Apr-2019 17:40:56.340 Inc. (ISC), a non-profit 501(c)(3) public-benefit +26-Apr-2019 17:40:56.340 corporation. Support and training for BIND 9 are +26-Apr-2019 17:40:56.340 available at https://www.isc.org/support +26-Apr-2019 17:40:56.340 ---------------------------------------------------- +26-Apr-2019 17:40:56.340 found 8 CPUs, using 8 worker threads +26-Apr-2019 17:40:56.340 using 7 UDP listeners per interface +26-Apr-2019 17:40:56.340 using up to 4096 sockets +26-Apr-2019 17:40:56.346 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +26-Apr-2019 17:40:56.346 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +26-Apr-2019 17:40:56.347 reading built-in trust anchors from file '/opt/local/etc/bind.keys' +26-Apr-2019 17:40:56.347 using default UDP/IPv4 port range: [49152, 65535] +26-Apr-2019 17:40:56.347 using default UDP/IPv6 port range: [49152, 65535] +26-Apr-2019 17:40:56.348 listening on IPv4 interface lo0, 127.0.0.1#5400 +26-Apr-2019 17:40:56.351 generating session key for dynamic DNS +26-Apr-2019 17:40:56.351 could not open file '/opt/local/var/run/named/session.key': Permission denied +26-Apr-2019 17:40:56.351 could not create /opt/local/var/run/named/session.key +26-Apr-2019 17:40:56.351 failed to generate session key for dynamic DNS: permission denied +26-Apr-2019 17:40:56.351 sizing zone task pool based on 1 zones +26-Apr-2019 17:40:56.352 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Apr-2019 17:40:56.355 set up managed keys zone for view _default, file 'managed-keys.bind' +26-Apr-2019 17:40:56.355 automatic empty zone: 10.IN-ADDR.ARPA +26-Apr-2019 17:40:56.355 automatic empty zone: 16.172.IN-ADDR.ARPA +26-Apr-2019 17:40:56.355 automatic empty zone: 17.172.IN-ADDR.ARPA +26-Apr-2019 17:40:56.355 automatic empty zone: 18.172.IN-ADDR.ARPA +26-Apr-2019 17:40:56.355 automatic empty zone: 19.172.IN-ADDR.ARPA +26-Apr-2019 17:40:56.355 automatic empty zone: 20.172.IN-ADDR.ARPA +26-Apr-2019 17:40:56.355 automatic empty zone: 21.172.IN-ADDR.ARPA +26-Apr-2019 17:40:56.355 automatic empty zone: 22.172.IN-ADDR.ARPA +26-Apr-2019 17:40:56.355 automatic empty zone: 23.172.IN-ADDR.ARPA +26-Apr-2019 17:40:56.355 automatic empty zone: 24.172.IN-ADDR.ARPA +26-Apr-2019 17:40:56.355 automatic empty zone: 25.172.IN-ADDR.ARPA +26-Apr-2019 17:40:56.355 automatic empty zone: 26.172.IN-ADDR.ARPA +26-Apr-2019 17:40:56.355 automatic empty zone: 27.172.IN-ADDR.ARPA +26-Apr-2019 17:40:56.355 automatic empty zone: 28.172.IN-ADDR.ARPA +26-Apr-2019 17:40:56.355 automatic empty zone: 29.172.IN-ADDR.ARPA +26-Apr-2019 17:40:56.355 automatic empty zone: 30.172.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 31.172.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 168.192.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 64.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 65.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 66.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 67.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 68.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 69.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 70.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 71.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 72.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 73.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 74.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 75.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 76.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 77.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 78.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 79.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 80.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 81.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 82.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 83.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 84.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 85.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 86.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 87.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 88.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 89.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 90.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 91.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 92.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 93.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 94.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 95.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 96.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 97.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 98.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 99.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 100.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 101.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 102.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.356 automatic empty zone: 103.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 104.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 105.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 106.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 107.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 108.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 109.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 110.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 111.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 112.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 113.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 114.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 115.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 116.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 117.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 118.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 119.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 120.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 121.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 122.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 123.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 124.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 125.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 126.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 127.100.IN-ADDR.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 0.IN-ADDR.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 127.IN-ADDR.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 254.169.IN-ADDR.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 2.0.192.IN-ADDR.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 100.51.198.IN-ADDR.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 113.0.203.IN-ADDR.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: D.F.IP6.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 8.E.F.IP6.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 9.E.F.IP6.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: A.E.F.IP6.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: B.E.F.IP6.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: EMPTY.AS112.ARPA +26-Apr-2019 17:40:56.357 automatic empty zone: HOME.ARPA +26-Apr-2019 17:40:56.358 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Apr-2019 17:40:56.361 configuring command channel from '/opt/local/etc/rndc.key' +26-Apr-2019 17:40:56.361 couldn't add command channel 127.0.0.1#953: file not found +26-Apr-2019 17:40:56.361 configuring command channel from '/opt/local/etc/rndc.key' +26-Apr-2019 17:40:56.361 couldn't add command channel ::1#953: file not found +26-Apr-2019 17:40:56.361 not using config file logging statement for logging due to -g option +26-Apr-2019 17:40:56.361 managed-keys-zone: loaded serial 0 +26-Apr-2019 17:40:56.392 zone local/IN: loaded serial 2 +26-Apr-2019 17:40:56.393 all zones loaded +26-Apr-2019 17:40:56.393 running +26-Apr-2019 17:41:01.395 shutting down +26-Apr-2019 17:41:01.396 no longer listening on 127.0.0.1#5400 +26-Apr-2019 17:41:01.411 exiting +=== Log Marked @ 2019-04-26 17:42:34 +1200 [9242] === +26-Apr-2019 17:42:34.411 starting BIND 9.12.3-P1 +26-Apr-2019 17:42:34.412 running on Darwin x86_64 18.5.0 Darwin Kernel Version 18.5.0: Mon Mar 11 20:40:32 PDT 2019; root:xnu-4903.251.3~3/RELEASE_X86_64 +26-Apr-2019 17:42:34.412 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'CPPFLAGS=-I/opt/local/include -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk' +26-Apr-2019 17:42:34.412 running as: named -c named.conf -f -p 5400 -g +26-Apr-2019 17:42:34.412 compiled by CLANG 4.2.1 Compatible Apple LLVM 10.0.0 (clang-1000.11.45.5) +26-Apr-2019 17:42:34.412 compiled with OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +26-Apr-2019 17:42:34.412 linked to OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +26-Apr-2019 17:42:34.412 compiled with libxml2 version: 2.9.7 +26-Apr-2019 17:42:34.412 linked to libxml2 version: 20907 +26-Apr-2019 17:42:34.412 compiled with zlib version: 1.2.11 +26-Apr-2019 17:42:34.412 linked to zlib version: 1.2.11 +26-Apr-2019 17:42:34.412 threads support is enabled +26-Apr-2019 17:42:34.412 ---------------------------------------------------- +26-Apr-2019 17:42:34.412 BIND 9 is maintained by Internet Systems Consortium, +26-Apr-2019 17:42:34.412 Inc. (ISC), a non-profit 501(c)(3) public-benefit +26-Apr-2019 17:42:34.412 corporation. Support and training for BIND 9 are +26-Apr-2019 17:42:34.412 available at https://www.isc.org/support +26-Apr-2019 17:42:34.412 ---------------------------------------------------- +26-Apr-2019 17:42:34.412 found 8 CPUs, using 8 worker threads +26-Apr-2019 17:42:34.412 using 7 UDP listeners per interface +26-Apr-2019 17:42:34.412 using up to 4096 sockets +26-Apr-2019 17:42:34.417 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +26-Apr-2019 17:42:34.418 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +26-Apr-2019 17:42:34.418 reading built-in trust anchors from file '/opt/local/etc/bind.keys' +26-Apr-2019 17:42:34.418 using default UDP/IPv4 port range: [49152, 65535] +26-Apr-2019 17:42:34.419 using default UDP/IPv6 port range: [49152, 65535] +26-Apr-2019 17:42:34.419 listening on IPv4 interface lo0, 127.0.0.1#5400 +26-Apr-2019 17:42:34.423 generating session key for dynamic DNS +26-Apr-2019 17:42:34.424 could not open file '/opt/local/var/run/named/session.key': Permission denied +26-Apr-2019 17:42:34.424 could not create /opt/local/var/run/named/session.key +26-Apr-2019 17:42:34.424 failed to generate session key for dynamic DNS: permission denied +26-Apr-2019 17:42:34.424 sizing zone task pool based on 1 zones +26-Apr-2019 17:42:34.424 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Apr-2019 17:42:34.428 set up managed keys zone for view _default, file 'managed-keys.bind' +26-Apr-2019 17:42:34.428 automatic empty zone: 10.IN-ADDR.ARPA +26-Apr-2019 17:42:34.428 automatic empty zone: 16.172.IN-ADDR.ARPA +26-Apr-2019 17:42:34.428 automatic empty zone: 17.172.IN-ADDR.ARPA +26-Apr-2019 17:42:34.428 automatic empty zone: 18.172.IN-ADDR.ARPA +26-Apr-2019 17:42:34.428 automatic empty zone: 19.172.IN-ADDR.ARPA +26-Apr-2019 17:42:34.428 automatic empty zone: 20.172.IN-ADDR.ARPA +26-Apr-2019 17:42:34.428 automatic empty zone: 21.172.IN-ADDR.ARPA +26-Apr-2019 17:42:34.428 automatic empty zone: 22.172.IN-ADDR.ARPA +26-Apr-2019 17:42:34.428 automatic empty zone: 23.172.IN-ADDR.ARPA +26-Apr-2019 17:42:34.428 automatic empty zone: 24.172.IN-ADDR.ARPA +26-Apr-2019 17:42:34.428 automatic empty zone: 25.172.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 26.172.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 27.172.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 28.172.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 29.172.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 30.172.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 31.172.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 168.192.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 64.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 65.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 66.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 67.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 68.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 69.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 70.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 71.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 72.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 73.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 74.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 75.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 76.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 77.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 78.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 79.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 80.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 81.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 82.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 83.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 84.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 85.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 86.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 87.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 88.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 89.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 90.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 91.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 92.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 93.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.429 automatic empty zone: 94.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 95.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 96.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 97.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 98.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 99.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 100.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 101.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 102.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 103.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 104.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 105.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 106.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 107.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 108.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 109.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 110.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 111.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 112.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 113.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 114.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 115.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 116.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 117.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 118.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 119.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 120.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 121.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 122.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 123.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 124.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 125.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 126.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 127.100.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 0.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 127.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 254.169.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 2.0.192.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 100.51.198.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 113.0.203.IN-ADDR.ARPA +26-Apr-2019 17:42:34.430 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +26-Apr-2019 17:42:34.431 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Apr-2019 17:42:34.431 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Apr-2019 17:42:34.431 automatic empty zone: D.F.IP6.ARPA +26-Apr-2019 17:42:34.431 automatic empty zone: 8.E.F.IP6.ARPA +26-Apr-2019 17:42:34.431 automatic empty zone: 9.E.F.IP6.ARPA +26-Apr-2019 17:42:34.431 automatic empty zone: A.E.F.IP6.ARPA +26-Apr-2019 17:42:34.431 automatic empty zone: B.E.F.IP6.ARPA +26-Apr-2019 17:42:34.431 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +26-Apr-2019 17:42:34.431 automatic empty zone: EMPTY.AS112.ARPA +26-Apr-2019 17:42:34.431 automatic empty zone: HOME.ARPA +26-Apr-2019 17:42:34.431 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Apr-2019 17:42:34.435 configuring command channel from '/opt/local/etc/rndc.key' +26-Apr-2019 17:42:34.435 couldn't add command channel 127.0.0.1#953: file not found +26-Apr-2019 17:42:34.435 configuring command channel from '/opt/local/etc/rndc.key' +26-Apr-2019 17:42:34.435 couldn't add command channel ::1#953: file not found +26-Apr-2019 17:42:34.435 not using config file logging statement for logging due to -g option +26-Apr-2019 17:42:34.435 managed-keys-zone: loaded serial 0 +26-Apr-2019 17:42:34.463 zone local/IN: loaded serial 2 +26-Apr-2019 17:42:34.464 all zones loaded +26-Apr-2019 17:42:34.464 running +26-Apr-2019 17:42:39.945 shutting down +26-Apr-2019 17:42:39.945 no longer listening on 127.0.0.1#5400 +26-Apr-2019 17:42:39.960 exiting +=== Log Marked @ 2019-04-26 17:46:15 +1200 [9325] === +26-Apr-2019 17:46:15.768 starting BIND 9.12.3-P1 +26-Apr-2019 17:46:15.768 running on Darwin x86_64 18.5.0 Darwin Kernel Version 18.5.0: Mon Mar 11 20:40:32 PDT 2019; root:xnu-4903.251.3~3/RELEASE_X86_64 +26-Apr-2019 17:46:15.768 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'CPPFLAGS=-I/opt/local/include -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk' +26-Apr-2019 17:46:15.768 running as: named -c named.conf -f -p 5400 -g +26-Apr-2019 17:46:15.768 compiled by CLANG 4.2.1 Compatible Apple LLVM 10.0.0 (clang-1000.11.45.5) +26-Apr-2019 17:46:15.768 compiled with OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +26-Apr-2019 17:46:15.768 linked to OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +26-Apr-2019 17:46:15.768 compiled with libxml2 version: 2.9.7 +26-Apr-2019 17:46:15.768 linked to libxml2 version: 20907 +26-Apr-2019 17:46:15.768 compiled with zlib version: 1.2.11 +26-Apr-2019 17:46:15.768 linked to zlib version: 1.2.11 +26-Apr-2019 17:46:15.768 threads support is enabled +26-Apr-2019 17:46:15.768 ---------------------------------------------------- +26-Apr-2019 17:46:15.768 BIND 9 is maintained by Internet Systems Consortium, +26-Apr-2019 17:46:15.768 Inc. (ISC), a non-profit 501(c)(3) public-benefit +26-Apr-2019 17:46:15.768 corporation. Support and training for BIND 9 are +26-Apr-2019 17:46:15.768 available at https://www.isc.org/support +26-Apr-2019 17:46:15.768 ---------------------------------------------------- +26-Apr-2019 17:46:15.768 found 8 CPUs, using 8 worker threads +26-Apr-2019 17:46:15.768 using 7 UDP listeners per interface +26-Apr-2019 17:46:15.769 using up to 4096 sockets +26-Apr-2019 17:46:15.776 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +26-Apr-2019 17:46:15.776 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +26-Apr-2019 17:46:15.776 reading built-in trust anchors from file '/opt/local/etc/bind.keys' +26-Apr-2019 17:46:15.777 using default UDP/IPv4 port range: [49152, 65535] +26-Apr-2019 17:46:15.777 using default UDP/IPv6 port range: [49152, 65535] +26-Apr-2019 17:46:15.778 listening on IPv4 interface lo0, 127.0.0.1#5400 +26-Apr-2019 17:46:15.782 generating session key for dynamic DNS +26-Apr-2019 17:46:15.782 could not open file '/opt/local/var/run/named/session.key': Permission denied +26-Apr-2019 17:46:15.782 could not create /opt/local/var/run/named/session.key +26-Apr-2019 17:46:15.782 failed to generate session key for dynamic DNS: permission denied +26-Apr-2019 17:46:15.782 sizing zone task pool based on 1 zones +26-Apr-2019 17:46:15.783 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Apr-2019 17:46:15.786 set up managed keys zone for view _default, file 'managed-keys.bind' +26-Apr-2019 17:46:15.786 automatic empty zone: 10.IN-ADDR.ARPA +26-Apr-2019 17:46:15.786 automatic empty zone: 16.172.IN-ADDR.ARPA +26-Apr-2019 17:46:15.786 automatic empty zone: 17.172.IN-ADDR.ARPA +26-Apr-2019 17:46:15.786 automatic empty zone: 18.172.IN-ADDR.ARPA +26-Apr-2019 17:46:15.786 automatic empty zone: 19.172.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 20.172.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 21.172.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 22.172.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 23.172.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 24.172.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 25.172.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 26.172.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 27.172.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 28.172.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 29.172.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 30.172.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 31.172.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 168.192.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 64.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 65.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 66.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 67.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 68.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 69.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 70.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 71.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 72.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 73.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 74.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 75.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 76.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 77.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 78.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 79.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 80.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 81.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 82.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 83.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 84.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 85.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 86.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 87.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.787 automatic empty zone: 88.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.788 automatic empty zone: 89.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.788 automatic empty zone: 90.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.788 automatic empty zone: 91.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.788 automatic empty zone: 92.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.788 automatic empty zone: 93.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.788 automatic empty zone: 94.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.788 automatic empty zone: 95.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.788 automatic empty zone: 96.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.788 automatic empty zone: 97.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.788 automatic empty zone: 98.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.788 automatic empty zone: 99.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.788 automatic empty zone: 100.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.788 automatic empty zone: 101.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.788 automatic empty zone: 102.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.788 automatic empty zone: 103.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.788 automatic empty zone: 104.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.788 automatic empty zone: 105.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.788 automatic empty zone: 106.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.788 automatic empty zone: 107.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.788 automatic empty zone: 108.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.788 automatic empty zone: 109.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.788 automatic empty zone: 110.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.788 automatic empty zone: 111.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.788 automatic empty zone: 112.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.788 automatic empty zone: 113.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.788 automatic empty zone: 114.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.788 automatic empty zone: 115.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.788 automatic empty zone: 116.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.788 automatic empty zone: 117.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.788 automatic empty zone: 118.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.788 automatic empty zone: 119.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.788 automatic empty zone: 120.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.788 automatic empty zone: 121.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.788 automatic empty zone: 122.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.789 automatic empty zone: 123.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.789 automatic empty zone: 124.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.789 automatic empty zone: 125.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.789 automatic empty zone: 126.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.789 automatic empty zone: 127.100.IN-ADDR.ARPA +26-Apr-2019 17:46:15.789 automatic empty zone: 0.IN-ADDR.ARPA +26-Apr-2019 17:46:15.789 automatic empty zone: 127.IN-ADDR.ARPA +26-Apr-2019 17:46:15.789 automatic empty zone: 254.169.IN-ADDR.ARPA +26-Apr-2019 17:46:15.789 automatic empty zone: 2.0.192.IN-ADDR.ARPA +26-Apr-2019 17:46:15.789 automatic empty zone: 100.51.198.IN-ADDR.ARPA +26-Apr-2019 17:46:15.789 automatic empty zone: 113.0.203.IN-ADDR.ARPA +26-Apr-2019 17:46:15.789 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +26-Apr-2019 17:46:15.789 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Apr-2019 17:46:15.789 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Apr-2019 17:46:15.789 automatic empty zone: D.F.IP6.ARPA +26-Apr-2019 17:46:15.789 automatic empty zone: 8.E.F.IP6.ARPA +26-Apr-2019 17:46:15.789 automatic empty zone: 9.E.F.IP6.ARPA +26-Apr-2019 17:46:15.789 automatic empty zone: A.E.F.IP6.ARPA +26-Apr-2019 17:46:15.789 automatic empty zone: B.E.F.IP6.ARPA +26-Apr-2019 17:46:15.789 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +26-Apr-2019 17:46:15.789 automatic empty zone: EMPTY.AS112.ARPA +26-Apr-2019 17:46:15.789 automatic empty zone: HOME.ARPA +26-Apr-2019 17:46:15.789 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Apr-2019 17:46:15.793 configuring command channel from '/opt/local/etc/rndc.key' +26-Apr-2019 17:46:15.793 couldn't add command channel 127.0.0.1#953: file not found +26-Apr-2019 17:46:15.793 configuring command channel from '/opt/local/etc/rndc.key' +26-Apr-2019 17:46:15.793 couldn't add command channel ::1#953: file not found +26-Apr-2019 17:46:15.793 not using config file logging statement for logging due to -g option +26-Apr-2019 17:46:15.793 managed-keys-zone: loaded serial 0 +26-Apr-2019 17:46:15.822 zone local/IN: loaded serial 2 +26-Apr-2019 17:46:15.822 all zones loaded +26-Apr-2019 17:46:15.822 running +26-Apr-2019 17:46:22.120 shutting down +26-Apr-2019 17:46:22.121 no longer listening on 127.0.0.1#5400 +26-Apr-2019 17:46:22.139 exiting +=== Log Marked @ 2019-04-26 17:47:28 +1200 [9341] === +26-Apr-2019 17:47:28.636 starting BIND 9.12.3-P1 +26-Apr-2019 17:47:28.636 running on Darwin x86_64 18.5.0 Darwin Kernel Version 18.5.0: Mon Mar 11 20:40:32 PDT 2019; root:xnu-4903.251.3~3/RELEASE_X86_64 +26-Apr-2019 17:47:28.636 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'CPPFLAGS=-I/opt/local/include -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk' +26-Apr-2019 17:47:28.636 running as: named -c named.conf -f -p 5400 -g +26-Apr-2019 17:47:28.636 compiled by CLANG 4.2.1 Compatible Apple LLVM 10.0.0 (clang-1000.11.45.5) +26-Apr-2019 17:47:28.636 compiled with OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +26-Apr-2019 17:47:28.636 linked to OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +26-Apr-2019 17:47:28.636 compiled with libxml2 version: 2.9.7 +26-Apr-2019 17:47:28.636 linked to libxml2 version: 20907 +26-Apr-2019 17:47:28.636 compiled with zlib version: 1.2.11 +26-Apr-2019 17:47:28.636 linked to zlib version: 1.2.11 +26-Apr-2019 17:47:28.636 threads support is enabled +26-Apr-2019 17:47:28.636 ---------------------------------------------------- +26-Apr-2019 17:47:28.637 BIND 9 is maintained by Internet Systems Consortium, +26-Apr-2019 17:47:28.637 Inc. (ISC), a non-profit 501(c)(3) public-benefit +26-Apr-2019 17:47:28.637 corporation. Support and training for BIND 9 are +26-Apr-2019 17:47:28.637 available at https://www.isc.org/support +26-Apr-2019 17:47:28.637 ---------------------------------------------------- +26-Apr-2019 17:47:28.637 found 8 CPUs, using 8 worker threads +26-Apr-2019 17:47:28.637 using 7 UDP listeners per interface +26-Apr-2019 17:47:28.637 using up to 4096 sockets +26-Apr-2019 17:47:28.641 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +26-Apr-2019 17:47:28.641 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +26-Apr-2019 17:47:28.641 reading built-in trust anchors from file '/opt/local/etc/bind.keys' +26-Apr-2019 17:47:28.641 using default UDP/IPv4 port range: [49152, 65535] +26-Apr-2019 17:47:28.641 using default UDP/IPv6 port range: [49152, 65535] +26-Apr-2019 17:47:28.642 listening on IPv4 interface lo0, 127.0.0.1#5400 +26-Apr-2019 17:47:28.645 generating session key for dynamic DNS +26-Apr-2019 17:47:28.645 could not open file '/opt/local/var/run/named/session.key': Permission denied +26-Apr-2019 17:47:28.645 could not create /opt/local/var/run/named/session.key +26-Apr-2019 17:47:28.645 failed to generate session key for dynamic DNS: permission denied +26-Apr-2019 17:47:28.645 sizing zone task pool based on 1 zones +26-Apr-2019 17:47:28.646 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Apr-2019 17:47:28.649 set up managed keys zone for view _default, file 'managed-keys.bind' +26-Apr-2019 17:47:28.649 automatic empty zone: 10.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 16.172.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 17.172.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 18.172.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 19.172.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 20.172.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 21.172.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 22.172.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 23.172.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 24.172.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 25.172.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 26.172.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 27.172.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 28.172.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 29.172.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 30.172.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 31.172.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 168.192.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 64.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 65.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 66.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 67.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 68.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 69.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 70.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 71.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 72.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 73.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 74.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 75.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 76.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 77.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 78.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 79.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 80.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 81.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.649 automatic empty zone: 82.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 83.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 84.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 85.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 86.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 87.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 88.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 89.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 90.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 91.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 92.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 93.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 94.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 95.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 96.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 97.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 98.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 99.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 100.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 101.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 102.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 103.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 104.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 105.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 106.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 107.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 108.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 109.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 110.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 111.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 112.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 113.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 114.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 115.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 116.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 117.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 118.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 119.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 120.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 121.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 122.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 123.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 124.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 125.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 126.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 127.100.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 0.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 127.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 254.169.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 2.0.192.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 100.51.198.IN-ADDR.ARPA +26-Apr-2019 17:47:28.650 automatic empty zone: 113.0.203.IN-ADDR.ARPA +26-Apr-2019 17:47:28.651 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +26-Apr-2019 17:47:28.651 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Apr-2019 17:47:28.651 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Apr-2019 17:47:28.651 automatic empty zone: D.F.IP6.ARPA +26-Apr-2019 17:47:28.651 automatic empty zone: 8.E.F.IP6.ARPA +26-Apr-2019 17:47:28.651 automatic empty zone: 9.E.F.IP6.ARPA +26-Apr-2019 17:47:28.651 automatic empty zone: A.E.F.IP6.ARPA +26-Apr-2019 17:47:28.651 automatic empty zone: B.E.F.IP6.ARPA +26-Apr-2019 17:47:28.651 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +26-Apr-2019 17:47:28.651 automatic empty zone: EMPTY.AS112.ARPA +26-Apr-2019 17:47:28.651 automatic empty zone: HOME.ARPA +26-Apr-2019 17:47:28.651 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Apr-2019 17:47:28.654 configuring command channel from '/opt/local/etc/rndc.key' +26-Apr-2019 17:47:28.654 couldn't add command channel 127.0.0.1#953: file not found +26-Apr-2019 17:47:28.654 configuring command channel from '/opt/local/etc/rndc.key' +26-Apr-2019 17:47:28.654 couldn't add command channel ::1#953: file not found +26-Apr-2019 17:47:28.654 not using config file logging statement for logging due to -g option +26-Apr-2019 17:47:28.654 managed-keys-zone: loaded serial 0 +26-Apr-2019 17:47:28.684 zone local/IN: loaded serial 2 +26-Apr-2019 17:47:28.684 all zones loaded +26-Apr-2019 17:47:28.684 running +26-Apr-2019 17:47:33.555 shutting down +26-Apr-2019 17:47:33.555 no longer listening on 127.0.0.1#5400 +26-Apr-2019 17:47:33.572 exiting +=== Log Marked @ 2019-04-26 17:48:37 +1200 [9353] === +26-Apr-2019 17:48:37.951 starting BIND 9.12.3-P1 +26-Apr-2019 17:48:37.951 running on Darwin x86_64 18.5.0 Darwin Kernel Version 18.5.0: Mon Mar 11 20:40:32 PDT 2019; root:xnu-4903.251.3~3/RELEASE_X86_64 +26-Apr-2019 17:48:37.951 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'CPPFLAGS=-I/opt/local/include -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk' +26-Apr-2019 17:48:37.951 running as: named -c named.conf -f -p 5400 -g +26-Apr-2019 17:48:37.951 compiled by CLANG 4.2.1 Compatible Apple LLVM 10.0.0 (clang-1000.11.45.5) +26-Apr-2019 17:48:37.951 compiled with OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +26-Apr-2019 17:48:37.951 linked to OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +26-Apr-2019 17:48:37.951 compiled with libxml2 version: 2.9.7 +26-Apr-2019 17:48:37.951 linked to libxml2 version: 20907 +26-Apr-2019 17:48:37.951 compiled with zlib version: 1.2.11 +26-Apr-2019 17:48:37.951 linked to zlib version: 1.2.11 +26-Apr-2019 17:48:37.951 threads support is enabled +26-Apr-2019 17:48:37.951 ---------------------------------------------------- +26-Apr-2019 17:48:37.951 BIND 9 is maintained by Internet Systems Consortium, +26-Apr-2019 17:48:37.951 Inc. (ISC), a non-profit 501(c)(3) public-benefit +26-Apr-2019 17:48:37.951 corporation. Support and training for BIND 9 are +26-Apr-2019 17:48:37.951 available at https://www.isc.org/support +26-Apr-2019 17:48:37.951 ---------------------------------------------------- +26-Apr-2019 17:48:37.951 found 8 CPUs, using 8 worker threads +26-Apr-2019 17:48:37.951 using 7 UDP listeners per interface +26-Apr-2019 17:48:37.952 using up to 4096 sockets +26-Apr-2019 17:48:37.957 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +26-Apr-2019 17:48:37.957 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +26-Apr-2019 17:48:37.957 reading built-in trust anchors from file '/opt/local/etc/bind.keys' +26-Apr-2019 17:48:37.958 using default UDP/IPv4 port range: [49152, 65535] +26-Apr-2019 17:48:37.958 using default UDP/IPv6 port range: [49152, 65535] +26-Apr-2019 17:48:37.959 listening on IPv4 interface lo0, 127.0.0.1#5400 +26-Apr-2019 17:48:37.963 generating session key for dynamic DNS +26-Apr-2019 17:48:37.963 could not open file '/opt/local/var/run/named/session.key': Permission denied +26-Apr-2019 17:48:37.963 could not create /opt/local/var/run/named/session.key +26-Apr-2019 17:48:37.963 failed to generate session key for dynamic DNS: permission denied +26-Apr-2019 17:48:37.963 sizing zone task pool based on 1 zones +26-Apr-2019 17:48:37.963 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Apr-2019 17:48:37.968 set up managed keys zone for view _default, file 'managed-keys.bind' +26-Apr-2019 17:48:37.968 automatic empty zone: 10.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 16.172.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 17.172.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 18.172.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 19.172.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 20.172.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 21.172.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 22.172.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 23.172.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 24.172.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 25.172.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 26.172.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 27.172.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 28.172.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 29.172.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 30.172.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 31.172.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 168.192.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 64.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 65.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 66.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 67.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 68.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 69.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 70.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 71.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 72.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 73.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 74.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 75.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 76.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 77.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 78.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 79.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 80.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 81.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 82.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.968 automatic empty zone: 83.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 84.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 85.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 86.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 87.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 88.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 89.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 90.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 91.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 92.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 93.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 94.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 95.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 96.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 97.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 98.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 99.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 100.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 101.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 102.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 103.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 104.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 105.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 106.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 107.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 108.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 109.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 110.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 111.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 112.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 113.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 114.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 115.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 116.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 117.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 118.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 119.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 120.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 121.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.969 automatic empty zone: 122.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.970 automatic empty zone: 123.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.970 automatic empty zone: 124.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.970 automatic empty zone: 125.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.970 automatic empty zone: 126.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.970 automatic empty zone: 127.100.IN-ADDR.ARPA +26-Apr-2019 17:48:37.970 automatic empty zone: 0.IN-ADDR.ARPA +26-Apr-2019 17:48:37.970 automatic empty zone: 127.IN-ADDR.ARPA +26-Apr-2019 17:48:37.970 automatic empty zone: 254.169.IN-ADDR.ARPA +26-Apr-2019 17:48:37.970 automatic empty zone: 2.0.192.IN-ADDR.ARPA +26-Apr-2019 17:48:37.970 automatic empty zone: 100.51.198.IN-ADDR.ARPA +26-Apr-2019 17:48:37.970 automatic empty zone: 113.0.203.IN-ADDR.ARPA +26-Apr-2019 17:48:37.970 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +26-Apr-2019 17:48:37.970 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Apr-2019 17:48:37.970 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Apr-2019 17:48:37.970 automatic empty zone: D.F.IP6.ARPA +26-Apr-2019 17:48:37.970 automatic empty zone: 8.E.F.IP6.ARPA +26-Apr-2019 17:48:37.970 automatic empty zone: 9.E.F.IP6.ARPA +26-Apr-2019 17:48:37.970 automatic empty zone: A.E.F.IP6.ARPA +26-Apr-2019 17:48:37.970 automatic empty zone: B.E.F.IP6.ARPA +26-Apr-2019 17:48:37.970 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +26-Apr-2019 17:48:37.970 automatic empty zone: EMPTY.AS112.ARPA +26-Apr-2019 17:48:37.970 automatic empty zone: HOME.ARPA +26-Apr-2019 17:48:37.970 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Apr-2019 17:48:37.974 configuring command channel from '/opt/local/etc/rndc.key' +26-Apr-2019 17:48:37.974 couldn't add command channel 127.0.0.1#953: file not found +26-Apr-2019 17:48:37.974 configuring command channel from '/opt/local/etc/rndc.key' +26-Apr-2019 17:48:37.974 couldn't add command channel ::1#953: file not found +26-Apr-2019 17:48:37.974 not using config file logging statement for logging due to -g option +26-Apr-2019 17:48:37.975 managed-keys-zone: loaded serial 0 +26-Apr-2019 17:48:38.003 zone local/IN: loaded serial 2 +26-Apr-2019 17:48:38.003 all zones loaded +26-Apr-2019 17:48:38.004 running +26-Apr-2019 17:48:44.584 shutting down +26-Apr-2019 17:48:44.584 no longer listening on 127.0.0.1#5400 +26-Apr-2019 17:48:44.601 exiting +=== Log Marked @ 2019-04-26 17:49:59 +1200 [9371] === +26-Apr-2019 17:49:59.782 starting BIND 9.12.3-P1 +26-Apr-2019 17:49:59.782 running on Darwin x86_64 18.5.0 Darwin Kernel Version 18.5.0: Mon Mar 11 20:40:32 PDT 2019; root:xnu-4903.251.3~3/RELEASE_X86_64 +26-Apr-2019 17:49:59.782 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'CPPFLAGS=-I/opt/local/include -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk' +26-Apr-2019 17:49:59.782 running as: named -c named.conf -f -p 5400 -g +26-Apr-2019 17:49:59.782 compiled by CLANG 4.2.1 Compatible Apple LLVM 10.0.0 (clang-1000.11.45.5) +26-Apr-2019 17:49:59.782 compiled with OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +26-Apr-2019 17:49:59.782 linked to OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +26-Apr-2019 17:49:59.782 compiled with libxml2 version: 2.9.7 +26-Apr-2019 17:49:59.782 linked to libxml2 version: 20907 +26-Apr-2019 17:49:59.782 compiled with zlib version: 1.2.11 +26-Apr-2019 17:49:59.782 linked to zlib version: 1.2.11 +26-Apr-2019 17:49:59.782 threads support is enabled +26-Apr-2019 17:49:59.782 ---------------------------------------------------- +26-Apr-2019 17:49:59.782 BIND 9 is maintained by Internet Systems Consortium, +26-Apr-2019 17:49:59.782 Inc. (ISC), a non-profit 501(c)(3) public-benefit +26-Apr-2019 17:49:59.782 corporation. Support and training for BIND 9 are +26-Apr-2019 17:49:59.782 available at https://www.isc.org/support +26-Apr-2019 17:49:59.782 ---------------------------------------------------- +26-Apr-2019 17:49:59.782 found 8 CPUs, using 8 worker threads +26-Apr-2019 17:49:59.782 using 7 UDP listeners per interface +26-Apr-2019 17:49:59.783 using up to 4096 sockets +26-Apr-2019 17:49:59.787 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +26-Apr-2019 17:49:59.787 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +26-Apr-2019 17:49:59.787 reading built-in trust anchors from file '/opt/local/etc/bind.keys' +26-Apr-2019 17:49:59.788 using default UDP/IPv4 port range: [49152, 65535] +26-Apr-2019 17:49:59.788 using default UDP/IPv6 port range: [49152, 65535] +26-Apr-2019 17:49:59.788 listening on IPv4 interface lo0, 127.0.0.1#5400 +26-Apr-2019 17:49:59.792 generating session key for dynamic DNS +26-Apr-2019 17:49:59.792 could not open file '/opt/local/var/run/named/session.key': Permission denied +26-Apr-2019 17:49:59.792 could not create /opt/local/var/run/named/session.key +26-Apr-2019 17:49:59.792 failed to generate session key for dynamic DNS: permission denied +26-Apr-2019 17:49:59.792 sizing zone task pool based on 1 zones +26-Apr-2019 17:49:59.792 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Apr-2019 17:49:59.796 set up managed keys zone for view _default, file 'managed-keys.bind' +26-Apr-2019 17:49:59.796 automatic empty zone: 10.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 16.172.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 17.172.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 18.172.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 19.172.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 20.172.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 21.172.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 22.172.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 23.172.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 24.172.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 25.172.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 26.172.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 27.172.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 28.172.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 29.172.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 30.172.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 31.172.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 168.192.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 64.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 65.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 66.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 67.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 68.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 69.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 70.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 71.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 72.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 73.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 74.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 75.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 76.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 77.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 78.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 79.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 80.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 81.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 82.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 83.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 84.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 85.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 86.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.796 automatic empty zone: 87.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 88.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 89.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 90.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 91.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 92.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 93.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 94.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 95.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 96.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 97.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 98.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 99.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 100.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 101.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 102.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 103.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 104.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 105.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 106.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 107.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 108.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 109.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 110.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 111.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 112.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 113.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 114.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 115.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 116.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 117.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 118.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 119.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 120.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 121.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 122.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 123.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 124.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 125.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 126.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 127.100.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 0.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 127.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 254.169.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 2.0.192.IN-ADDR.ARPA +26-Apr-2019 17:49:59.797 automatic empty zone: 100.51.198.IN-ADDR.ARPA +26-Apr-2019 17:49:59.798 automatic empty zone: 113.0.203.IN-ADDR.ARPA +26-Apr-2019 17:49:59.798 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +26-Apr-2019 17:49:59.798 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Apr-2019 17:49:59.798 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Apr-2019 17:49:59.798 automatic empty zone: D.F.IP6.ARPA +26-Apr-2019 17:49:59.798 automatic empty zone: 8.E.F.IP6.ARPA +26-Apr-2019 17:49:59.798 automatic empty zone: 9.E.F.IP6.ARPA +26-Apr-2019 17:49:59.798 automatic empty zone: A.E.F.IP6.ARPA +26-Apr-2019 17:49:59.798 automatic empty zone: B.E.F.IP6.ARPA +26-Apr-2019 17:49:59.798 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +26-Apr-2019 17:49:59.798 automatic empty zone: EMPTY.AS112.ARPA +26-Apr-2019 17:49:59.798 automatic empty zone: HOME.ARPA +26-Apr-2019 17:49:59.798 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Apr-2019 17:49:59.801 configuring command channel from '/opt/local/etc/rndc.key' +26-Apr-2019 17:49:59.801 couldn't add command channel 127.0.0.1#953: file not found +26-Apr-2019 17:49:59.801 configuring command channel from '/opt/local/etc/rndc.key' +26-Apr-2019 17:49:59.801 couldn't add command channel ::1#953: file not found +26-Apr-2019 17:49:59.801 not using config file logging statement for logging due to -g option +26-Apr-2019 17:49:59.801 managed-keys-zone: loaded serial 0 +26-Apr-2019 17:49:59.827 zone local/IN: loaded serial 2 +26-Apr-2019 17:49:59.827 all zones loaded +26-Apr-2019 17:49:59.828 running +26-Apr-2019 17:50:05.613 shutting down +26-Apr-2019 17:50:05.613 no longer listening on 127.0.0.1#5400 +26-Apr-2019 17:50:05.632 exiting +=== Log Marked @ 2019-04-26 18:11:17 +1200 [10095] === +26-Apr-2019 18:11:17.469 starting BIND 9.12.3-P1 +26-Apr-2019 18:11:17.469 running on Darwin x86_64 18.5.0 Darwin Kernel Version 18.5.0: Mon Mar 11 20:40:32 PDT 2019; root:xnu-4903.251.3~3/RELEASE_X86_64 +26-Apr-2019 18:11:17.469 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--enable-threads' '--enable-ipv6' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'CPPFLAGS=-I/opt/local/include -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk' +26-Apr-2019 18:11:17.469 running as: named -c named.conf -f -p 5400 -g +26-Apr-2019 18:11:17.469 compiled by CLANG 4.2.1 Compatible Apple LLVM 10.0.0 (clang-1000.11.45.5) +26-Apr-2019 18:11:17.469 compiled with OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +26-Apr-2019 18:11:17.469 linked to OpenSSL version: OpenSSL 1.0.2q 20 Nov 2018 +26-Apr-2019 18:11:17.469 compiled with libxml2 version: 2.9.7 +26-Apr-2019 18:11:17.469 linked to libxml2 version: 20907 +26-Apr-2019 18:11:17.470 compiled with zlib version: 1.2.11 +26-Apr-2019 18:11:17.470 linked to zlib version: 1.2.11 +26-Apr-2019 18:11:17.470 threads support is enabled +26-Apr-2019 18:11:17.470 ---------------------------------------------------- +26-Apr-2019 18:11:17.470 BIND 9 is maintained by Internet Systems Consortium, +26-Apr-2019 18:11:17.470 Inc. (ISC), a non-profit 501(c)(3) public-benefit +26-Apr-2019 18:11:17.470 corporation. Support and training for BIND 9 are +26-Apr-2019 18:11:17.470 available at https://www.isc.org/support +26-Apr-2019 18:11:17.470 ---------------------------------------------------- +26-Apr-2019 18:11:17.470 found 8 CPUs, using 8 worker threads +26-Apr-2019 18:11:17.470 using 7 UDP listeners per interface +26-Apr-2019 18:11:17.470 using up to 4096 sockets +26-Apr-2019 18:11:17.476 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +26-Apr-2019 18:11:17.476 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +26-Apr-2019 18:11:17.476 reading built-in trust anchors from file '/opt/local/etc/bind.keys' +26-Apr-2019 18:11:17.476 using default UDP/IPv4 port range: [49152, 65535] +26-Apr-2019 18:11:17.476 using default UDP/IPv6 port range: [49152, 65535] +26-Apr-2019 18:11:17.477 listening on IPv4 interface lo0, 127.0.0.1#5400 +26-Apr-2019 18:11:17.480 generating session key for dynamic DNS +26-Apr-2019 18:11:17.480 could not open file '/opt/local/var/run/named/session.key': Permission denied +26-Apr-2019 18:11:17.480 could not create /opt/local/var/run/named/session.key +26-Apr-2019 18:11:17.480 failed to generate session key for dynamic DNS: permission denied +26-Apr-2019 18:11:17.480 sizing zone task pool based on 1 zones +26-Apr-2019 18:11:17.480 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Apr-2019 18:11:17.484 set up managed keys zone for view _default, file 'managed-keys.bind' +26-Apr-2019 18:11:17.484 automatic empty zone: 10.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 16.172.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 17.172.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 18.172.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 19.172.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 20.172.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 21.172.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 22.172.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 23.172.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 24.172.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 25.172.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 26.172.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 27.172.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 28.172.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 29.172.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 30.172.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 31.172.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 168.192.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 64.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 65.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 66.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 67.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 68.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 69.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 70.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 71.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 72.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 73.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 74.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 75.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 76.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 77.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 78.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 79.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 80.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 81.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 82.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.484 automatic empty zone: 83.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 84.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 85.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 86.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 87.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 88.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 89.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 90.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 91.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 92.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 93.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 94.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 95.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 96.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 97.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 98.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 99.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 100.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 101.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 102.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 103.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 104.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 105.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 106.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 107.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 108.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 109.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 110.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 111.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 112.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 113.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 114.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 115.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 116.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 117.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 118.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 119.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 120.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.485 automatic empty zone: 121.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.486 automatic empty zone: 122.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.486 automatic empty zone: 123.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.486 automatic empty zone: 124.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.486 automatic empty zone: 125.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.486 automatic empty zone: 126.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.486 automatic empty zone: 127.100.IN-ADDR.ARPA +26-Apr-2019 18:11:17.486 automatic empty zone: 0.IN-ADDR.ARPA +26-Apr-2019 18:11:17.486 automatic empty zone: 127.IN-ADDR.ARPA +26-Apr-2019 18:11:17.486 automatic empty zone: 254.169.IN-ADDR.ARPA +26-Apr-2019 18:11:17.486 automatic empty zone: 2.0.192.IN-ADDR.ARPA +26-Apr-2019 18:11:17.486 automatic empty zone: 100.51.198.IN-ADDR.ARPA +26-Apr-2019 18:11:17.486 automatic empty zone: 113.0.203.IN-ADDR.ARPA +26-Apr-2019 18:11:17.486 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +26-Apr-2019 18:11:17.486 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Apr-2019 18:11:17.486 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +26-Apr-2019 18:11:17.486 automatic empty zone: D.F.IP6.ARPA +26-Apr-2019 18:11:17.486 automatic empty zone: 8.E.F.IP6.ARPA +26-Apr-2019 18:11:17.486 automatic empty zone: 9.E.F.IP6.ARPA +26-Apr-2019 18:11:17.486 automatic empty zone: A.E.F.IP6.ARPA +26-Apr-2019 18:11:17.486 automatic empty zone: B.E.F.IP6.ARPA +26-Apr-2019 18:11:17.486 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +26-Apr-2019 18:11:17.486 automatic empty zone: EMPTY.AS112.ARPA +26-Apr-2019 18:11:17.486 automatic empty zone: HOME.ARPA +26-Apr-2019 18:11:17.486 none:103: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +26-Apr-2019 18:11:17.489 configuring command channel from '/opt/local/etc/rndc.key' +26-Apr-2019 18:11:17.489 couldn't add command channel 127.0.0.1#953: file not found +26-Apr-2019 18:11:17.489 configuring command channel from '/opt/local/etc/rndc.key' +26-Apr-2019 18:11:17.489 couldn't add command channel ::1#953: file not found +26-Apr-2019 18:11:17.490 not using config file logging statement for logging due to -g option +26-Apr-2019 18:11:17.490 managed-keys-zone: loaded serial 0 +26-Apr-2019 18:11:17.517 zone local/IN: loaded serial 2 +26-Apr-2019 18:11:17.517 all zones loaded +26-Apr-2019 18:11:17.517 running +26-Apr-2019 18:11:22.614 shutting down +26-Apr-2019 18:11:22.614 no longer listening on 127.0.0.1#5400 +26-Apr-2019 18:11:22.633 exiting +=== Log Marked @ 2019-12-06 17:00:27 +0900 [3168] === +06-Dec-2019 17:00:27.351 starting BIND 9.14.7 (Stable Release) +06-Dec-2019 17:00:27.351 running on Darwin x86_64 19.0.0 Darwin Kernel Version 19.0.0: Thu Oct 17 16:17:15 PDT 2019; root:xnu-6153.41.3~29/RELEASE_X86_64 +06-Dec-2019 17:00:27.351 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--with-libxml2=/opt/local' '--without-libjson' '--with-python=/opt/local/bin/python3.7' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -Wl,-syslibroot,/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk -arch x86_64' 'CPPFLAGS=-I/opt/local/include -isysroot/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.14.sdk' +06-Dec-2019 17:00:27.352 running as: named -c named.conf -f -p 5400 -g +06-Dec-2019 17:00:27.352 compiled by CLANG 4.2.1 Compatible Apple LLVM 10.0.1 (clang-1001.0.46.4) +06-Dec-2019 17:00:27.352 compiled with OpenSSL version: OpenSSL 1.1.1d 10 Sep 2019 +06-Dec-2019 17:00:27.352 linked to OpenSSL version: OpenSSL 1.1.1d 10 Sep 2019 +06-Dec-2019 17:00:27.352 compiled with libxml2 version: 2.9.9 +06-Dec-2019 17:00:27.352 linked to libxml2 version: 20909 +06-Dec-2019 17:00:27.352 compiled with zlib version: 1.2.11 +06-Dec-2019 17:00:27.352 linked to zlib version: 1.2.11 +06-Dec-2019 17:00:27.352 ---------------------------------------------------- +06-Dec-2019 17:00:27.352 BIND 9 is maintained by Internet Systems Consortium, +06-Dec-2019 17:00:27.352 Inc. (ISC), a non-profit 501(c)(3) public-benefit +06-Dec-2019 17:00:27.352 corporation. Support and training for BIND 9 are +06-Dec-2019 17:00:27.352 available at https://www.isc.org/support +06-Dec-2019 17:00:27.352 ---------------------------------------------------- +06-Dec-2019 17:00:27.352 found 8 CPUs, using 8 worker threads +06-Dec-2019 17:00:27.352 using 8 UDP listeners per interface +06-Dec-2019 17:00:27.353 using up to 4096 sockets +06-Dec-2019 17:00:27.356 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +06-Dec-2019 17:00:27.356 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +06-Dec-2019 17:00:27.356 reading built-in trust anchors from file '/opt/local/etc/bind.keys' +06-Dec-2019 17:00:27.357 using default UDP/IPv4 port range: [49152, 65535] +06-Dec-2019 17:00:27.357 using default UDP/IPv6 port range: [49152, 65535] +06-Dec-2019 17:00:27.357 listening on IPv4 interface lo0, 127.0.0.1#5400 +06-Dec-2019 17:00:27.359 generating session key for dynamic DNS +06-Dec-2019 17:00:27.359 could not open file '/opt/local/var/run/named/session.key': Permission denied +06-Dec-2019 17:00:27.359 could not create /opt/local/var/run/named/session.key +06-Dec-2019 17:00:27.360 failed to generate session key for dynamic DNS: permission denied +06-Dec-2019 17:00:27.360 sizing zone task pool based on 1 zones +06-Dec-2019 17:00:27.360 none:99: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +06-Dec-2019 17:00:27.362 obtaining root key for view _default from '/opt/local/etc/bind.keys' +06-Dec-2019 17:00:27.362 set up managed keys zone for view _default, file 'managed-keys.bind' +06-Dec-2019 17:00:27.363 automatic empty zone: 10.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 16.172.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 17.172.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 18.172.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 19.172.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 20.172.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 21.172.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 22.172.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 23.172.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 24.172.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 25.172.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 26.172.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 27.172.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 28.172.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 29.172.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 30.172.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 31.172.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 168.192.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 64.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 65.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 66.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 67.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 68.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 69.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 70.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 71.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 72.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 73.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 74.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 75.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 76.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 77.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 78.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 79.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 80.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 81.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 82.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 83.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 84.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 85.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 86.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 87.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 88.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 89.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 90.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 91.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 92.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 93.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 94.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 95.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 96.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.363 automatic empty zone: 97.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 98.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 99.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 100.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 101.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 102.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 103.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 104.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 105.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 106.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 107.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 108.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 109.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 110.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 111.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 112.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 113.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 114.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 115.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 116.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 117.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 118.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 119.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 120.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 121.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 122.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 123.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 124.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 125.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 126.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 127.100.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 0.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 127.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 254.169.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 2.0.192.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 100.51.198.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 113.0.203.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: D.F.IP6.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 8.E.F.IP6.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 9.E.F.IP6.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: A.E.F.IP6.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: B.E.F.IP6.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: EMPTY.AS112.ARPA +06-Dec-2019 17:00:27.364 automatic empty zone: HOME.ARPA +06-Dec-2019 17:00:27.364 none:99: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +06-Dec-2019 17:00:27.367 configuring command channel from '/opt/local/etc/rndc.key' +06-Dec-2019 17:00:27.367 couldn't add command channel 127.0.0.1#953: file not found +06-Dec-2019 17:00:27.367 configuring command channel from '/opt/local/etc/rndc.key' +06-Dec-2019 17:00:27.367 couldn't add command channel ::1#953: file not found +06-Dec-2019 17:00:27.367 not using config file logging statement for logging due to -g option +06-Dec-2019 17:00:27.368 managed-keys-zone: loaded serial 0 +06-Dec-2019 17:00:27.393 zone local/IN: loaded serial 2 +06-Dec-2019 17:00:27.393 all zones loaded +06-Dec-2019 17:00:27.393 running +06-Dec-2019 17:00:31.941 shutting down +06-Dec-2019 17:00:31.941 no longer listening on 127.0.0.1#5400 +06-Dec-2019 17:00:31.943 resolver priming query complete +06-Dec-2019 17:00:31.948 exiting +=== Log Marked @ 2021-05-08 16:11:58 +1200 [31601] === +08-May-2021 16:11:58.150 starting BIND 9.16.10 (Stable Release) +08-May-2021 16:11:58.150 running on Darwin x86_64 20.4.0 Darwin Kernel Version 20.4.0: Fri Mar 5 01:14:14 PST 2021; root:xnu-7195.101.1~3/RELEASE_X86_64 +08-May-2021 16:11:58.150 built with '--prefix=/opt/local' '--mandir=/opt/local/share/man' '--with-openssl=/opt/local' '--without-libjson' '--with-python=/opt/local/bin/python3.8' 'CC=/usr/bin/clang' 'CFLAGS=-pipe -Os -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX11.0.sdk -arch x86_64' 'LDFLAGS=-L/opt/local/lib -Wl,-headerpad_max_install_names -Wl,-syslibroot,/Library/Developer/CommandLineTools/SDKs/MacOSX11.0.sdk -arch x86_64' 'CPPFLAGS=-I/opt/local/include -isysroot/Library/Developer/CommandLineTools/SDKs/MacOSX11.0.sdk' +08-May-2021 16:11:58.150 running as: named -c named.conf -f -p 5400 -g +08-May-2021 16:11:58.150 compiled by CLANG Apple LLVM 12.0.0 (clang-1200.0.32.27) +08-May-2021 16:11:58.150 compiled with OpenSSL version: OpenSSL 1.1.1i 8 Dec 2020 +08-May-2021 16:11:58.150 linked to OpenSSL version: OpenSSL 1.1.1k 25 Mar 2021 +08-May-2021 16:11:58.150 compiled with libxml2 version: 2.9.10 +08-May-2021 16:11:58.151 linked to libxml2 version: 20910 +08-May-2021 16:11:58.151 compiled with zlib version: 1.2.11 +08-May-2021 16:11:58.151 linked to zlib version: 1.2.11 +08-May-2021 16:11:58.151 ---------------------------------------------------- +08-May-2021 16:11:58.151 BIND 9 is maintained by Internet Systems Consortium, +08-May-2021 16:11:58.151 Inc. (ISC), a non-profit 501(c)(3) public-benefit +08-May-2021 16:11:58.151 corporation. Support and training for BIND 9 are +08-May-2021 16:11:58.151 available at https://www.isc.org/support +08-May-2021 16:11:58.151 ---------------------------------------------------- +08-May-2021 16:11:58.151 found 8 CPUs, using 8 worker threads +08-May-2021 16:11:58.151 using 8 UDP listeners per interface +08-May-2021 16:11:58.154 using up to 21000 sockets +08-May-2021 16:11:58.157 loading configuration from '/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +08-May-2021 16:11:58.157 /Users/samuel/Documents/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +08-May-2021 16:11:58.158 reading built-in trust anchors from file '/opt/local/etc/bind.keys' +08-May-2021 16:11:58.158 using default UDP/IPv4 port range: [49152, 65535] +08-May-2021 16:11:58.158 using default UDP/IPv6 port range: [49152, 65535] +08-May-2021 16:11:58.159 listening on IPv4 interface lo0, 127.0.0.1#5400 +08-May-2021 16:11:58.161 generating session key for dynamic DNS +08-May-2021 16:11:58.161 could not open file '/opt/local/var/run/named/session.key': Permission denied +08-May-2021 16:11:58.161 could not create /opt/local/var/run/named/session.key +08-May-2021 16:11:58.161 failed to generate session key for dynamic DNS: permission denied +08-May-2021 16:11:58.162 sizing zone task pool based on 1 zones +08-May-2021 16:11:58.162 none:98: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +08-May-2021 16:11:58.184 obtaining root key for view _default from '/opt/local/etc/bind.keys' +08-May-2021 16:11:58.185 set up managed keys zone for view _default, file 'managed-keys.bind' +08-May-2021 16:11:58.185 automatic empty zone: 10.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 16.172.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 17.172.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 18.172.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 19.172.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 20.172.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 21.172.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 22.172.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 23.172.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 24.172.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 25.172.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 26.172.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 27.172.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 28.172.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 29.172.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 30.172.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 31.172.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 168.192.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 64.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 65.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 66.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 67.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 68.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 69.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 70.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 71.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 72.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 73.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 74.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 75.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 76.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 77.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 78.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 79.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 80.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 81.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 82.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 83.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 84.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 85.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 86.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 87.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 88.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 89.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 90.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 91.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 92.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 93.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 94.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 95.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 96.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 97.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 98.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 99.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 100.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 101.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 102.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 103.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 104.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 105.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 106.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 107.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 108.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 109.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 110.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 111.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 112.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 113.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 114.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 115.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 116.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 117.100.IN-ADDR.ARPA +08-May-2021 16:11:58.185 automatic empty zone: 118.100.IN-ADDR.ARPA +08-May-2021 16:11:58.186 automatic empty zone: 119.100.IN-ADDR.ARPA +08-May-2021 16:11:58.186 automatic empty zone: 120.100.IN-ADDR.ARPA +08-May-2021 16:11:58.186 automatic empty zone: 121.100.IN-ADDR.ARPA +08-May-2021 16:11:58.186 automatic empty zone: 122.100.IN-ADDR.ARPA +08-May-2021 16:11:58.186 automatic empty zone: 123.100.IN-ADDR.ARPA +08-May-2021 16:11:58.186 automatic empty zone: 124.100.IN-ADDR.ARPA +08-May-2021 16:11:58.186 automatic empty zone: 125.100.IN-ADDR.ARPA +08-May-2021 16:11:58.186 automatic empty zone: 126.100.IN-ADDR.ARPA +08-May-2021 16:11:58.186 automatic empty zone: 127.100.IN-ADDR.ARPA +08-May-2021 16:11:58.186 automatic empty zone: 0.IN-ADDR.ARPA +08-May-2021 16:11:58.186 automatic empty zone: 127.IN-ADDR.ARPA +08-May-2021 16:11:58.186 automatic empty zone: 254.169.IN-ADDR.ARPA +08-May-2021 16:11:58.186 automatic empty zone: 2.0.192.IN-ADDR.ARPA +08-May-2021 16:11:58.186 automatic empty zone: 100.51.198.IN-ADDR.ARPA +08-May-2021 16:11:58.186 automatic empty zone: 113.0.203.IN-ADDR.ARPA +08-May-2021 16:11:58.186 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +08-May-2021 16:11:58.186 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +08-May-2021 16:11:58.186 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +08-May-2021 16:11:58.186 automatic empty zone: D.F.IP6.ARPA +08-May-2021 16:11:58.186 automatic empty zone: 8.E.F.IP6.ARPA +08-May-2021 16:11:58.186 automatic empty zone: 9.E.F.IP6.ARPA +08-May-2021 16:11:58.186 automatic empty zone: A.E.F.IP6.ARPA +08-May-2021 16:11:58.186 automatic empty zone: B.E.F.IP6.ARPA +08-May-2021 16:11:58.186 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +08-May-2021 16:11:58.186 automatic empty zone: EMPTY.AS112.ARPA +08-May-2021 16:11:58.186 automatic empty zone: HOME.ARPA +08-May-2021 16:11:58.186 none:98: 'max-cache-size 90%' - setting to 14745MB (out of 16384MB) +08-May-2021 16:11:58.207 configuring command channel from '/opt/local/etc/rndc.key' +08-May-2021 16:11:58.208 couldn't add command channel 127.0.0.1#953: file not found +08-May-2021 16:11:58.208 configuring command channel from '/opt/local/etc/rndc.key' +08-May-2021 16:11:58.208 couldn't add command channel ::1#953: file not found +08-May-2021 16:11:58.208 not using config file logging statement for logging due to -g option +08-May-2021 16:11:58.209 managed-keys-zone: loaded serial 1 +08-May-2021 16:11:58.233 zone local/IN: loaded serial 2 +08-May-2021 16:11:58.233 all zones loaded +08-May-2021 16:11:58.233 running +08-May-2021 16:11:58.333 managed-keys-zone: Key 20326 for zone . is now trusted (initializing key verified) +08-May-2021 16:11:58.334 resolver priming query complete +08-May-2021 16:11:58.373 no longer listening on 127.0.0.1#5400 +08-May-2021 16:11:58.374 shutting down +08-May-2021 16:11:58.394 exiting +=== Log Marked @ 2024-01-02 12:45:09 +1300 [9585] === +02-Jan-2024 12:45:09.140 starting BIND 9.18.21 (Extended Support Version) +02-Jan-2024 12:45:09.140 running on Linux x86_64 6.6.8-arch1-1 #1 SMP PREEMPT_DYNAMIC Thu, 21 Dec 2023 19:01:01 +0000 +02-Jan-2024 12:45:09.140 built with '--prefix=/usr' '--sysconfdir=/etc' '--sbindir=/usr/bin' '--localstatedir=/var' '--disable-static' '--enable-fixed-rrset' '--enable-full-report' '--with-maxminddb' '--with-openssl' '--with-libidn2' '--with-json-c' '--with-libxml2' '--with-lmdb' 'CFLAGS=-march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -g -ffile-prefix-map=/build/bind/src=/usr/src/debug/bind -flto=auto -DDIG_SIGCHASE' 'LDFLAGS=-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -flto=auto' +02-Jan-2024 12:45:09.140 running as: named -c named.conf -f -p 5400 -g +02-Jan-2024 12:45:09.140 compiled by GCC 13.2.1 20230801 +02-Jan-2024 12:45:09.140 compiled with OpenSSL version: OpenSSL 3.2.0 23 Nov 2023 +02-Jan-2024 12:45:09.140 linked to OpenSSL version: OpenSSL 3.2.0 23 Nov 2023 +02-Jan-2024 12:45:09.140 compiled with libuv version: 1.47.0 +02-Jan-2024 12:45:09.140 linked to libuv version: 1.47.0 +02-Jan-2024 12:45:09.140 compiled with libxml2 version: 2.12.3 +02-Jan-2024 12:45:09.140 linked to libxml2 version: 21203-GITv2.12.3 +02-Jan-2024 12:45:09.140 compiled with json-c version: 0.17 +02-Jan-2024 12:45:09.140 linked to json-c version: 0.17 +02-Jan-2024 12:45:09.140 compiled with zlib version: 1.3 +02-Jan-2024 12:45:09.140 linked to zlib version: 1.3 +02-Jan-2024 12:45:09.140 ---------------------------------------------------- +02-Jan-2024 12:45:09.140 BIND 9 is maintained by Internet Systems Consortium, +02-Jan-2024 12:45:09.140 Inc. (ISC), a non-profit 501(c)(3) public-benefit +02-Jan-2024 12:45:09.140 corporation. Support and training for BIND 9 are +02-Jan-2024 12:45:09.140 available at https://www.isc.org/support +02-Jan-2024 12:45:09.140 ---------------------------------------------------- +02-Jan-2024 12:45:09.144 found 32 CPUs, using 32 worker threads +02-Jan-2024 12:45:09.144 using 32 UDP listeners per interface +02-Jan-2024 12:45:09.240 DNSSEC algorithms: RSASHA1 NSEC3RSASHA1 RSASHA256 RSASHA512 ECDSAP256SHA256 ECDSAP384SHA384 ED25519 ED448 +02-Jan-2024 12:45:09.240 DS algorithms: SHA-1 SHA-256 SHA-384 +02-Jan-2024 12:45:09.240 HMAC algorithms: HMAC-MD5 HMAC-SHA1 HMAC-SHA224 HMAC-SHA256 HMAC-SHA384 HMAC-SHA512 +02-Jan-2024 12:45:09.240 TKEY mode 2 support (Diffie-Hellman): yes +02-Jan-2024 12:45:09.240 TKEY mode 3 support (GSS-API): yes +02-Jan-2024 12:45:09.240 config.c: option 'trust-anchor-telemetry' is experimental and subject to change in the future +02-Jan-2024 12:45:09.244 loading configuration from '/home/samuel/Projects/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +02-Jan-2024 12:45:09.244 /home/samuel/Projects/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +02-Jan-2024 12:45:09.244 reading built-in trust anchors from file '/etc/bind.keys' +02-Jan-2024 12:45:09.244 looking for GeoIP2 databases in '/usr/share/GeoIP' +02-Jan-2024 12:45:09.244 using default UDP/IPv4 port range: [32768, 60999] +02-Jan-2024 12:45:09.244 using default UDP/IPv6 port range: [32768, 60999] +02-Jan-2024 12:45:09.244 listening on IPv4 interface lo, 127.0.0.1#5400 +02-Jan-2024 12:45:09.294 generating session key for dynamic DNS +02-Jan-2024 12:45:09.294 could not open file '/var/run/named/session.key': Permission denied +02-Jan-2024 12:45:09.294 could not create /var/run/named/session.key +02-Jan-2024 12:45:09.294 failed to generate session key for dynamic DNS: permission denied +02-Jan-2024 12:45:09.294 sizing zone task pool based on 1 zones +02-Jan-2024 12:45:09.294 none:99: 'max-cache-size 90%' - setting to 57085MB (out of 63427MB) +02-Jan-2024 12:45:09.294 obtaining root key for view _default from '/etc/bind.keys' +02-Jan-2024 12:45:09.294 set up managed keys zone for view _default, file 'managed-keys.bind' +02-Jan-2024 12:45:09.294 automatic empty zone: 10.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 16.172.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 17.172.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 18.172.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 19.172.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 20.172.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 21.172.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 22.172.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 23.172.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 24.172.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 25.172.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 26.172.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 27.172.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 28.172.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 29.172.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 30.172.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 31.172.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 168.192.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 64.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 65.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 66.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 67.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 68.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 69.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 70.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 71.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 72.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 73.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 74.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 75.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 76.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 77.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 78.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 79.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 80.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 81.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 82.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 83.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 84.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 85.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 86.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 87.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 88.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 89.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 90.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 91.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 92.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 93.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 94.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 95.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 96.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 97.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 98.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 99.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 100.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 101.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 102.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 103.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 104.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 105.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 106.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 107.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 108.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 109.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 110.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 111.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 112.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 113.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 114.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 115.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 116.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 117.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 118.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 119.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 120.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 121.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 122.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 123.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 124.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 125.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 126.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 127.100.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 0.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 127.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 254.169.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 2.0.192.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 100.51.198.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 113.0.203.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: D.F.IP6.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 8.E.F.IP6.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 9.E.F.IP6.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: A.E.F.IP6.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: B.E.F.IP6.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: EMPTY.AS112.ARPA +02-Jan-2024 12:45:09.294 automatic empty zone: HOME.ARPA +02-Jan-2024 12:45:09.294 configuring command channel from '/etc/rndc.key' +02-Jan-2024 12:45:09.294 couldn't add command channel 127.0.0.1#953: permission denied +02-Jan-2024 12:45:09.294 configuring command channel from '/etc/rndc.key' +02-Jan-2024 12:45:09.297 couldn't add command channel ::1#953: permission denied +02-Jan-2024 12:45:09.297 not using config file logging statement for logging due to -g option +02-Jan-2024 12:45:09.310 managed-keys-zone: loaded serial 2 +02-Jan-2024 12:45:09.320 zone local/IN: loaded serial 2 +02-Jan-2024 12:45:09.320 all zones loaded +02-Jan-2024 12:45:09.320 running +02-Jan-2024 12:45:09.354 no longer listening on 127.0.0.1#5400 +02-Jan-2024 12:45:09.357 shutting down +02-Jan-2024 12:45:09.357 resolver priming query complete: operation canceled +02-Jan-2024 12:45:09.357 automatic interface scanning terminated: end of file +02-Jan-2024 12:45:09.370 exiting +=== Log Marked @ 2024-01-02 12:45:53 +1300 [10352] === +02-Jan-2024 12:45:53.087 starting BIND 9.18.21 (Extended Support Version) +02-Jan-2024 12:45:53.087 running on Linux x86_64 6.6.8-arch1-1 #1 SMP PREEMPT_DYNAMIC Thu, 21 Dec 2023 19:01:01 +0000 +02-Jan-2024 12:45:53.087 built with '--prefix=/usr' '--sysconfdir=/etc' '--sbindir=/usr/bin' '--localstatedir=/var' '--disable-static' '--enable-fixed-rrset' '--enable-full-report' '--with-maxminddb' '--with-openssl' '--with-libidn2' '--with-json-c' '--with-libxml2' '--with-lmdb' 'CFLAGS=-march=x86-64 -mtune=generic -O2 -pipe -fno-plt -fexceptions -Wp,-D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security -fstack-clash-protection -fcf-protection -g -ffile-prefix-map=/build/bind/src=/usr/src/debug/bind -flto=auto -DDIG_SIGCHASE' 'LDFLAGS=-Wl,-O1,--sort-common,--as-needed,-z,relro,-z,now -flto=auto' +02-Jan-2024 12:45:53.087 running as: named -c named.conf -f -p 5400 -g +02-Jan-2024 12:45:53.087 compiled by GCC 13.2.1 20230801 +02-Jan-2024 12:45:53.087 compiled with OpenSSL version: OpenSSL 3.2.0 23 Nov 2023 +02-Jan-2024 12:45:53.087 linked to OpenSSL version: OpenSSL 3.2.0 23 Nov 2023 +02-Jan-2024 12:45:53.087 compiled with libuv version: 1.47.0 +02-Jan-2024 12:45:53.087 linked to libuv version: 1.47.0 +02-Jan-2024 12:45:53.087 compiled with libxml2 version: 2.12.3 +02-Jan-2024 12:45:53.087 linked to libxml2 version: 21203-GITv2.12.3 +02-Jan-2024 12:45:53.087 compiled with json-c version: 0.17 +02-Jan-2024 12:45:53.087 linked to json-c version: 0.17 +02-Jan-2024 12:45:53.087 compiled with zlib version: 1.3 +02-Jan-2024 12:45:53.087 linked to zlib version: 1.3 +02-Jan-2024 12:45:53.087 ---------------------------------------------------- +02-Jan-2024 12:45:53.087 BIND 9 is maintained by Internet Systems Consortium, +02-Jan-2024 12:45:53.087 Inc. (ISC), a non-profit 501(c)(3) public-benefit +02-Jan-2024 12:45:53.087 corporation. Support and training for BIND 9 are +02-Jan-2024 12:45:53.087 available at https://www.isc.org/support +02-Jan-2024 12:45:53.087 ---------------------------------------------------- +02-Jan-2024 12:45:53.087 found 32 CPUs, using 32 worker threads +02-Jan-2024 12:45:53.087 using 32 UDP listeners per interface +02-Jan-2024 12:45:53.154 DNSSEC algorithms: RSASHA1 NSEC3RSASHA1 RSASHA256 RSASHA512 ECDSAP256SHA256 ECDSAP384SHA384 ED25519 ED448 +02-Jan-2024 12:45:53.154 DS algorithms: SHA-1 SHA-256 SHA-384 +02-Jan-2024 12:45:53.154 HMAC algorithms: HMAC-MD5 HMAC-SHA1 HMAC-SHA224 HMAC-SHA256 HMAC-SHA384 HMAC-SHA512 +02-Jan-2024 12:45:53.154 TKEY mode 2 support (Diffie-Hellman): yes +02-Jan-2024 12:45:53.154 TKEY mode 3 support (GSS-API): yes +02-Jan-2024 12:45:53.157 config.c: option 'trust-anchor-telemetry' is experimental and subject to change in the future +02-Jan-2024 12:45:53.157 loading configuration from '/home/samuel/Projects/socketry/async-dns/spec/async/dns/server/bind9/named.conf' +02-Jan-2024 12:45:53.157 /home/samuel/Projects/socketry/async-dns/spec/async/dns/server/bind9/named.conf:3: option 'directory' contains relative path './' +02-Jan-2024 12:45:53.157 reading built-in trust anchors from file '/etc/bind.keys' +02-Jan-2024 12:45:53.157 looking for GeoIP2 databases in '/usr/share/GeoIP' +02-Jan-2024 12:45:53.157 using default UDP/IPv4 port range: [32768, 60999] +02-Jan-2024 12:45:53.157 using default UDP/IPv6 port range: [32768, 60999] +02-Jan-2024 12:45:53.157 listening on IPv4 interface lo, 127.0.0.1#5400 +02-Jan-2024 12:45:53.184 generating session key for dynamic DNS +02-Jan-2024 12:45:53.184 could not open file '/var/run/named/session.key': Permission denied +02-Jan-2024 12:45:53.184 could not create /var/run/named/session.key +02-Jan-2024 12:45:53.184 failed to generate session key for dynamic DNS: permission denied +02-Jan-2024 12:45:53.184 sizing zone task pool based on 1 zones +02-Jan-2024 12:45:53.184 none:99: 'max-cache-size 90%' - setting to 57085MB (out of 63427MB) +02-Jan-2024 12:45:53.184 obtaining root key for view _default from '/etc/bind.keys' +02-Jan-2024 12:45:53.184 set up managed keys zone for view _default, file 'managed-keys.bind' +02-Jan-2024 12:45:53.184 automatic empty zone: 10.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 16.172.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 17.172.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 18.172.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 19.172.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 20.172.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 21.172.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 22.172.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 23.172.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 24.172.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 25.172.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 26.172.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 27.172.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 28.172.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 29.172.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 30.172.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 31.172.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 168.192.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 64.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 65.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 66.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 67.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 68.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 69.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 70.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 71.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 72.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 73.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 74.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 75.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 76.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 77.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 78.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 79.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 80.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 81.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 82.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 83.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 84.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 85.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 86.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 87.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 88.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 89.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 90.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 91.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 92.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 93.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 94.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 95.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 96.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 97.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 98.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 99.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 100.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 101.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 102.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 103.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 104.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 105.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 106.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 107.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 108.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 109.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 110.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 111.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 112.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 113.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 114.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 115.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 116.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 117.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 118.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 119.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 120.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 121.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 122.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 123.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 124.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 125.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 126.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 127.100.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 0.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 127.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 254.169.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 2.0.192.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 100.51.198.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 113.0.203.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 255.255.255.255.IN-ADDR.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.IP6.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: D.F.IP6.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 8.E.F.IP6.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 9.E.F.IP6.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: A.E.F.IP6.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: B.E.F.IP6.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: 8.B.D.0.1.0.0.2.IP6.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: EMPTY.AS112.ARPA +02-Jan-2024 12:45:53.184 automatic empty zone: HOME.ARPA +02-Jan-2024 12:45:53.184 configuring command channel from '/etc/rndc.key' +02-Jan-2024 12:45:53.184 couldn't add command channel 127.0.0.1#953: permission denied +02-Jan-2024 12:45:53.184 configuring command channel from '/etc/rndc.key' +02-Jan-2024 12:45:53.184 couldn't add command channel ::1#953: permission denied +02-Jan-2024 12:45:53.184 not using config file logging statement for logging due to -g option +02-Jan-2024 12:45:53.184 managed-keys-zone: loaded serial 2 +02-Jan-2024 12:45:53.197 zone local/IN: loaded serial 2 +02-Jan-2024 12:45:53.197 all zones loaded +02-Jan-2024 12:45:53.197 running +02-Jan-2024 12:45:53.237 managed-keys-zone: Key 20326 for zone . is now trusted (acceptance timer complete) +02-Jan-2024 12:45:53.237 resolver priming query complete: success +02-Jan-2024 12:45:53.304 no longer listening on 127.0.0.1#5400 +02-Jan-2024 12:45:53.307 shutting down +02-Jan-2024 12:45:53.307 automatic interface scanning terminated: end of file +02-Jan-2024 12:45:53.324 exiting diff --git a/benchmark/server/bind9/managed-keys.bind.jnl b/benchmark/server/bind9/managed-keys.bind.jnl new file mode 100644 index 0000000000000000000000000000000000000000..3b68860a2d37a282c115a6d3b76fc6cdd83e82b0 GIT binary patch literal 2237 zcmcC^^7M02@bPz72(#2P;$naRCJ@EUz`(H=NLxU}@R4Bkj6f~5Kvh5vn=C%nqjG~O z1Q>IHt^vk17y#ptK@k{#3?K#rgBX~^Mqns{Xh2cQD9`Z!FT^B9k=R#UvthD~jLaO& zj0}ux{%_&jbJFsM;rE44-*kLmIw|x`Fbnq+Bc|dBOU`xX=1*w*eDq=Y?|*`g$*bN} zeRR`tpAzYEP#mnYjZL3bHvA1BFwf9J4(CdDM!pJvAFBu&_7+h2NW&0Y9|AHC%iW$=1uB~1g z%B=nE=LfTWn^rB|T;7}a`uDQ^^A=9r=e6O~tI~P;_Yz?hQBHX(YR$_2Z65 zH<x@3*c_j#3CTN$6NSa>RM)~D06 z -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. +# Released under the MIT License. +# Copyright, 2015-2024, by Samuel Williams. require 'async/dns' require 'benchmark' diff --git a/spec/async/dns/server_performance_spec.rb b/benchmark/server_performance.rb similarity index 68% rename from spec/async/dns/server_performance_spec.rb rename to benchmark/server_performance.rb index 4ccdbf0..9734d2c 100755 --- a/spec/async/dns/server_performance_spec.rb +++ b/benchmark/server_performance.rb @@ -1,24 +1,8 @@ #!/usr/bin/env ruby +# frozen_string_literal: true -# Copyright, 2012, by Samuel G. D. Williams. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. +# Released under the MIT License. +# Copyright, 2015-2024, by Samuel Williams. require 'async/dns' require 'benchmark' @@ -47,7 +31,7 @@ def process(name, resource_class, transaction) RSpec.describe MillionServer do # include_context "profile" - include_context Async::RSpec::Reactor + include Sus::Fixtures::Async::ReactorContext let(:interfaces) {[[:udp, '127.0.0.1', 8899]]} let(:server) {MillionServer.new(interfaces)} @@ -65,7 +49,7 @@ def process(name, resource_class, transaction) end RSpec.describe Async::DNS::Server do - include_context Async::RSpec::Reactor + include Sus::Fixtures::Async::ReactorContext context 'benchmark' do class AsyncServerDaemon < Process::Daemon @@ -147,7 +131,7 @@ def self.named_executable resolved = @domains.collect{|domain| resolver.addresses_for(domain)} - expect(resolved).to_not include(nil) + expect(resolved).not.to include(nil) end end end diff --git a/config/sus.rb b/config/sus.rb new file mode 100644 index 0000000..e32bedc --- /dev/null +++ b/config/sus.rb @@ -0,0 +1,2 @@ +require 'covered/sus' +include Covered::Sus diff --git a/examples/cloudflare.rb b/examples/cloudflare.rb index 751f5fc..f06110c 100644 --- a/examples/cloudflare.rb +++ b/examples/cloudflare.rb @@ -1,4 +1,8 @@ #!/usr/bin/env ruby +# frozen_string_literal: true + +# Released under the MIT License. +# Copyright, 2018-2024, by Samuel Williams. gem 'async' gem 'async-http' diff --git a/gems.rb b/gems.rb index df9802e..4278cbb 100644 --- a/gems.rb +++ b/gems.rb @@ -1,5 +1,9 @@ # frozen_string_literal: true +# Released under the MIT License. +# Copyright, 2012-2013, by Tony Arcieri. +# Copyright, 2015-2024, by Samuel Williams. + source "https://rubygems.org" # Specify your gem's dependencies in protocol-http1.gemspec @@ -13,9 +17,12 @@ end group :test do - gem 'ruby-prof', platforms: [:mri] - gem "benchmark-ips" + gem "sus" + gem "covered" + gem "decode" + + gem "sus-fixtures-async" - # For comparisons: - gem "nokogiri" + gem "bake-test" + gem "bake-test-external" end diff --git a/lib/async/dns.rb b/lib/async/dns.rb index b6c5fd8..25747d8 100644 --- a/lib/async/dns.rb +++ b/lib/async/dns.rb @@ -1,22 +1,8 @@ -# Copyright, 2009, 2012, by Samuel G. D. Williams. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. +# frozen_string_literal: true + +# Released under the MIT License. +# Copyright, 2012, by Tony Arcieri. +# Copyright, 2015-2024, by Samuel Williams. require 'async' require 'async/io/tcp_socket' diff --git a/lib/async/dns/chunked.rb b/lib/async/dns/chunked.rb index 5ac1106..699e8cf 100644 --- a/lib/async/dns/chunked.rb +++ b/lib/async/dns/chunked.rb @@ -1,22 +1,7 @@ -# Copyright, 2009, 2012, by Samuel G. D. Williams. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. +# frozen_string_literal: true + +# Released under the MIT License. +# Copyright, 2015-2024, by Samuel Williams. module Async::DNS # Produces an array of arrays of binary data with each sub-array a maximum of chunk_size bytes. diff --git a/lib/async/dns/extensions/resolv.rb b/lib/async/dns/extensions/resolv.rb index 6ffa757..c3dae7d 100644 --- a/lib/async/dns/extensions/resolv.rb +++ b/lib/async/dns/extensions/resolv.rb @@ -1,22 +1,7 @@ -# Copyright, 2009, 2012, by Samuel G. D. Williams. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. +# frozen_string_literal: true + +# Released under the MIT License. +# Copyright, 2015-2024, by Samuel Williams. require 'resolv' @@ -132,4 +117,4 @@ def self.create(arg) end end end -end \ No newline at end of file +end diff --git a/lib/async/dns/extensions/string.rb b/lib/async/dns/extensions/string.rb index f736507..16a68e1 100644 --- a/lib/async/dns/extensions/string.rb +++ b/lib/async/dns/extensions/string.rb @@ -1,22 +1,7 @@ -# Copyright, 2009, 2012, by Samuel G. D. Williams. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. +# frozen_string_literal: true + +# Released under the MIT License. +# Copyright, 2015-2024, by Samuel Williams. require_relative '../chunked' diff --git a/lib/async/dns/handler.rb b/lib/async/dns/handler.rb index 3348013..73d0cd8 100644 --- a/lib/async/dns/handler.rb +++ b/lib/async/dns/handler.rb @@ -1,22 +1,8 @@ -# Copyright, 2009, 2012, by Samuel G. D. Williams. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. +# frozen_string_literal: true + +# Released under the MIT License. +# Copyright, 2015-2024, by Samuel Williams. +# Copyright, 2021, by Mike Perham. require 'async/io/stream' diff --git a/lib/async/dns/message.rb b/lib/async/dns/message.rb index 5e12e90..b6dfaff 100644 --- a/lib/async/dns/message.rb +++ b/lib/async/dns/message.rb @@ -1,22 +1,7 @@ -# Copyright, 2009, 2012, by Samuel G. D. Williams. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. +# frozen_string_literal: true + +# Released under the MIT License. +# Copyright, 2015-2024, by Samuel Williams. require 'stringio' require 'resolv' diff --git a/lib/async/dns/replace.rb b/lib/async/dns/replace.rb index cc438b6..557cb5f 100644 --- a/lib/async/dns/replace.rb +++ b/lib/async/dns/replace.rb @@ -1,22 +1,8 @@ -# Copyright, 2015, by Samuel G. D. Williams. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. +# frozen_string_literal: true + +# Released under the MIT License. +# Copyright, 2015-2024, by Samuel Williams. +# Copyright, 2017, by Olle Jonsson. require 'resolv' require 'resolv-replace' diff --git a/lib/async/dns/resolver.rb b/lib/async/dns/resolver.rb index 276f82c..f650e9b 100644 --- a/lib/async/dns/resolver.rb +++ b/lib/async/dns/resolver.rb @@ -1,22 +1,9 @@ -# Copyright, 2012, by Samuel G. D. Williams. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. +# frozen_string_literal: true + +# Released under the MIT License. +# Copyright, 2015-2024, by Samuel Williams. +# Copyright, 2017, by Olle Jonsson. +# Copyright, 2024, by Sean Dilda. require_relative 'handler' require_relative 'system' diff --git a/lib/async/dns/server.rb b/lib/async/dns/server.rb index e7267ba..1933fbb 100644 --- a/lib/async/dns/server.rb +++ b/lib/async/dns/server.rb @@ -1,22 +1,11 @@ -# Copyright, 2009, 2012, by Samuel G. D. Williams. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. +# frozen_string_literal: true + +# Released under the MIT License. +# Copyright, 2012-2014, by Tony Arcieri. +# Copyright, 2013, by Greg Thornton. +# Copyright, 2014, by Hendrik Beskow. +# Copyright, 2015-2024, by Samuel Williams. +# Copyright, 2023, by Hal Brodigan. require 'async' require 'async/io' diff --git a/lib/async/dns/system.rb b/lib/async/dns/system.rb index f104225..1212f27 100644 --- a/lib/async/dns/system.rb +++ b/lib/async/dns/system.rb @@ -1,22 +1,7 @@ -# Copyright, 2009, 2012, by Samuel G. D. Williams. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. +# frozen_string_literal: true + +# Released under the MIT License. +# Copyright, 2015-2024, by Samuel Williams. begin require 'win32/resolv' diff --git a/lib/async/dns/transaction.rb b/lib/async/dns/transaction.rb index 290b4fc..f7b1a73 100644 --- a/lib/async/dns/transaction.rb +++ b/lib/async/dns/transaction.rb @@ -1,22 +1,8 @@ -# Copyright, 2009, 2012, by Samuel G. D. Williams. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. +# frozen_string_literal: true + +# Released under the MIT License. +# Copyright, 2015-2024, by Samuel Williams. +# Copyright, 2023, by Hal Brodigan. module Async::DNS diff --git a/lib/async/dns/transport.rb b/lib/async/dns/transport.rb index 0f322c8..b0450e1 100644 --- a/lib/async/dns/transport.rb +++ b/lib/async/dns/transport.rb @@ -1,22 +1,7 @@ -# Copyright, 2009, 2012, by Samuel G. D. Williams. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. +# frozen_string_literal: true + +# Released under the MIT License. +# Copyright, 2015-2024, by Samuel Williams. require 'stringio' require 'ipaddr' diff --git a/lib/async/dns/version.rb b/lib/async/dns/version.rb index cef8afa..0ea34ea 100644 --- a/lib/async/dns/version.rb +++ b/lib/async/dns/version.rb @@ -1,22 +1,8 @@ -# Copyright, 2009, 2012, by Samuel G. D. Williams. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. +# frozen_string_literal: true + +# Released under the MIT License. +# Copyright, 2012-2013, by Tony Arcieri. +# Copyright, 2015-2024, by Samuel Williams. module Async module DNS diff --git a/license.md b/license.md new file mode 100644 index 0000000..dbdeccc --- /dev/null +++ b/license.md @@ -0,0 +1,29 @@ +# MIT License + +Copyright, 2012-2017, by Tony Arcieri. +Copyright, 2013, by Greg Thornton. +Copyright, 2014, by Hendrik Beskow. +Copyright, 2015-2024, by Samuel Williams. +Copyright, 2017-2020, by Olle Jonsson. +Copyright, 2019, by Stefan Wrobel. +Copyright, 2021, by Mike Perham. +Copyright, 2023, by Hal Brodigan. +Copyright, 2024, by Sean Dilda. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/readme.md similarity index 73% rename from README.md rename to readme.md index 9ad0ce5..0575311 100644 --- a/README.md +++ b/readme.md @@ -2,7 +2,7 @@ Async::DNS is a high-performance DNS client resolver and server which can be easily integrated into other projects or used as a stand-alone daemon. It was forked from [RubyDNS](https://github.com/ioquatix/rubydns) which is now implemented in terms of this library. -[![Development Status](https://github.com/socketry/async-dns/workflows/Development/badge.svg)](https://github.com/socketry/async-dns/actions?workflow=Development) +[![Development Status](https://github.com/socketry/async-dns/workflows/Test/badge.svg)](https://github.com/socketry/async-dns/actions?workflow=Test) ## Installation @@ -122,37 +122,18 @@ DNSSEC is currently not supported and is [unlikely to be supported in the future ## Contributing -1. Fork it -2. Create your feature branch (`git checkout -b my-new-feature`) -3. Commit your changes (`git commit -am 'Add some feature'`) -4. Push to the branch (`git push origin my-new-feature`) -5. Create new Pull Request +We welcome contributions to this project. -### Desired Features +1. Fork it. +2. Create your feature branch (`git checkout -b my-new-feature`). +3. Commit your changes (`git commit -am 'Add some feature'`). +4. Push to the branch (`git push origin my-new-feature`). +5. Create new Pull Request. - - Support for more features of DNS such as zone transfer. - - Some kind of system level integration, e.g. registering a DNS server with the currently running system resolver. +### Developer Certificate of Origin -## License +In order to protect users of this project, we require all contributors to comply with the [Developer Certificate of Origin](https://developercertificate.org/). This ensures that all contributions are properly licensed and attributed. -Released under the MIT license. +### Community Guidelines -Copyright, 2015, by [Samuel G. D. Williams](http://www.codeotaku.com/samuel-williams). - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. +This project is best served by a collaborative and respectful environment. Treat each other professionally, respect differing viewpoints, and engage constructively. Harassment, discrimination, or harmful behavior is not tolerated. Communicate clearly, listen actively, and support one another. If any issues arise, please inform the project maintainers. diff --git a/release.cert b/release.cert index f036666..d98e595 100644 --- a/release.cert +++ b/release.cert @@ -1,27 +1,28 @@ -----BEGIN CERTIFICATE----- -MIIEhDCCAuygAwIBAgIBATANBgkqhkiG9w0BAQsFADA3MTUwMwYDVQQDDCxzYW11 -ZWwud2lsbGlhbXMvREM9b3Jpb250cmFuc2Zlci9EQz1jby9EQz1uejAeFw0yMTA4 -MTYwNjMzNDRaFw0yMjA4MTYwNjMzNDRaMDcxNTAzBgNVBAMMLHNhbXVlbC53aWxs -aWFtcy9EQz1vcmlvbnRyYW5zZmVyL0RDPWNvL0RDPW56MIIBojANBgkqhkiG9w0B -AQEFAAOCAY8AMIIBigKCAYEAyXLSS/cw+fXJ5e7hi+U/TeChPWeYdwJojDsFY1xr -xvtqbTTL8gbLHz5LW3QD2nfwCv3qTlw0qI3Ie7a9VMJMbSvgVEGEfQirqIgJXWMj -eNMDgKsMJtC7u/43abRKx7TCURW3iWyR19NRngsJJmaR51yGGGm2Kfsr+JtKKLtL -L188Wm3f13KAx7QJU8qyuBnj1/gWem076hzdA7xi1DbrZrch9GCRz62xymJlrJHn -9iZEZ7AxrS7vokhMlzSr/XMUihx/8aFKtk+tMLClqxZSmBWIErWdicCGTULXCBNb -E/mljo4zEVKhlTWpJklMIhr55ZRrSarKFuW7en0+tpJrfsYiAmXMJNi4XAYJH7uL -rgJuJwSaa/dMz+VmUoo7VKtSfCoOI+6v5/z0sK3oT6sG6ZwyI47DBq2XqNC6tnAj -w+XmCywiTQrFzMMAvcA7rPI4F0nU1rZId51rOvvfxaONp+wgTi4P8owZLw0/j0m4 -8C20DYi6EYx4AHDXiLpElWh3AgMBAAGjgZowgZcwCQYDVR0TBAIwADALBgNVHQ8E -BAMCBLAwHQYDVR0OBBYEFB6ZaeWKxQjGTI+pmz7cKRmMIywwMC4GA1UdEQQnMCWB -I3NhbXVlbC53aWxsaWFtc0BvcmlvbnRyYW5zZmVyLmNvLm56MC4GA1UdEgQnMCWB -I3NhbXVlbC53aWxsaWFtc0BvcmlvbnRyYW5zZmVyLmNvLm56MA0GCSqGSIb3DQEB -CwUAA4IBgQBVoM+pu3dpdUhZM1w051iw5GfiqclAr1Psypf16Tiod/ho//4oAu6T -9fj3DPX/acWV9P/FScvqo4Qgv6g4VWO5ZU7z2JmPoTXZtYMunRAmQPFL/gSUc6aK -vszMHIyhtyzRc6DnfW2AiVOjMBjaYv8xXZc9bduniRVPrLR4J7ozmGLh4o4uJp7w -x9KCFaR8Lvn/r0oJWJOqb/DMAYI83YeN2Dlt3jpwrsmsONrtC5S3gOUle5afSGos -bYt5ocnEpKSomR9ZtnCGljds/aeO1Xgpn2r9HHcjwnH346iNrnHmMlC7BtHUFPDg -Ts92S47PTOXzwPBDsrFiq3VLbRjHSwf8rpqybQBH9MfzxGGxTaETQYOd6b4e4Ag6 -y92abGna0bmIEb4+Tx9rQ10Uijh1POzvr/VTH4bbIPy9FbKrRsIQ24qDbNJRtOpE -RAOsIl+HOBTb252nx1kIRN5hqQx272AJCbCjKx8egcUQKffFVVCI0nye09v5CK+a -HiLJ8VOFx6w= +MIIE2DCCA0CgAwIBAgIBATANBgkqhkiG9w0BAQsFADBhMRgwFgYDVQQDDA9zYW11 +ZWwud2lsbGlhbXMxHTAbBgoJkiaJk/IsZAEZFg1vcmlvbnRyYW5zZmVyMRIwEAYK +CZImiZPyLGQBGRYCY28xEjAQBgoJkiaJk/IsZAEZFgJuejAeFw0yMjA4MDYwNDUz +MjRaFw0zMjA4MDMwNDUzMjRaMGExGDAWBgNVBAMMD3NhbXVlbC53aWxsaWFtczEd +MBsGCgmSJomT8ixkARkWDW9yaW9udHJhbnNmZXIxEjAQBgoJkiaJk/IsZAEZFgJj +bzESMBAGCgmSJomT8ixkARkWAm56MIIBojANBgkqhkiG9w0BAQEFAAOCAY8AMIIB +igKCAYEAomvSopQXQ24+9DBB6I6jxRI2auu3VVb4nOjmmHq7XWM4u3HL+pni63X2 +9qZdoq9xt7H+RPbwL28LDpDNflYQXoOhoVhQ37Pjn9YDjl8/4/9xa9+NUpl9XDIW +sGkaOY0eqsQm1pEWkHJr3zn/fxoKPZPfaJOglovdxf7dgsHz67Xgd/ka+Wo1YqoE +e5AUKRwUuvaUaumAKgPH+4E4oiLXI4T1Ff5Q7xxv6yXvHuYtlMHhYfgNn8iiW8WN +XibYXPNP7NtieSQqwR/xM6IRSoyXKuS+ZNGDPUUGk8RoiV/xvVN4LrVm9upSc0ss +RZ6qwOQmXCo/lLcDUxJAgG95cPw//sI00tZan75VgsGzSWAOdjQpFM0l4dxvKwHn +tUeT3ZsAgt0JnGqNm2Bkz81kG4A2hSyFZTFA8vZGhp+hz+8Q573tAR89y9YJBdYM +zp0FM4zwMNEUwgfRzv1tEVVUEXmoFCyhzonUUw4nE4CFu/sE3ffhjKcXcY//qiSW +xm4erY3XAgMBAAGjgZowgZcwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAwHQYDVR0O +BBYEFO9t7XWuFf2SKLmuijgqR4sGDlRsMC4GA1UdEQQnMCWBI3NhbXVlbC53aWxs +aWFtc0BvcmlvbnRyYW5zZmVyLmNvLm56MC4GA1UdEgQnMCWBI3NhbXVlbC53aWxs +aWFtc0BvcmlvbnRyYW5zZmVyLmNvLm56MA0GCSqGSIb3DQEBCwUAA4IBgQB5sxkE +cBsSYwK6fYpM+hA5B5yZY2+L0Z+27jF1pWGgbhPH8/FjjBLVn+VFok3CDpRqwXCl +xCO40JEkKdznNy2avOMra6PFiQyOE74kCtv7P+Fdc+FhgqI5lMon6tt9rNeXmnW/ +c1NaMRdxy999hmRGzUSFjozcCwxpy/LwabxtdXwXgSay4mQ32EDjqR1TixS1+smp +8C/NCWgpIfzpHGJsjvmH2wAfKtTTqB9CVKLCWEnCHyCaRVuKkrKjqhYCdmMBqCws +JkxfQWC+jBVeG9ZtPhQgZpfhvh+6hMhraUYRQ6XGyvBqEUe+yo6DKIT3MtGE2+CP +eX9i9ZWBydWb8/rvmwmX2kkcBbX0hZS1rcR593hGc61JR6lvkGYQ2MYskBveyaxt +Q2K9NVun/S785AP05vKkXZEFYxqG6EW012U4oLcFl5MySFajYXRYbuUpH6AY+HP8 +voD0MPg1DssDLKwXyt1eKD/+Fq0bFWhwVM/1XiAXL7lyYUyOq24KHgQ2Csg= -----END CERTIFICATE----- diff --git a/spec/async/dns/handler_spec.rb b/spec/async/dns/handler_spec.rb deleted file mode 100644 index 0269df7..0000000 --- a/spec/async/dns/handler_spec.rb +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright, 2017, by Samuel G. D. Williams. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -require 'async/dns' -require 'async/dns/system' - -describe Async::DNS::StreamHandler do - include_context Async::RSpec::Reactor - - let(:server) {Async::DNS::Server.new} - let(:endpoint) {Async::IO::Endpoint.tcp('127.0.0.1', 6666, reuse_port: true)} - - it "can rebind port" do - 2.times do - task = reactor.async do - endpoint.bind do |socket| - described_class.new(server, socket).run - end - end - - task.stop - end - end -end - -describe Async::DNS::DatagramHandler do - include_context Async::RSpec::Reactor - - let(:server) {Async::DNS::Server.new} - let(:endpoint) {Async::IO::Endpoint.udp('127.0.0.1', 6666)} - - it "can rebind port" do - 2.times do - task = reactor.async do - endpoint.bind do |socket| - described_class.new(server, socket).run - end - end - - task.stop - end - end -end diff --git a/spec/async/dns/junk_server_context.rb b/spec/async/dns/junk_server_context.rb deleted file mode 100644 index 2e9bd72..0000000 --- a/spec/async/dns/junk_server_context.rb +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright, 2018, by Samuel G. D. Williams. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -RSpec.shared_context "Junk UDP Server" do - let!(:server_endpoint) {Async::IO::Endpoint.udp('0.0.0.0', 6060, reuse_port: true)} - - let!(:server_task) do - reactor.async do - server_endpoint.bind do |socket| - begin - while true - data, address = socket.recvfrom(1024) - socket.send("foobar", 0, address) - end - rescue - socket.close - end - end - end - end - - after(:each) do - server_task.stop - end -end - -RSpec.shared_context "Junk TCP Server" do - let!(:server_endpoint) {Async::IO::Endpoint.tcp('0.0.0.0', 6060, reuse_port: true)} - - let!(:server_task) do - reactor.async do - server_endpoint.accept do |socket| - begin - socket.write("f\0\0bar") - rescue - socket.close - end - end - end - end - - after(:each) do - server_task.stop - end -end diff --git a/spec/async/dns/message_spec.rb b/spec/async/dns/message_spec.rb deleted file mode 100755 index 16620c1..0000000 --- a/spec/async/dns/message_spec.rb +++ /dev/null @@ -1,56 +0,0 @@ -#!/usr/bin/env ruby - -# Copyright, 2012, by Samuel G. D. Williams. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -require 'async/dns' -require 'base64' - -module Async::DNS::MessageSpec - describe Async::DNS::Message do - it "should be decoded correctly" do - data = Base64.decode64(<<-EOF) - HQCBgAABAAgAAAABA3d3dwV5YWhvbwNjb20AAAEAAcAMAAUAAQAAASwADwZm - ZC1mcDMDd2cxAWLAEMArAAUAAQAAASwACQZkcy1mcDPAMsBGAAUAAQAAADwA - FQ5kcy1hbnktZnAzLWxmYgN3YTHANsBbAAUAAQAAASwAEg9kcy1hbnktZnAz - LXJlYWzAasB8AAEAAQAAADwABGKK/B7AfAABAAEAAAA8AARii7SVwHwAAQAB - AAAAPAAEYou3GMB8AAEAAQAAADwABGKK/W0AACkQAAAAAAAAAA== - EOF - - message = Async::DNS::decode_message(data) - expect(message.class).to be == Async::DNS::Message - expect(message.id).to be == 0x1d00 - - expect(message.question.size).to be == 1 - expect(message.answer.size).to be == 8 - expect(message.authority.size).to be == 0 - expect(message.additional.size).to be == 1 - end - - it "should fail to decode due to bad AAAA length" do - data = Base64.decode64(<<-EOF) - 6p6BgAABAAEAAAABCGJhaWNhaWNuA2NvbQAAHAABwAwAHAABAAABHgAEMhd7 - dwAAKRAAAAAAAAAA - EOF - - expect{Async::DNS::decode_message(data)}.to raise_error(Async::DNS::DecodeError) - end - end -end diff --git a/spec/async/dns/origin_spec.rb b/spec/async/dns/origin_spec.rb deleted file mode 100644 index 274422e..0000000 --- a/spec/async/dns/origin_spec.rb +++ /dev/null @@ -1,106 +0,0 @@ -#!/usr/bin/env rspec - -# Copyright, 2014, by Samuel G. D. Williams. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -require 'async/dns' - -module Async::DNS::OriginSpec - describe Async::DNS::Resolver do - it "should generate fully qualified domain name with specified origin" do - resolver = Async::DNS::Resolver.new([], origin: "foo.bar.") - - fully_qualified_name = resolver.fully_qualified_name("baz") - - expect(fully_qualified_name).to be_absolute - expect(fully_qualified_name.to_s).to be == "baz.foo.bar." - end - end - - describe Resolv::DNS::Name do - let(:name) {Resolv::DNS::Name.create("foo.bar")} - - it "should be relative" do - expect(name).to_not be_absolute - expect(name.to_s).to be == "foo.bar" - end - - it "should add the specified origin" do - fully_qualified_name = name.with_origin("org") - - expect(fully_qualified_name.to_a.size).to be 3 - expect(fully_qualified_name).to be_absolute - expect(fully_qualified_name.to_s).to be == "foo.bar.org." - end - - it "should handle nil origin as absolute" do - fully_qualified_name = name.with_origin(nil) - - expect(fully_qualified_name.to_a.size).to be 2 - expect(fully_qualified_name).to be_absolute - expect(fully_qualified_name.to_s).to be == "foo.bar." - end - - it "should handle empty origin as absolute" do - fully_qualified_name = name.with_origin('') - - expect(fully_qualified_name.to_a.size).to be 2 - expect(fully_qualified_name).to be_absolute - expect(fully_qualified_name.to_s).to be == "foo.bar." - end - end - - describe Resolv::DNS::Name do - let(:name) {Resolv::DNS::Name.create("foo.bar.")} - - it "should be absolute" do - expect(name).to be_absolute - expect(name.to_s).to be == "foo.bar." - end - - it "should remove the specified origin" do - relative_name = name.without_origin("bar") - - expect(relative_name.to_a.size).to be 1 - expect(relative_name).to_not be_absolute - expect(relative_name.to_s).to be == "foo" - end - - it "should not remove nil origin but become relative" do - relative_name = name.without_origin(nil) - - expect(relative_name.to_a.size).to be 2 - expect(relative_name).to_not be_absolute - expect(relative_name.to_s).to be == "foo.bar" - end - - it "should not remove empty string origin but become relative" do - relative_name = name.without_origin('') - - expect(relative_name.to_a.size).to be 2 - expect(relative_name).to_not be_absolute - expect(relative_name.to_s).to be == "foo.bar" - end - - it "should not raise an exception when origin isn't valid" do - expect{name.without_origin('bob')}.to raise_exception(Resolv::DNS::OriginError) - end - end -end diff --git a/spec/async/dns/replace_spec.rb b/spec/async/dns/replace_spec.rb deleted file mode 100644 index 764811e..0000000 --- a/spec/async/dns/replace_spec.rb +++ /dev/null @@ -1,44 +0,0 @@ -#!/usr/bin/env rspec - -# Copyright, 2015, by Samuel G. D. Williams. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -require 'async/dns' -require 'async/dns/replace' - -module Async::DNS::ReplaceSpec - describe Async::DNS::Replace do - include_context Async::RSpec::Reactor - - let(:default_resolver) {Async::DNS::Resolver.new([[:udp, "8.8.8.8", 53], [:tcp, "8.8.8.8", 53]])} - - after(:all) do - Async::DNS::Replace.resolver = nil - end - - it "should replace TCPSocket hostname lookup" do - Async::DNS::Replace.resolver = default_resolver - - expect(default_resolver).to receive(:addresses_for).with('www.google.com').and_call_original - - TCPSocket.new('www.google.com', 80) - end - end -end diff --git a/spec/async/dns/slow_server_spec.rb b/spec/async/dns/slow_server_spec.rb deleted file mode 100755 index b40fc6d..0000000 --- a/spec/async/dns/slow_server_spec.rb +++ /dev/null @@ -1,97 +0,0 @@ -#!/usr/bin/env ruby - -# Copyright, 2012, by Samuel G. D. Williams. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -require 'async/dns' - -module Async::DNS::SlowServerSpec - IN = Resolv::DNS::Resource::IN - - class SlowServer < Async::DNS::Server - def process(name, resource_class, transaction) - @resolver ||= Async::DNS::Resolver.new([[:udp, "8.8.8.8", 53], [:tcp, "8.8.8.8", 53]]) - - Async::Task.current.sleep(2) if name.end_with?('.com') - - transaction.fail!(:NXDomain) - end - end - - describe "Async::DNS Slow Server" do - include_context Async::RSpec::Reactor - - let(:server_interfaces) {[[:udp, '0.0.0.0', 5330], [:tcp, '0.0.0.0', 5330]]} - let(:server) {SlowServer.new(server_interfaces)} - - around(:each) do |example| - begin - task = server.run - - example.run - ensure - task.stop - end - end - - it "get no answer after 2 seconds" do - start_time = Time.now - - resolver = Async::DNS::Resolver.new(server_interfaces, :timeout => 10) - - response = resolver.query("apple.com", IN::A) - - expect(response.answer.length).to be == 0 - - end_time = Time.now - - expect(end_time - start_time).to be_within(1.0).of(2.0) - end - - it "times out after 1 second" do - start_time = Time.now - - # Two server interfaces, timeout of 0.5s each: - resolver = Async::DNS::Resolver.new(server_interfaces, :timeout => 0.5) - - response = resolver.query("apple.com", IN::A) - - expect(response).to be nil - - end_time = Time.now - - expect(end_time - start_time).to be_within(0.5).of(1.0) - end - - it "gets no answer immediately" do - start_time = Time.now - - resolver = Async::DNS::Resolver.new(server_interfaces, :timeout => 0.5) - - response = resolver.query("oriontransfer.org", IN::A) - - expect(response.answer.length).to be 0 - - end_time = Time.now - - expect(end_time - start_time).to be_within(0.1).of(0.0) - end - end -end diff --git a/spec/async/dns/socket_spec.rb b/spec/async/dns/socket_spec.rb deleted file mode 100644 index c4a261c..0000000 --- a/spec/async/dns/socket_spec.rb +++ /dev/null @@ -1,72 +0,0 @@ -#!/usr/bin/env ruby - -# Copyright, 2014, by Samuel G. D. Williams. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -require 'async/dns' -require 'async/dns/system' - -module Async::DNS::SocketSpec - IN = Resolv::DNS::Resource::IN - - class TestServer < Async::DNS::Server - def process(name, resource_class, transaction) - @resolver ||= Async::DNS::Resolver.new([[:udp, "8.8.8.8", 53], [:tcp, "8.8.8.8", 53]]) - - transaction.passthrough!(@resolver) - end - end - - describe Async::DNS::StreamHandler do - include_context Async::RSpec::Reactor - - let(:server_interfaces) {[TCPServer.new('127.0.0.1', 2002)]} - let(:server) {TestServer.new(server_interfaces)} - - it "should create server with existing TCP socket" do - task = server.run - - resolver = Async::DNS::Resolver.new([[:tcp, '127.0.0.1', 2002]]) - response = resolver.query('google.com') - expect(response.class).to be == Async::DNS::Message - - task.stop - server_interfaces.each(&:close) - end - end - - describe Async::DNS::DatagramHandler do - include_context Async::RSpec::Reactor - - let(:server_interfaces) {[UDPSocket.new.tap{|socket| socket.bind('127.0.0.1', 2002)}]} - let(:server) {TestServer.new(server_interfaces)} - - it "should create server with existing UDP socket" do - task = server.run - - resolver = Async::DNS::Resolver.new([[:udp, '127.0.0.1', 2002]]) - response = resolver.query('google.com') - expect(response.class).to be == Async::DNS::Message - - task.stop - server_interfaces.each(&:close) - end - end -end diff --git a/spec/async/dns/system_spec.rb b/spec/async/dns/system_spec.rb deleted file mode 100755 index 73333e5..0000000 --- a/spec/async/dns/system_spec.rb +++ /dev/null @@ -1,57 +0,0 @@ -#!/usr/bin/env ruby - -# Copyright, 2012, by Samuel G. D. Williams. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -require 'async/dns' -require 'async/dns/system' - -module Async::DNS::SystemSpec - describe Async::DNS::System do - include_context Async::RSpec::Reactor - - it "should have at least one namesever" do - expect(Async::DNS::System::nameservers.length).to be > 0 - end - - it "should respond to query for google.com" do - resolver = Async::DNS::Resolver.new(Async::DNS::System.nameservers) - - response = resolver.query('google.com') - - expect(response.class).to be == Async::DNS::Message - expect(response.rcode).to be == Resolv::DNS::RCode::NoError - end - end - - describe Async::DNS::System::Hosts do - it "should parse the hosts file" do - hosts = Async::DNS::System::Hosts.new - - # Load the test hosts data: - File.open(File.expand_path("../hosts.txt", __FILE__)) do |file| - hosts.parse_hosts(file) - end - - expect(hosts.call('testing')).to be == true - expect(hosts['testing']).to be == '1.2.3.4' - end - end -end diff --git a/spec/async/dns/transaction_spec.rb b/spec/async/dns/transaction_spec.rb deleted file mode 100755 index 7f89eac..0000000 --- a/spec/async/dns/transaction_spec.rb +++ /dev/null @@ -1,140 +0,0 @@ -#!/usr/bin/env rspec - -# Copyright, 2012, by Samuel G. D. Williams. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -require 'async/dns' -require 'yaml' - -module Async::DNS::TransactionSpec - SERVER_PORTS = [[:udp, '8.8.8.8', 53], [:tcp, '8.8.8.8', 53]] - IN = Resolv::DNS::Resource::IN - - describe Async::DNS::Transaction do - let(:server) { Async::DNS::Server.new } - let(:query) { Async::DNS::Message.new(0) } - let(:question) { Resolv::DNS::Name.create("www.google.com.") } - let(:response) { Async::DNS::Message.new(0) } - let(:resolver) { Async::DNS::Resolver.new([[:udp, '8.8.8.8', 53], [:tcp, '8.8.8.8', 53]])} - - include_context Async::RSpec::Reactor - - it "should append an address" do - transaction = Async::DNS::Transaction.new(server, query, question, IN::A, response) - - transaction.respond!("1.2.3.4") - - expect(transaction.response.answer[0][0]).to be == question - expect(transaction.response.answer[0][2].address.to_s).to be == "1.2.3.4" - end - - it "should passthrough the request" do - transaction = Async::DNS::Transaction.new(server, query, question, IN::A, response) - - expect(transaction.response.answer.size).to be 0 - - transaction.passthrough!(resolver) - - expect(transaction.response.answer.size).to be > 0 - end - - it "should return a response on passthrough" do - transaction = Async::DNS::Transaction.new(server, query, question, IN::A, response) - - expect(transaction.response.answer.size).to be 0 - - response = transaction.passthrough(resolver) - - expect(response.answer.length).to be > 0 - end - - it "should call the block with the response when invoking passthrough!" do - transaction = Async::DNS::Transaction.new(server, query, question, IN::A, response) - - expect(transaction.response.answer.size).to be 0 - - passthrough_response = nil - - transaction.passthrough!(resolver) do |response| - passthrough_response = response - end - - expect(passthrough_response.answer.length).to be > 0 - end - - it "should fail the request" do - transaction = Async::DNS::Transaction.new(server, query, question, IN::A, response) - - transaction.fail! :NXDomain - - expect(transaction.response.rcode).to be Resolv::DNS::RCode::NXDomain - end - - it "should return AAAA record" do - transaction = Async::DNS::Transaction.new(server, query, question, IN::AAAA, response) - - expect(transaction.response.answer.size).to be 0 - - transaction.passthrough!(resolver) - - expect(transaction.response.answer.first[2]).to be_kind_of IN::AAAA - end - - it "should return MX record" do - transaction = Async::DNS::Transaction.new(server,query,"google.com",IN::MX, response) - - expect(transaction.response.answer.size).to be 0 - - transaction.passthrough!(resolver) - - expect(transaction.response.answer.first[2]).to be_kind_of IN::MX - end - - it "should return NS record" do - transaction = Async::DNS::Transaction.new(server, query, "google.com", IN::NS, response) - - expect(transaction.response.answer.size).to be 0 - - transaction.passthrough!(resolver) - - expect(transaction.response.answer.first[2]).to be_kind_of IN::NS - end - - it "should return PTR record" do - transaction = Async::DNS::Transaction.new(server, query, "1.1.1.1.in-addr.arpa", IN::PTR, response) - - expect(transaction.response.answer.size).to be 0 - - transaction.passthrough!(resolver) - - expect(transaction.response.answer.first[2]).to be_kind_of IN::PTR - end - - it "should return SOA record" do - transaction = Async::DNS::Transaction.new(server, query, "google.com", IN::SOA, response) - - expect(transaction.response.answer.size).to be 0 - - transaction.passthrough!(resolver) - - expect(transaction.response.answer.first[2]).to be_kind_of IN::SOA - end - end -end diff --git a/spec/async/dns/truncation_spec.rb b/spec/async/dns/truncation_spec.rb deleted file mode 100755 index 2f713f5..0000000 --- a/spec/async/dns/truncation_spec.rb +++ /dev/null @@ -1,61 +0,0 @@ -#!/usr/bin/env ruby - -# Copyright, 2012, by Samuel G. D. Williams. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. - -require 'async/dns' -require 'async/dns/extensions/string' - -module Async::DNS::TruncationSpec - SERVER_PORTS = [[:udp, '127.0.0.1', 5520], [:tcp, '127.0.0.1', 5520]] - IN = Resolv::DNS::Resource::IN - - class TestServer < Async::DNS::Server - def process(name, resource_class, transaction) - case [name, resource_class] - when ["truncation", IN::TXT] - text = "Hello World! " * 100 - transaction.respond!(*text.chunked) - else - transaction.fail!(:NXDomain) - end - end - end - - describe "Async::DNS Truncation Server" do - include_context Async::RSpec::Reactor - - let(:server) {TestServer.new(SERVER_PORTS)} - - it "should use tcp because of large response" do - task = server.run - - resolver = Async::DNS::Resolver.new(SERVER_PORTS) - - response = resolver.query("truncation", IN::TXT) - - text = response.answer.first - - expect(text[2].strings.join).to be == ("Hello World! " * 100) - - task.stop - end - end -end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb deleted file mode 100644 index 26a33b1..0000000 --- a/spec/spec_helper.rb +++ /dev/null @@ -1,57 +0,0 @@ - -if ENV['COVERAGE'] || ENV['TRAVIS'] - begin - require 'simplecov' - - SimpleCov.start do - add_filter "/spec/" - end - - # Work correctly across forks: - pid = Process.pid - SimpleCov.at_exit do - SimpleCov.result.format! if Process.pid == pid - end - - if ENV['TRAVIS'] - require 'coveralls' - Coveralls.wear! - end - rescue LoadError - warn "Could not load simplecov: #{$!}" - end -end - -require "bundler/setup" -require "async/rspec" -require "async/dns" - -begin - require 'ruby-prof' - - RSpec.shared_context "profile" do - around(:each) do |example| - profile = RubyProf.profile(merge_fibers: true) do - example.run - end - - printer = RubyProf::FlatPrinter.new(profile) - printer.print(STDOUT) - end - end -rescue LoadError - RSpec.shared_context "profile" do - before(:all) do - puts "Profiling not supported on this platform." - end - end -end - -RSpec.configure do |config| - # Enable flags like --only-failures and --next-failure - config.example_status_persistence_file_path = ".rspec_status" - - config.expect_with :rspec do |c| - c.syntax = :expect - end -end diff --git a/test/async/dns/handler.rb b/test/async/dns/handler.rb new file mode 100644 index 0000000..8259718 --- /dev/null +++ b/test/async/dns/handler.rb @@ -0,0 +1,47 @@ +# frozen_string_literal: true + +# Released under the MIT License. +# Copyright, 2017-2024, by Samuel Williams. + +require 'async/dns' +require 'async/dns/system' + +require 'sus/fixtures/async' + +describe Async::DNS::StreamHandler do + include Sus::Fixtures::Async::ReactorContext + + let(:server) {Async::DNS::Server.new} + let(:endpoint) {Async::IO::Endpoint.tcp('127.0.0.1', 6666, reuse_port: true)} + + it "can rebind port" do + 2.times do + task = reactor.async do + endpoint.bind do |socket| + subject.new(server, socket).run + end + end + + task.stop + end + end +end + +describe Async::DNS::DatagramHandler do + include Sus::Fixtures::Async::ReactorContext + + let(:server) {Async::DNS::Server.new} + let(:endpoint) {Async::IO::Endpoint.udp('127.0.0.1', 6666)} + + it "can rebind port" do + 2.times do + task = reactor.async do + endpoint.bind do |socket| + subject.new(server, socket).run + end + end + + task.stop + end + end +end diff --git a/spec/async/dns/hosts.txt b/test/async/dns/hosts.txt similarity index 100% rename from spec/async/dns/hosts.txt rename to test/async/dns/hosts.txt diff --git a/spec/async/dns/ipv6_spec.rb b/test/async/dns/ipv6.rb similarity index 52% rename from spec/async/dns/ipv6_spec.rb rename to test/async/dns/ipv6.rb index 39930cf..2d4b9e9 100644 --- a/spec/async/dns/ipv6_spec.rb +++ b/test/async/dns/ipv6.rb @@ -1,28 +1,13 @@ #!/usr/bin/env ruby +# frozen_string_literal: true -# Copyright, 2014, by Samuel G. D. Williams. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. +# Released under the MIT License. +# Copyright, 2015-2024, by Samuel Williams. require 'async/dns' require 'async/dns/system' +require 'sus/fixtures/async' require 'async/io/shared_endpoint' class IPV6TestServer < Async::DNS::Server @@ -34,7 +19,7 @@ def process(name, resource_class, transaction) end describe Async::DNS::StreamHandler do - include_context Async::RSpec::Reactor + include Sus::Fixtures::Async::ReactorContext let(:endpoint) {Async::IO::Endpoint.tcp('::', 2004)} @@ -49,7 +34,7 @@ def process(name, resource_class, transaction) expect(response.class).to be == Async::DNS::Message expect(response.rcode).to be == 0 - expect(response.answer).to_not be_empty + expect(response.answer).not.to be(:empty?) task.stop ensure @@ -58,7 +43,7 @@ def process(name, resource_class, transaction) end describe Async::DNS::DatagramHandler do - include_context Async::RSpec::Reactor + include Sus::Fixtures::Async::ReactorContext let(:endpoint) {Async::IO::Endpoint.udp('::', 2006)} @@ -73,7 +58,7 @@ def process(name, resource_class, transaction) expect(response.class).to be == Async::DNS::Message expect(response.rcode).to be == 0 - expect(response.answer).to_not be_empty + expect(response.answer).not.to be(:empty?) task.stop ensure diff --git a/test/async/dns/junk_server_context.rb b/test/async/dns/junk_server_context.rb new file mode 100644 index 0000000..c3aba82 --- /dev/null +++ b/test/async/dns/junk_server_context.rb @@ -0,0 +1,5 @@ +# frozen_string_literal: true + +# Released under the MIT License. +# Copyright, 2018-2024, by Samuel Williams. + diff --git a/test/async/dns/message.rb b/test/async/dns/message.rb new file mode 100755 index 0000000..eff4004 --- /dev/null +++ b/test/async/dns/message.rb @@ -0,0 +1,38 @@ +#!/usr/bin/env ruby +# frozen_string_literal: true + +# Released under the MIT License. +# Copyright, 2015-2024, by Samuel Williams. + +require 'async/dns' +require 'base64' + +describe Async::DNS::Message do + it "should be decoded correctly" do + data = Base64.decode64(<<-EOF) + HQCBgAABAAgAAAABA3d3dwV5YWhvbwNjb20AAAEAAcAMAAUAAQAAASwADwZm + ZC1mcDMDd2cxAWLAEMArAAUAAQAAASwACQZkcy1mcDPAMsBGAAUAAQAAADwA + FQ5kcy1hbnktZnAzLWxmYgN3YTHANsBbAAUAAQAAASwAEg9kcy1hbnktZnAz + LXJlYWzAasB8AAEAAQAAADwABGKK/B7AfAABAAEAAAA8AARii7SVwHwAAQAB + AAAAPAAEYou3GMB8AAEAAQAAADwABGKK/W0AACkQAAAAAAAAAA== + EOF + + message = Async::DNS::decode_message(data) + expect(message.class).to be == Async::DNS::Message + expect(message.id).to be == 0x1d00 + + expect(message.question.size).to be == 1 + expect(message.answer.size).to be == 8 + expect(message.authority.size).to be == 0 + expect(message.additional.size).to be == 1 + end + + it "should fail to decode due to bad AAAA length" do + data = Base64.decode64(<<-EOF) + 6p6BgAABAAEAAAABCGJhaWNhaWNuA2NvbQAAHAABwAwAHAABAAABHgAEMhd7 + dwAAKRAAAAAAAAAA + EOF + + expect{Async::DNS::decode_message(data)}.to raise_exception(Async::DNS::DecodeError) + end +end diff --git a/test/async/dns/origin.rb b/test/async/dns/origin.rb new file mode 100644 index 0000000..74a7a0b --- /dev/null +++ b/test/async/dns/origin.rb @@ -0,0 +1,87 @@ +# frozen_string_literal: true + +# Released under the MIT License. +# Copyright, 2015-2024, by Samuel Williams. + +require 'async/dns' + +describe Async::DNS::Resolver do + it "should generate fully qualified domain name with specified origin" do + resolver = Async::DNS::Resolver.new([], origin: "foo.bar.") + + fully_qualified_name = resolver.fully_qualified_name("baz") + + expect(fully_qualified_name).to be(:absolute?) + expect(fully_qualified_name.to_s).to be == "baz.foo.bar." + end +end + +describe Resolv::DNS::Name do + let(:name) {Resolv::DNS::Name.create("foo.bar")} + + it "should be relative" do + expect(name).not.to be(:absolute?) + expect(name.to_s).to be == "foo.bar" + end + + it "should add the specified origin" do + fully_qualified_name = name.with_origin("org") + + expect(fully_qualified_name.to_a.size).to be == 3 + expect(fully_qualified_name).to be(:absolute?) + expect(fully_qualified_name.to_s).to be == "foo.bar.org." + end + + it "should handle nil origin as absolute" do + fully_qualified_name = name.with_origin(nil) + + expect(fully_qualified_name.to_a.size).to be == 2 + expect(fully_qualified_name).to be(:absolute?) + expect(fully_qualified_name.to_s).to be == "foo.bar." + end + + it "should handle empty origin as absolute" do + fully_qualified_name = name.with_origin('') + + expect(fully_qualified_name.to_a.size).to be == 2 + expect(fully_qualified_name).to be(:absolute?) + expect(fully_qualified_name.to_s).to be == "foo.bar." + end +end + +describe Resolv::DNS::Name do + let(:name) {Resolv::DNS::Name.create("foo.bar.")} + + it "should be absolute" do + expect(name).to be(:absolute?) + expect(name.to_s).to be == "foo.bar." + end + + it "should remove the specified origin" do + relative_name = name.without_origin("bar") + + expect(relative_name.to_a.size).to be == 1 + expect(relative_name).not.to be(:absolute?) + expect(relative_name.to_s).to be == "foo" + end + + it "should not remove nil origin but become relative" do + relative_name = name.without_origin(nil) + + expect(relative_name.to_a.size).to be == 2 + expect(relative_name).not.to be(:absolute?) + expect(relative_name.to_s).to be == "foo.bar" + end + + it "should not remove empty string origin but become relative" do + relative_name = name.without_origin('') + + expect(relative_name.to_a.size).to be == 2 + expect(relative_name).not.to be(:absolute?) + expect(relative_name.to_s).to be == "foo.bar" + end + + it "should not raise an exception when origin isn't valid" do + expect{name.without_origin('bob')}.to raise_exception(Resolv::DNS::OriginError) + end +end diff --git a/test/async/dns/replace.rb b/test/async/dns/replace.rb new file mode 100644 index 0000000..4ec7f41 --- /dev/null +++ b/test/async/dns/replace.rb @@ -0,0 +1,25 @@ +# frozen_string_literal: true + +# Released under the MIT License. +# Copyright, 2015-2024, by Samuel Williams. + +require 'async/dns' +require 'async/dns/replace' + +describe Async::DNS::Replace do + include Sus::Fixtures::Async::ReactorContext + + let(:default_resolver) {Async::DNS::Resolver.new([[:udp, "8.8.8.8", 53], [:tcp, "8.8.8.8", 53]])} + + it "should replace TCPSocket hostname lookup" do + mock(Async::DNS::Replace) do |mock| + mock.replace(:resolver) do + default_resolver + end + end + + expect(default_resolver).to receive(:addresses_for).with('www.google.com') + + socket = TCPSocket.new('www.google.com', 80) + end +end diff --git a/spec/async/dns/resolver_spec.rb b/test/async/dns/resolver.rb similarity index 55% rename from spec/async/dns/resolver_spec.rb rename to test/async/dns/resolver.rb index f2df2e5..f2de2ef 100755 --- a/spec/async/dns/resolver_spec.rb +++ b/test/async/dns/resolver.rb @@ -1,31 +1,63 @@ #!/usr/bin/env rspec +# frozen_string_literal: true -# Copyright, 2012, by Samuel G. D. Williams. -# -# Permission is hereby granted, free of charge, to any person obtaining a copy -# of this software and associated documentation files (the "Software"), to deal -# in the Software without restriction, including without limitation the rights -# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -# copies of the Software, and to permit persons to whom the Software is -# furnished to do so, subject to the following conditions: -# -# The above copyright notice and this permission notice shall be included in -# all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -# THE SOFTWARE. +# Released under the MIT License. +# Copyright, 2015-2024, by Samuel Williams. +# Copyright, 2024, by Sean Dilda. require 'async/dns' -require_relative 'junk_server_context' +require 'sus/fixtures/async' -RSpec.describe Async::DNS::Resolver do - include_context Async::RSpec::Reactor +AJunkUDPServer = Sus::Shared("a junk UDP server") do + let(:server_endpoint) {Async::IO::Endpoint.udp('0.0.0.0', 6060, reuse_port: true)} + + def before + super + + @server_task = reactor.async do + server_endpoint.bind do |socket| + begin + while true + data, address = socket.recvfrom(1024) + socket.send("foobar", 0, address) + end + rescue + socket.close + end + end + end + end + + def after + @server_task&.stop + end +end + +AJunkTCPServer = Sus::Shared("a junk TCP server") do + let(:server_endpoint) {Async::IO::Endpoint.tcp('0.0.0.0', 6060, reuse_port: true)} + + def before + super + + @server_task = reactor.async do + server_endpoint.accept do |socket| + begin + socket.write("f\0\0bar") + rescue + socket.close + end + end + end + end + + def after + @server_task&.stop + end +end + +describe Async::DNS::Resolver do + include Sus::Fixtures::Async::ReactorContext it "should result in non-existent domain" do resolver = Async::DNS::Resolver.new([[:udp, "8.8.8.8", 53], [:tcp, "8.8.8.8", 53]]) @@ -55,11 +87,11 @@ it "should fail to get addresses" do resolver = Async::DNS::Resolver.new([]) - expect{resolver.addresses_for('google.com')}.to raise_error(Async::DNS::ResolutionFailure) + expect{resolver.addresses_for('google.com')}.to raise_exception(Async::DNS::ResolutionFailure) end - context 'with junk UDP server' do - include_context 'Junk UDP Server' + with 'junk UDP server' do + include_context AJunkUDPServer it "should fail with decode error" do resolver = Async::DNS::Resolver.new([[:udp, "0.0.0.0", 6060]]) @@ -70,8 +102,8 @@ end end - context 'with junk TCP server' do - include_context 'Junk TCP Server' + with 'junk TCP server' do + include_context AJunkTCPServer it "should fail with decode error" do resolver = Async::DNS::Resolver.new([[:tcp, "0.0.0.0", 6060]]) @@ -90,7 +122,7 @@ expect(addresses.size).to be > 0 addresses.each do |address| - expect(address).to be_kind_of(Resolv::IPv4) | be_kind_of(Resolv::IPv6) + expect(address).to be_a(Resolv::IPv4) | be_a(Resolv::IPv6) end end diff --git a/test/async/dns/slow_server.rb b/test/async/dns/slow_server.rb new file mode 100755 index 0000000..2653c43 --- /dev/null +++ b/test/async/dns/slow_server.rb @@ -0,0 +1,81 @@ +# frozen_string_literal: true + +# Released under the MIT License. +# Copyright, 2015-2024, by Samuel Williams. + +require 'async/dns' + +require 'sus/fixtures/async' + +IN = Resolv::DNS::Resource::IN + +class SlowServer < Async::DNS::Server + def process(name, resource_class, transaction) + sleep(2) if name.end_with?('.com') + + transaction.fail!(:NXDomain) + end +end + +describe "Async::DNS Slow Server" do + include Sus::Fixtures::Async::ReactorContext + + let(:server_interfaces) {[[:udp, '0.0.0.0', 5330], [:tcp, '0.0.0.0', 5330]]} + let(:server) {SlowServer.new(server_interfaces)} + + def before + super + + @server_task = server.run + end + + def after + @server_task&.stop + + super + end + + it "get no answer after 2 seconds" do + + start_time = Async::Clock.now + + resolver = Async::DNS::Resolver.new(server_interfaces, timeout: 10) + + response = resolver.query("apple.com", IN::A) + + expect(response.answer.length).to be == 0 + + duration = Async::Clock.now - start_time + + expect(duration).to be_within(1.0).of(2.0) + end + + it "times out after 1 second" do + start_time = Time.now + + # Two server interfaces, timeout of 0.5s each: + resolver = Async::DNS::Resolver.new(server_interfaces, timeout: 0.5) + + response = resolver.query("apple.com", IN::A) + + expect(response).to be_nil + + end_time = Time.now + + expect(end_time - start_time).to be_within(0.5).of(1.0) + end + + it "gets no answer immediately" do + start_time = Time.now + + resolver = Async::DNS::Resolver.new(server_interfaces, timeout: 0.5) + + response = resolver.query("oriontransfer.org", IN::A) + + expect(response.answer.length).to be == 0 + + end_time = Time.now + + expect(end_time - start_time).to be_within(0.1).of(0.0) + end +end diff --git a/test/async/dns/socket.rb b/test/async/dns/socket.rb new file mode 100644 index 0000000..a99b6b4 --- /dev/null +++ b/test/async/dns/socket.rb @@ -0,0 +1,54 @@ +#!/usr/bin/env ruby +# frozen_string_literal: true + +# Released under the MIT License. +# Copyright, 2015-2024, by Samuel Williams. + +require 'async/dns' +require 'async/dns/system' + +IN = Resolv::DNS::Resource::IN + +class TestServer < Async::DNS::Server + def process(name, resource_class, transaction) + @resolver ||= Async::DNS::Resolver.new([[:udp, "8.8.8.8", 53], [:tcp, "8.8.8.8", 53]]) + + transaction.passthrough!(@resolver) + end +end + +describe Async::DNS::StreamHandler do + include Sus::Fixtures::Async::ReactorContext + + let(:server_interfaces) {[TCPServer.new('127.0.0.1', 2002)]} + let(:server) {TestServer.new(server_interfaces)} + + it "should create server with existing TCP socket" do + task = server.run + + resolver = Async::DNS::Resolver.new([[:tcp, '127.0.0.1', 2002]]) + response = resolver.query('google.com') + expect(response.class).to be == Async::DNS::Message + + task.stop + server_interfaces.each(&:close) + end +end + +describe Async::DNS::DatagramHandler do + include Sus::Fixtures::Async::ReactorContext + + let(:server_interfaces) {[UDPSocket.new.tap{|socket| socket.bind('127.0.0.1', 2002)}]} + let(:server) {TestServer.new(server_interfaces)} + + it "should create server with existing UDP socket" do + task = server.run + + resolver = Async::DNS::Resolver.new([[:udp, '127.0.0.1', 2002]]) + response = resolver.query('google.com') + expect(response.class).to be == Async::DNS::Message + + task.stop + server_interfaces.each(&:close) + end +end diff --git a/test/async/dns/system.rb b/test/async/dns/system.rb new file mode 100755 index 0000000..05bfe31 --- /dev/null +++ b/test/async/dns/system.rb @@ -0,0 +1,39 @@ +#!/usr/bin/env ruby +# frozen_string_literal: true + +# Released under the MIT License. +# Copyright, 2015-2024, by Samuel Williams. + +require 'async/dns' +require 'async/dns/system' + +describe Async::DNS::System do + include Sus::Fixtures::Async::ReactorContext + + it "should have at least one namesever" do + expect(Async::DNS::System::nameservers.length).to be > 0 + end + + it "should respond to query for google.com" do + resolver = Async::DNS::Resolver.new(Async::DNS::System.nameservers) + + response = resolver.query('google.com') + + expect(response.class).to be == Async::DNS::Message + expect(response.rcode).to be == Resolv::DNS::RCode::NoError + end +end + +describe Async::DNS::System::Hosts do + it "should parse the hosts file" do + hosts = Async::DNS::System::Hosts.new + + # Load the test hosts data: + File.open(File.expand_path("../hosts.txt", __FILE__)) do |file| + hosts.parse_hosts(file) + end + + expect(hosts.call('testing')).to be == true + expect(hosts['testing']).to be == '1.2.3.4' + end +end diff --git a/test/async/dns/tmp/log/Async-DNS-ServerPerformanceSpec-AsyncServerDaemon.log b/test/async/dns/tmp/log/Async-DNS-ServerPerformanceSpec-AsyncServerDaemon.log new file mode 100644 index 0000000..8f1090c --- /dev/null +++ b/test/async/dns/tmp/log/Async-DNS-ServerPerformanceSpec-AsyncServerDaemon.log @@ -0,0 +1,688 @@ +=== Log Marked @ 2017-05-25 23:45:50 +1200 [6423] === +Starting DNS server... +I, [2017-05-25T23:45:50.718114 #6426] INFO -- : Starting Async::DNS server (v0.12.0)... +I, [2017-05-25T23:45:50.718532 #6426] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2017-05-25 23:45:56 +1200 === +=== Log Marked @ 2017-05-26 00:23:06 +1200 [6835] === +Starting DNS server... +I, [2017-05-26T00:23:06.550771 #6838] INFO -- : Starting Async::DNS server (v0.12.0)... +I, [2017-05-26T00:23:06.551353 #6838] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2017-05-26 00:23:14 +1200 === +=== Log Marked @ 2017-05-26 00:23:56 +1200 [6842] === +Starting DNS server... +I, [2017-05-26T00:23:56.077981 #6845] INFO -- : Starting Async::DNS server (v0.12.0)... +I, [2017-05-26T00:23:56.078486 #6845] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2017-05-26 00:24:03 +1200 === +=== Log Marked @ 2017-05-26 00:24:19 +1200 [6849] === +Starting DNS server... +I, [2017-05-26T00:24:19.480095 #6852] INFO -- : Starting Async::DNS server (v0.12.0)... +I, [2017-05-26T00:24:19.480615 #6852] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2017-05-26 00:24:26 +1200 === +=== Log Marked @ 2017-05-26 00:24:51 +1200 [6856] === +Starting DNS server... +I, [2017-05-26T00:24:51.039153 #6859] INFO -- : Starting Async::DNS server (v0.12.0)... +I, [2017-05-26T00:24:51.039523 #6859] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2017-05-26 00:24:58 +1200 === +=== Log Marked @ 2017-07-30 14:34:35 +1200 [4104] === +Starting DNS server... +=== Daemon Exception Backtrace @ 2017-07-30 14:34:35 +1200 === +ArgumentError: unknown keyword: listen +/Users/samuel/Documents/Programming/socketry/async-dns/lib/async/dns/server.rb:40:in `initialize' +/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server_performance_spec.rb:30:in `initialize' +/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server_performance_spec.rb:82:in `new' +/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server_performance_spec.rb:82:in `startup' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/process-daemon-1.0.1/lib/process/daemon.rb:154:in `spawn' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/process-daemon-1.0.1/lib/process/daemon/controller.rb:84:in `block in spawn' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/process-daemon-1.0.1/lib/process/daemon/controller.rb:67:in `fork' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/process-daemon-1.0.1/lib/process/daemon/controller.rb:67:in `spawn' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/process-daemon-1.0.1/lib/process/daemon/controller.rb:113:in `start' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/process-daemon-1.0.1/lib/process/daemon.rb:185:in `start' +/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server_performance_spec.rb:121:in `block (3 levels) in ' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:350:in `instance_exec' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:350:in `run' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:507:in `block in run_owned_hooks_for' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:506:in `each' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:506:in `run_owned_hooks_for' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:459:in `run' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:536:in `block in run_before_context_hooks' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/memoized_helpers.rb:186:in `block in isolate_for_context_hook' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/memoized_helpers.rb:182:in `instance_exec' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/memoized_helpers.rb:182:in `isolate_for_context_hook' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:535:in `run_before_context_hooks' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:588:in `run' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `block in run' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `map' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `run' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `map' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/configuration.rb:1894:in `with_suite_hooks' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:113:in `block in run_specs' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/reporter.rb:79:in `report' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:112:in `run_specs' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:87:in `run' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:71:in `run' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:45:in `invoke' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/exe/rspec:4:in `' +/Users/samuel/.rvm/gems/ruby-2.4.0/bin/rspec:22:in `load' +/Users/samuel/.rvm/gems/ruby-2.4.0/bin/rspec:22:in `
' +/Users/samuel/.rvm/gems/ruby-2.4.0/bin/ruby_executable_hooks:15:in `eval' +/Users/samuel/.rvm/gems/ruby-2.4.0/bin/ruby_executable_hooks:15:in `
' +=== Daemon Crashed === +=== Daemon Stopping @ 2017-07-30 14:34:35 +1200 === +=== Log Marked @ 2017-07-30 14:55:11 +1200 [4188] === +Starting DNS server... +=== Daemon Exception Backtrace @ 2017-07-30 14:55:11 +1200 === +ArgumentError: unknown keyword: listen +/Users/samuel/Documents/Programming/socketry/async-dns/lib/async/dns/server.rb:40:in `initialize' +/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server_performance_spec.rb:30:in `initialize' +/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server_performance_spec.rb:82:in `new' +/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server_performance_spec.rb:82:in `startup' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/process-daemon-1.0.1/lib/process/daemon.rb:154:in `spawn' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/process-daemon-1.0.1/lib/process/daemon/controller.rb:84:in `block in spawn' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/process-daemon-1.0.1/lib/process/daemon/controller.rb:67:in `fork' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/process-daemon-1.0.1/lib/process/daemon/controller.rb:67:in `spawn' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/process-daemon-1.0.1/lib/process/daemon/controller.rb:113:in `start' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/process-daemon-1.0.1/lib/process/daemon.rb:185:in `start' +/Users/samuel/Documents/Programming/socketry/async-dns/spec/async/dns/server_performance_spec.rb:121:in `block (3 levels) in ' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:350:in `instance_exec' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:350:in `run' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:507:in `block in run_owned_hooks_for' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:506:in `each' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:506:in `run_owned_hooks_for' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/hooks.rb:459:in `run' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:536:in `block in run_before_context_hooks' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/memoized_helpers.rb:186:in `block in isolate_for_context_hook' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/memoized_helpers.rb:182:in `instance_exec' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/memoized_helpers.rb:182:in `isolate_for_context_hook' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:535:in `run_before_context_hooks' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:588:in `run' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `block in run' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `map' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/example_group.rb:590:in `run' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (3 levels) in run_specs' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `map' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:118:in `block (2 levels) in run_specs' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/configuration.rb:1894:in `with_suite_hooks' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:113:in `block in run_specs' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/reporter.rb:79:in `report' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:112:in `run_specs' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:87:in `run' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:71:in `run' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/lib/rspec/core/runner.rb:45:in `invoke' +/Users/samuel/.rvm/gems/ruby-2.4.0/gems/rspec-core-3.6.0/exe/rspec:4:in `' +/Users/samuel/.rvm/gems/ruby-2.4.0/bin/rspec:22:in `load' +/Users/samuel/.rvm/gems/ruby-2.4.0/bin/rspec:22:in `
' +/Users/samuel/.rvm/gems/ruby-2.4.0/bin/ruby_executable_hooks:15:in `eval' +/Users/samuel/.rvm/gems/ruby-2.4.0/bin/ruby_executable_hooks:15:in `
' +=== Daemon Crashed === +=== Daemon Stopping @ 2017-07-30 14:55:11 +1200 === +=== Log Marked @ 2017-07-30 14:55:40 +1200 [4218] === +Starting DNS server... +I, [2017-07-30T14:55:40.240288 #4221] INFO -- : Starting Async::DNS server (v0.12.0)... +I, [2017-07-30T14:55:40.240631 #4221] INFO -- : <> Listening for datagrams on #, options={}> +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2017-07-30 14:55:40 +1200 === +=== Log Marked @ 2017-07-30 15:47:51 +1200 [4268] === +Starting DNS server... +I, [2017-07-30T15:47:51.081394 #4271] INFO -- : Starting Async::DNS server (v0.12.0)... +I, [2017-07-30T15:47:51.081687 #4271] INFO -- : <> Listening for datagrams on #, options={}> +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2017-07-30 15:47:51 +1200 === +=== Log Marked @ 2017-07-30 15:49:20 +1200 [4292] === +Starting DNS server... +I, [2017-07-30T15:49:20.280484 #4311] INFO -- : Starting Async::DNS server (v0.12.0)... +I, [2017-07-30T15:49:20.280830 #4311] INFO -- : <> Listening for datagrams on #, options={}> +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2017-07-30 15:49:20 +1200 === +=== Log Marked @ 2017-07-30 16:11:24 +1200 [4409] === +Starting DNS server... +I, [2017-07-30T16:11:24.023518 #4412] INFO -- : Starting Async::DNS server (v0.12.0)... +I, [2017-07-30T16:11:24.023880 #4412] INFO -- : <> Listening for datagrams on #, options={}> +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2017-07-30 16:11:24 +1200 === +=== Log Marked @ 2017-07-30 16:21:49 +1200 [4458] === +Starting DNS server... +I, [2017-07-30T16:21:49.253305 #4461] INFO -- : Starting Async::DNS server (v0.12.0)... +I, [2017-07-30T16:21:49.253700 #4461] INFO -- : <> Listening for datagrams on #, options={}> +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2017-07-30 16:21:55 +1200 === +=== Log Marked @ 2018-02-07 17:01:37 +1300 [26523] === +Starting DNS server... +I, [2018-02-07T17:01:37.085530 #26531] INFO -- : Starting Async::DNS server (v1.0.0)... +I, [2018-02-07T17:01:37.086119 #26531] INFO -- : <> Listening for datagrams on #, options={}> +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-02-07 17:01:42 +1300 === +=== Log Marked @ 2018-02-07 17:02:35 +1300 [26549] === +Starting DNS server... +I, [2018-02-07T17:02:35.800097 #26584] INFO -- : Starting Async::DNS server (v1.0.0)... +I, [2018-02-07T17:02:35.800669 #26584] INFO -- : <> Listening for datagrams on #, options={}> +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-02-07 17:02:41 +1300 === +=== Log Marked @ 2018-02-07 17:21:12 +1300 [27020] === +Starting DNS server... +I, [2018-02-07T17:21:12.738911 #27026] INFO -- : Starting Async::DNS server (v1.0.0)... +I, [2018-02-07T17:21:12.739484 #27026] INFO -- : <> Listening for datagrams on #, options={}> +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-02-07 17:21:17 +1300 === +=== Log Marked @ 2018-02-07 19:31:56 +1300 [27948] === +Starting DNS server... +I, [2018-02-07T19:31:56.224577 #27956] INFO -- : Starting Async::DNS server (v1.0.0)... +I, [2018-02-07T19:31:56.225068 #27956] INFO -- : <> Listening for datagrams on #, options={}> +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-02-07 19:32:01 +1300 === +=== Log Marked @ 2018-02-07 20:03:01 +1300 [28156] === +Starting DNS server... +I, [2018-02-07T20:03:01.504927 #28168] INFO -- : Starting Async::DNS server (v1.0.0)... +I, [2018-02-07T20:03:01.505429 #28168] INFO -- : <> Listening for datagrams on #, options={}> +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-02-07 20:03:06 +1300 === +=== Log Marked @ 2018-02-07 20:09:55 +1300 [28238] === +Starting DNS server... +I, [2018-02-07T20:09:55.779295 #28248] INFO -- : Starting Async::DNS server (v1.0.0)... +I, [2018-02-07T20:09:55.779835 #28248] INFO -- : <> Listening for datagrams on #, options={}> +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-02-07 20:10:00 +1300 === +=== Log Marked @ 2018-02-07 20:11:09 +1300 [28272] === +Starting DNS server... +I, [2018-02-07T20:11:09.660555 #28277] INFO -- : Starting Async::DNS server (v1.0.0)... +I, [2018-02-07T20:11:09.661292 #28277] INFO -- : <> Listening for datagrams on #, options={}> +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-02-07 20:11:14 +1300 === +=== Log Marked @ 2018-02-07 20:18:18 +1300 [28352] === +Starting DNS server... +I, [2018-02-07T20:18:18.362676 #28366] INFO -- : Starting Async::DNS server (v1.0.0)... +I, [2018-02-07T20:18:18.363238 #28366] INFO -- : <> Listening for datagrams on #, options={}> +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-02-07 20:18:23 +1300 === +=== Log Marked @ 2018-02-07 20:29:16 +1300 [28697] === +Starting DNS server... +I, [2018-02-07T20:29:16.717548 #28703] INFO -- : Starting Async::DNS server (v1.0.0)... +I, [2018-02-07T20:29:16.718098 #28703] INFO -- : <> Listening for datagrams on #, options={}> +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-02-07 20:29:21 +1300 === +=== Log Marked @ 2018-02-07 20:31:38 +1300 [28746] === +Starting DNS server... +I, [2018-02-07T20:31:38.590578 #28753] INFO -- : Starting Async::DNS server (v1.0.0)... +I, [2018-02-07T20:31:38.591165 #28753] INFO -- : <> Listening for datagrams on #, options={}> +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-02-07 20:31:44 +1300 === +=== Log Marked @ 2018-02-07 20:49:45 +1300 [29076] === +Starting DNS server... +I, [2018-02-07T20:49:45.095731 #29095] INFO -- : Starting Async::DNS server (v1.0.0)... +I, [2018-02-07T20:49:45.096278 #29095] INFO -- : <> Listening for datagrams on #, options={}> +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-02-07 20:49:49 +1300 === +=== Log Marked @ 2018-03-15 03:28:12 +1300 [3552] === +Starting DNS server... +I, [2018-03-15T03:28:12.157238 #3555] INFO -- : Starting Async::DNS server (v1.0.0)... +=== Daemon Exception Backtrace @ 2018-03-15 03:28:12 +1300 === +NoMethodError: undefined method `socket_type' for # +/Users/samuel/Documents/socketry/async-dns/lib/async/dns/server.rb:128:in `block in setup_handlers' +/Users/samuel/.rvm/gems/ruby-2.5.0/gems/async-io-1.3.0/lib/async/io/endpoint.rb:66:in `block in each' +/Users/samuel/.rvm/gems/ruby-2.5.0/gems/async-io-1.3.0/lib/async/io/endpoint.rb:62:in `each' +/Users/samuel/.rvm/gems/ruby-2.5.0/gems/async-io-1.3.0/lib/async/io/endpoint.rb:62:in `each' +/Users/samuel/Documents/socketry/async-dns/lib/async/dns/server.rb:127:in `setup_handlers' +/Users/samuel/Documents/socketry/async-dns/lib/async/dns/server.rb:109:in `run' +/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server_performance_spec.rb:85:in `block in startup' +/Users/samuel/.rvm/gems/ruby-2.5.0/gems/async-1.2.2/lib/async/task.rb:74:in `block in initialize' +=== Daemon Crashed === +=== Daemon Stopping @ 2018-03-15 03:28:12 +1300 === +=== Log Marked @ 2018-03-15 03:31:33 +1300 [3644] === +Starting DNS server... +I, [2018-03-15T03:31:33.748110 #3648] INFO -- : Starting Async::DNS server (v1.0.0)... +=== Daemon Exception Backtrace @ 2018-03-15 03:31:33 +1300 === +NoMethodError: undefined method `socket_type' for # +/Users/samuel/Documents/socketry/async-dns/lib/async/dns/server.rb:128:in `block in setup_handlers' +/Users/samuel/.rvm/gems/ruby-2.5.0/gems/async-io-1.3.0/lib/async/io/endpoint.rb:66:in `block in each' +/Users/samuel/.rvm/gems/ruby-2.5.0/gems/async-io-1.3.0/lib/async/io/endpoint.rb:62:in `each' +/Users/samuel/.rvm/gems/ruby-2.5.0/gems/async-io-1.3.0/lib/async/io/endpoint.rb:62:in `each' +/Users/samuel/Documents/socketry/async-dns/lib/async/dns/server.rb:127:in `setup_handlers' +/Users/samuel/Documents/socketry/async-dns/lib/async/dns/server.rb:109:in `run' +/Users/samuel/Documents/socketry/async-dns/spec/async/dns/server_performance_spec.rb:85:in `block in startup' +/Users/samuel/.rvm/gems/ruby-2.5.0/gems/async-1.2.2/lib/async/task.rb:74:in `block in initialize' +=== Daemon Crashed === +=== Daemon Stopping @ 2018-03-15 03:31:33 +1300 === +=== Log Marked @ 2018-03-15 03:36:33 +1300 [3756] === +Starting DNS server... +I, [2018-03-15T03:36:33.413804 #3759] INFO -- : Starting Async::DNS server (v1.0.0)... +=== Daemon Exception Backtrace @ 2018-03-15 03:36:33 +1300 === +NoMethodError: undefined method `socktype' for # +/Users/samuel/Documents/socketry/async-dns/lib/async/dns/server.rb:129:in `block (2 levels) in setup_handlers' +/Users/samuel/.rvm/gems/ruby-2.5.0/gems/async-io-1.3.0/lib/async/io/socket.rb:151:in `bind' +/Users/samuel/.rvm/gems/ruby-2.5.0/gems/async-io-1.3.0/lib/async/io/endpoint.rb:111:in `block (2 levels) in bind' +/Users/samuel/.rvm/gems/ruby-2.5.0/gems/async-1.2.2/lib/async/task.rb:74:in `block in initialize' +=== Daemon Crashed === +=== Daemon Stopping @ 2018-03-15 03:36:33 +1300 === +=== Log Marked @ 2018-03-15 03:38:22 +1300 [3827] === +Starting DNS server... +I, [2018-03-15T03:38:22.707239 #3830] INFO -- : Starting Async::DNS server (v1.0.0)... +=== Daemon Exception Backtrace @ 2018-03-15 03:38:22 +1300 === +NoMethodError: undefined method `socktype' for # +Did you mean? socket_type +/Users/samuel/Documents/socketry/async-dns/lib/async/dns/server.rb:129:in `block (2 levels) in setup_handlers' +/Users/samuel/.rvm/gems/ruby-2.5.0/gems/async-io-1.3.0/lib/async/io/socket.rb:155:in `bind' +/Users/samuel/.rvm/gems/ruby-2.5.0/gems/async-io-1.3.0/lib/async/io/endpoint.rb:111:in `block (2 levels) in bind' +/Users/samuel/.rvm/gems/ruby-2.5.0/gems/async-1.2.2/lib/async/task.rb:74:in `block in initialize' +=== Daemon Crashed === +=== Daemon Stopping @ 2018-03-15 03:38:22 +1300 === +=== Log Marked @ 2018-03-15 03:39:36 +1300 [3876] === +Starting DNS server... +I, [2018-03-15T03:39:36.932399 #3880] INFO -- : Starting Async::DNS server (v1.0.0)... +=== Daemon Exception Backtrace @ 2018-03-15 03:39:36 +1300 === +NoMethodError: undefined method `local_addresss' for # +Did you mean? local_address +/Users/samuel/.rvm/gems/ruby-2.5.0/gems/async-io-1.3.0/lib/async/io/socket.rb:38:in `type' +/Users/samuel/Documents/socketry/async-dns/lib/async/dns/server.rb:129:in `block (2 levels) in setup_handlers' +/Users/samuel/.rvm/gems/ruby-2.5.0/gems/async-io-1.3.0/lib/async/io/socket.rb:155:in `bind' +/Users/samuel/.rvm/gems/ruby-2.5.0/gems/async-io-1.3.0/lib/async/io/endpoint.rb:111:in `block (2 levels) in bind' +/Users/samuel/.rvm/gems/ruby-2.5.0/gems/async-1.2.2/lib/async/task.rb:74:in `block in initialize' +=== Daemon Crashed === +=== Daemon Stopping @ 2018-03-15 03:39:36 +1300 === +=== Log Marked @ 2018-03-15 03:40:12 +1300 [3903] === +Starting DNS server... +I, [2018-03-15T03:40:12.819248 #3908] INFO -- : Starting Async::DNS server (v1.0.0)... +I, [2018-03-15T03:40:12.819954 #3908] INFO -- : <> Listening for datagrams on # +=== Daemon Exception Backtrace @ 2018-03-15 03:40:12 +1300 === +IOError: closed stream +/Users/samuel/.rvm/rubies/ruby-2.5.0/lib/ruby/2.5.0/socket.rb:444:in `__recvmsg_nonblock' +/Users/samuel/.rvm/rubies/ruby-2.5.0/lib/ruby/2.5.0/socket.rb:444:in `recvmsg_nonblock' +/Users/samuel/.rvm/gems/ruby-2.5.0/gems/async-io-1.3.0/lib/async/io/generic.rb:99:in `block in async_send' +/Users/samuel/.rvm/gems/ruby-2.5.0/gems/async-io-1.3.0/lib/async/io/generic.rb:105:in `async' +/Users/samuel/.rvm/gems/ruby-2.5.0/gems/async-io-1.3.0/lib/async/io/generic.rb:98:in `async_send' +/Users/samuel/.rvm/gems/ruby-2.5.0/gems/async-io-1.3.0/lib/async/io/generic.rb:43:in `block in wrap_blocking_method' +/Users/samuel/Documents/socketry/async-dns/lib/async/dns/handler.rb:72:in `run' +/Users/samuel/Documents/socketry/async-dns/lib/async/dns/server.rb:114:in `block (3 levels) in run' +/Users/samuel/.rvm/gems/ruby-2.5.0/gems/async-1.2.2/lib/async/task.rb:74:in `block in initialize' +=== Daemon Crashed === +=== Daemon Stopping @ 2018-03-15 03:40:12 +1300 === +=== Log Marked @ 2018-03-15 03:52:12 +1300 [4040] === +Starting DNS server... +I, [2018-03-15T03:52:12.382778 #4044] INFO -- : Starting Async::DNS server (v1.0.0)... +I, [2018-03-15T03:52:12.386740 #4044] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-03-15 03:52:16 +1300 === +=== Log Marked @ 2018-03-15 03:53:01 +1300 [4064] === +Starting DNS server... +I, [2018-03-15T03:53:01.356639 #4071] INFO -- : Starting Async::DNS server (v1.0.0)... +I, [2018-03-15T03:53:01.358159 #4071] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-03-15 03:53:05 +1300 === +=== Log Marked @ 2018-03-16 20:18:13 +1300 [16691] === +Starting DNS server... +I, [2018-03-16T20:18:13.663949 #16697] INFO -- : Starting Async::DNS server (v1.1.0)... +I, [2018-03-16T20:18:13.665247 #16697] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-03-16 20:18:19 +1300 === +=== Log Marked @ 2018-03-18 11:37:10 +1300 [41718] === +Starting DNS server... +I, [2018-03-18T11:37:10.980140 #41727] INFO -- : Starting Async::DNS server (v1.1.0)... +I, [2018-03-18T11:37:10.980896 #41727] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-03-18 11:37:15 +1300 === +=== Log Marked @ 2018-03-21 20:27:43 +1300 [88630] === +Starting DNS server... +I, [2018-03-21T20:27:43.679995 #88635] INFO -- : Starting Async::DNS server (v1.1.0)... +I, [2018-03-21T20:27:43.681452 #88635] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-03-21 20:27:50 +1300 === +=== Log Marked @ 2018-03-25 16:19:10 +1300 [1634] === +Starting DNS server... +I, [2018-03-25T16:19:10.713117 #1639] INFO -- : Starting Async::DNS server (v1.1.0)... +I, [2018-03-25T16:19:10.713825 #1639] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-03-25 16:19:10 +1300 === +=== Log Marked @ 2018-03-25 16:39:57 +1300 [1964] === +Starting DNS server... +I, [2018-03-25T16:39:57.433192 #1970] INFO -- : Starting Async::DNS server (v1.1.0)... +I, [2018-03-25T16:39:57.434071 #1970] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-03-25 16:40:01 +1300 === +=== Log Marked @ 2018-03-25 16:40:37 +1300 [1985] === +Starting DNS server... +I, [2018-03-25T16:40:37.115930 #1991] INFO -- : Starting Async::DNS server (v1.1.0)... +I, [2018-03-25T16:40:37.116913 #1991] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-03-25 16:40:41 +1300 === +=== Log Marked @ 2018-03-25 16:41:23 +1300 [2008] === +Starting DNS server... +I, [2018-03-25T16:41:23.403414 #2014] INFO -- : Starting Async::DNS server (v1.1.0)... +I, [2018-03-25T16:41:23.404420 #2014] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-03-25 16:41:27 +1300 === +=== Log Marked @ 2018-03-25 16:42:16 +1300 [2029] === +Starting DNS server... +I, [2018-03-25T16:42:16.832930 #2039] INFO -- : Starting Async::DNS server (v1.1.0)... +I, [2018-03-25T16:42:16.833871 #2039] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-03-25 16:42:21 +1300 === +=== Log Marked @ 2018-03-25 16:43:29 +1300 [2065] === +Starting DNS server... +I, [2018-03-25T16:43:29.760002 #2071] INFO -- : Starting Async::DNS server (v1.1.0)... +I, [2018-03-25T16:43:29.761061 #2071] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-03-25 16:43:33 +1300 === +=== Log Marked @ 2018-03-25 17:27:57 +1300 [2356] === +Starting DNS server... +I, [2018-03-25T17:27:57.662662 #2368] INFO -- : Starting Async::DNS server (v1.1.0)... +I, [2018-03-25T17:27:57.663908 #2368] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-03-25 17:28:02 +1300 === +=== Log Marked @ 2018-03-25 17:30:33 +1300 [2399] === +Starting DNS server... +I, [2018-03-25T17:30:33.293351 #2407] INFO -- : Starting Async::DNS server (v1.1.0)... +I, [2018-03-25T17:30:33.294562 #2407] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-03-25 17:30:37 +1300 === +=== Log Marked @ 2018-03-26 17:30:30 +1300 [7947] === +Starting DNS server... +I, [2018-03-26T17:30:30.505226 #7950] INFO -- : Starting Async::DNS server (v1.1.0)... +I, [2018-03-26T17:30:30.506086 #7950] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-03-26 17:30:30 +1300 === +=== Log Marked @ 2018-03-26 17:31:11 +1300 [7966] === +Starting DNS server... +I, [2018-03-26T17:31:11.465216 #7969] INFO -- : Starting Async::DNS server (v1.1.0)... +I, [2018-03-26T17:31:11.466110 #7969] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-03-26 17:31:11 +1300 === +=== Log Marked @ 2018-03-26 17:33:22 +1300 [8062] === +Starting DNS server... +I, [2018-03-26T17:33:22.663463 #8067] INFO -- : Starting Async::DNS server (v1.1.0)... +I, [2018-03-26T17:33:22.664699 #8067] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-03-26 17:33:27 +1300 === +=== Log Marked @ 2018-03-26 17:38:59 +1300 [8204] === +Starting DNS server... +I, [2018-03-26T17:38:59.392451 #8210] INFO -- : Starting Async::DNS server (v1.1.0)... +I, [2018-03-26T17:38:59.393278 #8210] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-03-26 17:39:03 +1300 === +=== Log Marked @ 2018-03-26 17:53:12 +1300 [8406] === +Starting DNS server... +I, [2018-03-26T17:53:12.758868 #8414] INFO -- : Starting Async::DNS server (v1.1.0)... +I, [2018-03-26T17:53:12.759814 #8414] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-03-26 17:53:16 +1300 === +=== Log Marked @ 2018-03-26 17:55:27 +1300 [8517] === +Starting DNS server... +I, [2018-03-26T17:55:27.591505 #8522] INFO -- : Starting Async::DNS server (v1.1.0)... +I, [2018-03-26T17:55:27.592715 #8522] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-03-26 17:55:32 +1300 === +=== Log Marked @ 2018-03-26 18:53:20 +1300 [9380] === +Starting DNS server... +I, [2018-03-26T18:53:20.427185 #9386] INFO -- : Starting Async::DNS server (v1.1.0)... +I, [2018-03-26T18:53:20.428050 #9386] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-03-26 18:53:24 +1300 === +=== Log Marked @ 2018-03-26 19:40:50 +1300 [11440] === +Starting DNS server... +I, [2018-03-26T19:40:50.865247 #11446] INFO -- : Starting Async::DNS server (v1.1.0)... +I, [2018-03-26T19:40:50.866975 #11446] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-03-26 19:40:55 +1300 === +=== Log Marked @ 2018-03-26 19:51:06 +1300 [11578] === +Starting DNS server... +I, [2018-03-26T19:51:06.981615 #11585] INFO -- : Starting Async::DNS server (v1.1.0)... +I, [2018-03-26T19:51:06.982606 #11585] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-03-26 19:51:11 +1300 === +=== Log Marked @ 2018-03-29 01:07:32 +1300 [60716] === +Starting DNS server... +I, [2018-03-29T01:07:32.669169 #60727] INFO -- : Starting Async::DNS server (v1.1.0)... +I, [2018-03-29T01:07:32.670307 #60727] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-03-29 01:07:36 +1300 === +=== Log Marked @ 2018-04-11 22:52:18 +1200 [49274] === +Starting DNS server... +I, [2018-04-11T22:52:18.683561 #49281] INFO -- : Starting Async::DNS server (v1.1.0)... +I, [2018-04-11T22:52:18.684441 #49281] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-04-11 22:52:23 +1200 === +=== Log Marked @ 2018-04-11 22:56:53 +1200 [49528] === +Starting DNS server... +I, [2018-04-11T22:56:53.499968 #49537] INFO -- : Starting Async::DNS server (v1.1.0)... +I, [2018-04-11T22:56:53.500964 #49537] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-04-11 22:56:58 +1200 === +=== Log Marked @ 2018-05-01 00:43:46 +1200 [43732] === +Starting DNS server... +I, [2018-05-01T00:43:46.976498 #43735] INFO -- : Starting Async::DNS server (v1.1.0)... +=== Daemon Exception Backtrace @ 2018-05-01 00:43:46 +1200 === +NoMethodError: undefined method `udp' for Async::IO::Endpoint:Class +/Users/samuel/.rvm/gems/ruby-2.5.0/gems/async-io-1.9.0/lib/async/io/endpoint.rb:48:in `try_convert' +/Users/samuel/.rvm/gems/ruby-2.5.0/gems/async-io-1.9.0/lib/async/io/endpoint.rb:65:in `block in each' +/Users/samuel/.rvm/gems/ruby-2.5.0/gems/async-io-1.9.0/lib/async/io/endpoint.rb:64:in `each' +/Users/samuel/.rvm/gems/ruby-2.5.0/gems/async-io-1.9.0/lib/async/io/endpoint.rb:64:in `each' +/Users/samuel/Documents/socketry/async-dns/lib/async/dns/server.rb:110:in `block in run' +/Users/samuel/.rvm/gems/ruby-2.5.0/gems/async-1.8.0/lib/async/task.rb:74:in `block in initialize' +=== Daemon Crashed === +=== Daemon Stopping @ 2018-05-01 00:43:46 +1200 === +=== Log Marked @ 2018-05-01 00:45:20 +1200 [43803] === +Starting DNS server... +I, [2018-05-01T00:45:20.602716 #43811] INFO -- : Starting Async::DNS server (v1.2.0)... +I, [2018-05-01T00:45:20.604043 #43811] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-05-01 00:45:24 +1200 === +=== Log Marked @ 2018-05-01 01:01:34 +1200 [44075] === +Starting DNS server... +I, [2018-05-01T01:01:34.234713 #44084] INFO -- : Starting Async::DNS server (v1.1.1)... +I, [2018-05-01T01:01:34.235633 #44084] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-05-01 01:01:38 +1200 === +=== Log Marked @ 2018-05-01 01:30:02 +1200 [44543] === +Starting DNS server... +I, [2018-05-01T01:30:02.367362 #44559] INFO -- : Starting Async::DNS server (v1.1.0)... +I, [2018-05-01T01:30:02.368402 #44559] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-05-01 01:30:06 +1200 === +=== Log Marked @ 2018-05-01 02:22:37 +1200 [45485] === +Starting DNS server... +I, [2018-05-01T02:22:37.707214 #45490] INFO -- : Starting Async::DNS server (v1.1.0)... +I, [2018-05-01T02:22:37.708048 #45490] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-05-01 02:22:42 +1200 === +=== Log Marked @ 2018-05-01 02:25:57 +1200 [45595] === +Starting DNS server... +I, [2018-05-01T02:25:57.285081 #45600] INFO -- : Starting Async::DNS server (v1.1.0)... +I, [2018-05-01T02:25:57.286140 #45600] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-05-01 02:26:01 +1200 === +=== Log Marked @ 2018-05-03 00:38:58 +1200 [66630] === +Starting DNS server... +I, [2018-05-03T00:38:58.711872 #66636] INFO -- : Starting Async::DNS server (v1.1.1)... +I, [2018-05-03T00:38:58.713314 #66636] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-05-03 00:39:03 +1200 === +=== Log Marked @ 2018-05-04 01:55:26 +1200 [82337] === +Starting DNS server... +I, [2018-05-04T01:55:26.762837 #82342] INFO -- : Starting Async::DNS server (v1.1.1)... +I, [2018-05-04T01:55:26.764105 #82342] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-05-04 01:55:30 +1200 === +=== Log Marked @ 2018-05-18 00:06:43 +1200 [30425] === +Starting DNS server... +I, [2018-05-18T00:06:43.276422 #30439] INFO -- : Starting Async::DNS server (v1.2.0)... +I, [2018-05-18T00:06:43.277289 #30439] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-05-18 00:06:47 +1200 === +=== Log Marked @ 2018-06-17 12:35:23 +1200 [49846] === +Starting DNS server... +I, [2018-06-17T12:35:23.103560 #49853] INFO -- : Starting Async::DNS server (v1.2.0)... +I, [2018-06-17T12:35:23.104343 #49853] INFO -- : <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2018-06-17 12:35:27 +1200 === +=== Log Marked @ 2019-01-13 13:14:03 +1300 [30001] === +Starting DNS server... +12.42s: Starting Async::DNS server (v1.2.0)... +12.42s: <> Listening for datagrams on # +12.64s: <56108> Exception thrown while processing ! +12.64s: ArgumentError: wrong number of arguments (given 0, expected 1+) +12.64s: /Users/samuel/.rvm/gems/ruby-2.6.0/gems/async-1.13.0/lib/async/logger.rb:30:in `block (2 levels) in ' +12.64s: /Users/samuel/Documents/socketry/async-dns/lib/async/dns/server.rb:80:in `block in process_query' +12.64s: /Users/samuel/Documents/socketry/async-dns/lib/async/dns/server.rb:76:in `each' +12.64s: /Users/samuel/Documents/socketry/async-dns/lib/async/dns/server.rb:76:in `process_query' +12.64s: /Users/samuel/Documents/socketry/async-dns/lib/async/dns/handler.rb:58:in `process_query' +12.64s: /Users/samuel/Documents/socketry/async-dns/lib/async/dns/handler.rb:81:in `respond' +12.64s: /Users/samuel/Documents/socketry/async-dns/lib/async/dns/handler.rb:75:in `block in run' +12.64s: /Users/samuel/.rvm/gems/ruby-2.6.0/gems/async-1.13.0/lib/async/task.rb:197:in `block in make_fiber' +12.64s: <> Error processing request: #! +12.64s: ArgumentError: wrong number of arguments (given 0, expected 1+) +12.64s: /Users/samuel/.rvm/gems/ruby-2.6.0/gems/async-1.13.0/lib/async/logger.rb:30:in `block (2 levels) in ' +12.64s: /Users/samuel/Documents/socketry/async-dns/lib/async/dns/server.rb:98:in `process_query' +12.64s: /Users/samuel/Documents/socketry/async-dns/lib/async/dns/handler.rb:58:in `process_query' +12.64s: /Users/samuel/Documents/socketry/async-dns/lib/async/dns/handler.rb:81:in `respond' +12.64s: /Users/samuel/Documents/socketry/async-dns/lib/async/dns/handler.rb:75:in `block in run' +12.64s: /Users/samuel/.rvm/gems/ruby-2.6.0/gems/async-1.13.0/lib/async/task.rb:197:in `block in make_fiber' +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2019-01-13 13:14:13 +1300 === +=== Log Marked @ 2019-01-13 13:23:28 +1300 [30275] === +Starting DNS server... + 17.0s: Starting Async::DNS server (v1.2.0)... +17.01s: <> Listening for datagrams on # +17.23s: <45911> Exception thrown while processing ! +17.23s: ArgumentError: wrong number of arguments (given 0, expected 1+) +17.23s: /Users/samuel/.rvm/gems/ruby-2.6.0/gems/async-1.13.0/lib/async/logger.rb:30:in `block (2 levels) in ' +17.23s: /Users/samuel/Documents/socketry/async-dns/lib/async/dns/server.rb:80:in `block in process_query' +17.23s: /Users/samuel/Documents/socketry/async-dns/lib/async/dns/server.rb:76:in `each' +17.23s: /Users/samuel/Documents/socketry/async-dns/lib/async/dns/server.rb:76:in `process_query' +17.23s: /Users/samuel/Documents/socketry/async-dns/lib/async/dns/handler.rb:58:in `process_query' +17.23s: /Users/samuel/Documents/socketry/async-dns/lib/async/dns/handler.rb:81:in `respond' +17.23s: /Users/samuel/Documents/socketry/async-dns/lib/async/dns/handler.rb:75:in `block in run' +17.23s: /Users/samuel/.rvm/gems/ruby-2.6.0/gems/async-1.13.0/lib/async/task.rb:197:in `block in make_fiber' +17.23s: <> Error processing request: #! +17.23s: ArgumentError: wrong number of arguments (given 0, expected 1+) +17.23s: /Users/samuel/.rvm/gems/ruby-2.6.0/gems/async-1.13.0/lib/async/logger.rb:30:in `block (2 levels) in ' +17.23s: /Users/samuel/Documents/socketry/async-dns/lib/async/dns/server.rb:98:in `process_query' +17.23s: /Users/samuel/Documents/socketry/async-dns/lib/async/dns/handler.rb:58:in `process_query' +17.23s: /Users/samuel/Documents/socketry/async-dns/lib/async/dns/handler.rb:81:in `respond' +17.23s: /Users/samuel/Documents/socketry/async-dns/lib/async/dns/handler.rb:75:in `block in run' +17.23s: /Users/samuel/.rvm/gems/ruby-2.6.0/gems/async-1.13.0/lib/async/task.rb:197:in `block in make_fiber' +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2019-01-13 13:23:38 +1300 === +=== Log Marked @ 2019-01-13 13:24:33 +1300 [30310] === +Starting DNS server... +20.74s: Starting Async::DNS server (v1.2.0)... +20.74s: <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2019-01-13 13:24:37 +1300 === +=== Log Marked @ 2019-01-13 13:29:06 +1300 [30619] === +Starting DNS server... +18.92s: Starting Async::DNS server (v1.2.0)... +18.92s: <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2019-01-13 13:29:06 +1300 === +=== Log Marked @ 2019-01-13 13:42:56 +1300 [30668] === +Starting DNS server... +24.68s: Starting Async::DNS server (v1.2.0)... +24.68s: <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2019-01-13 13:42:56 +1300 === +=== Log Marked @ 2019-01-13 13:45:06 +1300 [30686] === +Starting DNS server... +24.49s: Starting Async::DNS server (v1.2.0)... +24.49s: <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2019-01-13 13:45:11 +1300 === +=== Log Marked @ 2019-01-21 14:10:27 +1300 [58724] === +Starting DNS server... +21.11s: Starting Async::DNS server (v1.2.1)... +21.11s: <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2019-01-21 14:10:32 +1300 === +=== Log Marked @ 2019-01-21 14:19:32 +1300 [59066] === +Starting DNS server... +21.65s: Starting Async::DNS server (v1.2.1)... +21.65s: <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2019-01-21 14:19:36 +1300 === +=== Log Marked @ 2019-01-21 14:21:36 +1300 [59081] === +Starting DNS server... +20.33s: Starting Async::DNS server (v1.2.1)... +20.33s: <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2019-01-21 14:21:40 +1300 === +=== Log Marked @ 2019-04-26 17:35:57 +1200 [9092] === +Starting DNS server... +15.58s: Starting Async::DNS server (v1.2.2)... +15.58s: <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2019-04-26 17:36:02 +1200 === +=== Log Marked @ 2019-04-26 17:36:46 +1200 [9106] === +Starting DNS server... +23.75s: Starting Async::DNS server (v1.2.2)... +23.75s: <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2019-04-26 17:36:51 +1200 === +=== Log Marked @ 2019-04-26 17:40:56 +1200 [9222] === +Starting DNS server... + 26.0s: Starting Async::DNS server (v1.2.2)... +26.01s: <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2019-04-26 17:41:01 +1200 === +=== Log Marked @ 2019-04-26 17:42:34 +1200 [9242] === +Starting DNS server... +23.89s: Starting Async::DNS server (v1.2.2)... +23.89s: <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2019-04-26 17:42:39 +1200 === +=== Log Marked @ 2019-04-26 17:46:15 +1200 [9325] === +Starting DNS server... +16.48s: Starting Async::DNS server (v1.2.3)... +16.48s: <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2019-04-26 17:46:22 +1200 === +=== Log Marked @ 2019-04-26 17:47:28 +1200 [9341] === +Starting DNS server... + 16.2s: Starting Async::DNS server (v1.2.3)... + 16.2s: <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2019-04-26 17:47:33 +1200 === +=== Log Marked @ 2019-04-26 17:48:37 +1200 [9353] === +Starting DNS server... +25.19s: Starting Async::DNS server (v1.2.3)... +25.19s: <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2019-04-26 17:48:44 +1200 === +=== Log Marked @ 2019-04-26 17:49:59 +1200 [9371] === +Starting DNS server... +25.71s: Starting Async::DNS server (v1.2.3)... +25.71s: <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2019-04-26 17:50:05 +1200 === +=== Log Marked @ 2019-04-26 18:11:17 +1200 [10095] === +Starting DNS server... +27.82s: Starting Async::DNS server (v1.2.4)... +27.82s: <> Listening for datagrams on # +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2019-04-26 18:11:22 +1200 === +=== Log Marked @ 2019-12-06 17:00:27 +0900 [3168] === +Starting DNS server... +13.57s info: Starting Async::DNS server (v1.2.4)... [pid=3171] [2019-12-06 17:00:27 +0900] +13.57s info: <> Listening for datagrams on # [pid=3171] [2019-12-06 17:00:27 +0900] +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2019-12-06 17:00:31 +0900 === +=== Log Marked @ 2021-05-08 16:11:58 +1200 [31601] === +Starting DNS server... +29.16s info: Starting Async::DNS server (v1.2.5)... [ec=0x3497c] [pid=31603] [2021-05-08 16:11:58 +1200] +29.16s info: <> Listening for datagrams on # [ec=0x34990] [pid=31603] [2021-05-08 16:11:58 +1200] +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2021-05-08 16:11:58 +1200 === +=== Log Marked @ 2024-01-02 12:45:09 +1300 [9585] === +Starting DNS server... + 9.79s info: Starting Async::DNS server (v1.3.0)... [ec=0x1a838] [pid=9589] [2024-01-02 12:45:09 +1300] + 9.79s info: <> Listening for datagrams on #: binding to # [ec=0x1a84c] [pid=9589] [2024-01-02 12:45:09 +1300] +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2024-01-02 12:45:09 +1300 === +=== Log Marked @ 2024-01-02 12:45:52 +1300 [10352] === +Starting DNS server... + 9.22s info: Starting Async::DNS server (v1.3.0)... [ec=0x1a84c] [pid=10356] [2024-01-02 12:45:52 +1300] + 9.22s info: <> Listening for datagrams on #: binding to # [ec=0x1a860] [pid=10356] [2024-01-02 12:45:52 +1300] +Daemon interrupted, proceeding to shutdown. +=== Daemon Stopping @ 2024-01-02 12:45:53 +1300 === diff --git a/test/async/dns/transaction.rb b/test/async/dns/transaction.rb new file mode 100755 index 0000000..6e14102 --- /dev/null +++ b/test/async/dns/transaction.rb @@ -0,0 +1,122 @@ +#!/usr/bin/env rspec +# frozen_string_literal: true + +# Released under the MIT License. +# Copyright, 2015-2024, by Samuel Williams. + +require 'async/dns' +require 'yaml' + +SERVER_PORTS = [[:udp, '8.8.8.8', 53], [:tcp, '8.8.8.8', 53]] +IN = Resolv::DNS::Resource::IN + +describe Async::DNS::Transaction do + let(:server) { Async::DNS::Server.new } + let(:query) { Async::DNS::Message.new(0) } + let(:question) { Resolv::DNS::Name.create("www.google.com.") } + let(:response) { Async::DNS::Message.new(0) } + let(:resolver) { Async::DNS::Resolver.new([[:udp, '8.8.8.8', 53], [:tcp, '8.8.8.8', 53]])} + + include Sus::Fixtures::Async::ReactorContext + + it "should append an address" do + transaction = Async::DNS::Transaction.new(server, query, question, IN::A, response) + + transaction.respond!("1.2.3.4") + + expect(transaction.response.answer[0][0]).to be == question + expect(transaction.response.answer[0][2].address.to_s).to be == "1.2.3.4" + end + + it "should passthrough the request" do + transaction = Async::DNS::Transaction.new(server, query, question, IN::A, response) + + expect(transaction.response.answer.size).to be == 0 + + transaction.passthrough!(resolver) + + expect(transaction.response.answer.size).to be > 0 + end + + it "should return a response on passthrough" do + transaction = Async::DNS::Transaction.new(server, query, question, IN::A, response) + + expect(transaction.response.answer.size).to be == 0 + + response = transaction.passthrough(resolver) + + expect(response.answer.length).to be > 0 + end + + it "should call the block with the response when invoking passthrough!" do + transaction = Async::DNS::Transaction.new(server, query, question, IN::A, response) + + expect(transaction.response.answer.size).to be == 0 + + passthrough_response = nil + + transaction.passthrough!(resolver) do |response| + passthrough_response = response + end + + expect(passthrough_response.answer.length).to be > 0 + end + + it "should fail the request" do + transaction = Async::DNS::Transaction.new(server, query, question, IN::A, response) + + transaction.fail! :NXDomain + + expect(transaction.response.rcode).to be == Resolv::DNS::RCode::NXDomain + end + + it "should return AAAA record" do + transaction = Async::DNS::Transaction.new(server, query, question, IN::AAAA, response) + + expect(transaction.response.answer.size).to be == 0 + + transaction.passthrough!(resolver) + + expect(transaction.response.answer.first[2]).to be_a IN::AAAA + end + + it "should return MX record" do + transaction = Async::DNS::Transaction.new(server,query,"google.com",IN::MX, response) + + expect(transaction.response.answer.size).to be == 0 + + transaction.passthrough!(resolver) + + expect(transaction.response.answer.first[2]).to be_a IN::MX + end + + it "should return NS record" do + transaction = Async::DNS::Transaction.new(server, query, "google.com", IN::NS, response) + + expect(transaction.response.answer.size).to be == 0 + + transaction.passthrough!(resolver) + + expect(transaction.response.answer.first[2]).to be_a IN::NS + end + + it "should return PTR record" do + transaction = Async::DNS::Transaction.new(server, query, "1.1.1.1.in-addr.arpa", IN::PTR, response) + + expect(transaction.response.answer.size).to be == 0 + + transaction.passthrough!(resolver) + + expect(transaction.response.answer.first[2]).to be_a IN::PTR + end + + it "should return SOA record" do + transaction = Async::DNS::Transaction.new(server, query, "google.com", IN::SOA, response) + + expect(transaction.response.answer.size).to be == 0 + + transaction.passthrough!(resolver) + + expect(transaction.response.answer.first[2]).to be_a IN::SOA + end +end diff --git a/test/async/dns/truncation.rb b/test/async/dns/truncation.rb new file mode 100755 index 0000000..0a6546f --- /dev/null +++ b/test/async/dns/truncation.rb @@ -0,0 +1,45 @@ +#!/usr/bin/env ruby +# frozen_string_literal: true + +# Released under the MIT License. +# Copyright, 2015-2024, by Samuel Williams. + +require 'async/dns' +require 'async/dns/extensions/string' + +SERVER_PORTS = [[:udp, '127.0.0.1', 5520], [:tcp, '127.0.0.1', 5520]] +IN = Resolv::DNS::Resource::IN + +class TestServer < Async::DNS::Server + def process(name, resource_class, transaction) + case [name, resource_class] + when ["truncation", IN::TXT] + text = "Hello World! " * 100 + transaction.respond!(*text.chunked) + else + transaction.fail!(:NXDomain) + end + end +end + +describe "Async::DNS Truncation Server" do + include Sus::Fixtures::Async::ReactorContext + + let(:server) {TestServer.new(SERVER_PORTS)} + + it "should use tcp because of large response" do + task = server.run + + sleep 0.1 + + resolver = Async::DNS::Resolver.new(SERVER_PORTS) + + response = resolver.query("truncation", IN::TXT) + + text = response.answer.first + + expect(text[2].strings.join).to be == ("Hello World! " * 100) + + task.stop + end +end