Git Product home page Git Product logo

datastax-bind9's Introduction

How to run bind9 locally

The only changed from the great guide above was the Docker network setting:

sudo docker network create --subnet=10.10.0.0/16 bind9dns-net

And the subsequent commands to use the different network:

sudo docker run -d --rm --name=dns-server --net=bind9dns-net --ip=10.10.0.2 bind9 
sudo docker run -d --rm --name=host1 --net=bind9dns-net --ip=10.10.0.3 --dns=10.10.0.2 ubuntu:bionic /bin/bash -c "while :; do sleep 10; done"
sudo docker run -d --rm --name=host2 --net=bind9dns-net --ip=10.10.0.4 --dns=10.10.0.2 ubuntu:bionic /bin/bash -c "while :; do sleep 10; done"

Network tools

The image we are using is missing ping and dns tools, so use the commands below to install them:

apt install iputils-ping
apt install dnsutils

Testing

Use the host1 and host2 containers to test DNS settings by attaching to the container:

docker exec -it host1 bash

From a host we can test the following command to validate the DNS settings:

host -l astra.datastax.com
dig IP
dig hostname

And we can validate the settings of a host machine via /etc/nsswitch.com file

datastax-bind9's People

Contributors

mborges-pivotal avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.