Science and technology

Building a DNS-as-a-service with OpenStack Designate

– identify: default
  # The identify is immutable. There can be no choice to vary the identify after
  # creation and the one means will to vary it is going to be to delete it
  # (and all zones related to it) and recreate it.
  description: Default Pool

  attributes:

  # List out the NS data for zones hosted inside this pool
  # This must be a file that’s created exterior of designate, that
  # factors to the general public IP of the controller node.
  ns_records:
    – hostname: . # Thisis mDNS
      precedence: 1

  # List out the nameservers for this pool. These are the precise BIND servers.
  # We use these to confirm adjustments have propagated to all nameservers.
  nameservers:
    – host:
      port: 53

  # List out the targets for this pool. For BIND there can be one
  # entry for every BIND server, as now we have to run rndc command on every server
  targets:
    – kind: bind9
      description: BIND9 Server 1

      # List out the designate-mdns servers from which BIND servers ought to
      # request zone transfers (AXFRs) from.
      # This must be the IP of the controller node.
      # If you’ve got a number of controllers you possibly can add a number of masters
      # by operating designate-mdns on them, and including them right here.
      masters:
        – host:
          port: 5354

      # BIND Configuration choices
      choices:
        host:
        port: 53
        rndc_host:
        rndc_port: 953
        rndc_key_file: /and so forth/rndc.key
        rndc_config_file: /and so forth/rndc.conf

Most Popular

To Top