自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

用OpenStack Designate構(gòu)建一個DNS即服務(wù)(DNSaaS)

運維 系統(tǒng)運維 SaaS OpenStack
學(xué)習(xí)如何安裝和配置 Designate,這是一個 OpenStack 的多租戶 DNS 即服務(wù)(DNSaaS)。

[[265096]]

學(xué)習(xí)如何安裝和配置 Designate,這是一個 OpenStack 的多租戶 DNS 即服務(wù)(DNSaaS)。

Designate 是一個多租戶的 DNS 即服務(wù),它包括一個用于域名和記錄管理的 REST API 和集成了 Neutron 的框架,并支持 Bind9。

DNSaaS 可以提供:

  • 一個管理區(qū)域和記錄的干凈利落的 REST API
  • 自動生成記錄(集成 OpenStack)
  • 支持多個授權(quán)名字服務(wù)器
  • 可以托管多個項目/組織

Designate's architecture

Designate's architecture

這篇文章解釋了如何在 CentOS 和 RHEL 上手動安裝和配置 Designate 的當(dāng)前版本,但是同樣的配置也可以用在其它發(fā)行版上。

在 OpenStack 上安裝 Designate

在我的 GitHub 倉庫里,我已經(jīng)放了 Ansible 的 bind 和 Designate 角色的示范設(shè)置。

這個設(shè)置假定 bing 服務(wù)是安裝 OpenStack 控制器節(jié)點之外(即使你可以在本地安裝 bind)。

1、在 OpenStack 控制節(jié)點上安裝 Designate 和 bind 軟件包:

  1. # yum install openstack-designate-* bind bind-utils -y

2、創(chuàng)建 Designate 數(shù)據(jù)庫和用戶:

  1. MariaDB [(none)]> CREATE DATABASE designate CHARACTER SET utf8 COLLATE utf8_general_ci;
  2. MariaDB [(none)]> GRANT ALL PRIVILEGES ON designate.* TO \
  3. 'designate'@'localhost' IDENTIFIED BY 'rhlab123';
  4.  
  5. MariaDB [(none)]> GRANT ALL PRIVILEGES ON designate.* TO 'designate'@'%' \
  6. IDENTIFIED BY 'rhlab123';

注意:bind 包必須安裝在控制節(jié)點之外才能使遠(yuǎn)程名字服務(wù)控制Remote Name Daemon Control(RNDC)功能正常。

配置 bind(DNS 服務(wù)器)

1、生成 RNDC 文件:

  1. rndc-confgen -a -k designate -c /etc/rndc.key -r /dev/urandom
  2.  
  3. cat <<EOF> etcrndc.conf
  4. include "/etc/rndc.key";
  5. options {
  6. default-key "designate";
  7. default-server {{ DNS_SERVER_IP }};
  8. default-port 953;
  9. };
  10. EOF

2、將下列配置添加到 named.conf

  1. include "/etc/rndc.key";
  2. controls {
  3. inet {{ DNS_SERVER_IP }} allow { localhost;{{ CONTROLLER_SERVER_IP }}; } keys { "designate"; };
  4. };

option 節(jié)中,添加:

  1. options {
  2. ...
  3. allow-new-zones yes;
  4. request-ixfr no;
  5. listen-on port 53 { any; };
  6. recursion no;
  7. allow-query { 127.0.0.1; {{ CONTROLLER_SERVER_IP }}; };
  8. };

添加正確的權(quán)限:

  1. chown named:named /etc/rndc.key
  2. chown named:named /etc/rndc.conf
  3. chmod 600 /etc/rndc.key
  4. chown -v root:named /etc/named.conf
  5. chmod g+w /var/named
  6.  
  7. # systemctl restart named
  8. # setsebool named_write_master_zones 1

3、把 rndc.keyrndc.conf 推入 OpenStack 控制節(jié)點:

  1. # scp -r /etc/rndc* {{ CONTROLLER_SERVER_IP }}:/etc/

創(chuàng)建 OpenStack Designate 服務(wù)和端點

輸入:

  1. # openstack user create --domain default --password-prompt designate
  2. # openstack role add --project services --user designate admin
  3. # openstack service create --name designate --description "DNS" dns
  4.  
  5. # openstack endpoint create --region RegionOne dns public http://{{ CONTROLLER_SERVER_IP }}:9001/
  6. # openstack endpoint create --region RegionOne dns internal http://{{ CONTROLLER_SERVER_IP }}:9001/
  7. # openstack endpoint create --region RegionOne dns admin http://{{ CONTROLLER_SERVER_IP }}:9001/

配置 Designate 服務(wù)

1、編輯 /etc/designate/designate.conf

[service:api] 節(jié)配置 auth_strategy

  1. [service:api]
  2. listen = 0.0.0.0:9001
  3. auth_strategy = keystone
  4. api_base_uri = http://{{ CONTROLLER_SERVER_IP }}:9001/
  5. enable_api_v2 = True
  6. enabled_extensions_v2 = quotas, reports

[keystone_authtoken] 節(jié)配置下列選項:

  1. [keystone_authtoken]
  2. auth_type = password
  3. username = designate
  4. password = rhlab123
  5. project_name = service
  6. project_domain_name = Default
  7. user_domain_name = Default
  8. www_authenticate_uri = http://{{ CONTROLLER_SERVER_IP }}:5000/
  9. auth_url = http://{{ CONTROLLER_SERVER_IP }}:5000/

[service:worker] 節(jié),啟用 worker 模型:

  1. enabled = True
  2. notify = True

[storage:sqlalchemy] 節(jié),配置數(shù)據(jù)庫訪問:

  1. [storage:sqlalchemy]
  2. connection = mysql+pymysql://designate:rhlab123@{{ CONTROLLER_SERVER_IP }}/designate

填充 Designate 數(shù)據(jù)庫:

  1. # su -s /bin/sh -c "designate-manage database sync" designate

2、 創(chuàng)建 Designate 的 pools.yaml 文件(包含 target 和 bind 細(xì)節(jié)):

編輯 /etc/designate/pools.yaml

  1. - name: default
  2. # The name is immutable. There will be no option to change the name after
  3. # creation and the only way will to change it will be to delete it
  4. # (and all zones associated with it) and recreate it.
  5. description: Default Pool
  6.  
  7. attributes: {}
  8.  
  9. # List out the NS records for zones hosted within this pool
  10. # This should be a record that is created outside of designate, that
  11. # points to the public IP of the controller node.
  12. ns_records:
  13. - hostname: {{Controller_FQDN}}. # Thisis mDNS
  14. priority: 1
  15.  
  16. # List out the nameservers for this pool. These are the actual BIND servers.
  17. # We use these to verify changes have propagated to all nameservers.
  18. nameservers:
  19. - host: {{ DNS_SERVER_IP }}
  20. port: 53
  21.  
  22. # List out the targets for this pool. For BIND there will be one
  23. # entry for each BIND server, as we have to run rndc command on each server
  24. targets:
  25. - type: bind9
  26. description: BIND9 Server 1
  27.  
  28. # List out the designate-mdns servers from which BIND servers should
  29. # request zone transfers (AXFRs) from.
  30. # This should be the IP of the controller node.
  31. # If you have multiple controllers you can add multiple masters
  32. # by running designate-mdns on them, and adding them here.
  33. masters:
  34. - host: {{ CONTROLLER_SERVER_IP }}
  35. port: 5354
  36.  
  37. # BIND Configuration options
  38. options:
  39. host: {{ DNS_SERVER_IP }}
  40. port: 53
  41. rndc_host: {{ DNS_SERVER_IP }}
  42. rndc_port: 953
  43. rndc_key_file: /etc/rndc.key
  44. rndc_config_file: /etc/rndc.conf

填充 Designate 池:

  1. su -s /bin/sh -c "designate-manage pool update" designate

3、啟動 Designate 中心和 API 服務(wù):

  1. systemctl enable --now designate-central designate-api

4、驗證 Designate 服務(wù)運行:

  1. # openstack dns service list
  2.  
  3. +--------------+--------+-------+--------------+
  4. | service_name | status | stats | capabilities |
  5. +--------------+--------+-------+--------------+
  6. | central | UP | - | - |
  7. | api | UP | - | - |
  8. | mdns | UP | - | - |
  9. | worker | UP | - | - |
  10. | producer | UP | - | - |
  11. +--------------+--------+-------+--------------+

用外部 DNS 配置 OpenStack Neutron

1、為 Designate 服務(wù)配置 iptables:

  1. # iptables -I INPUT -p tcp -m multiport --dports 9001 -m comment --comment "designate incoming" -j ACCEPT
  2. # iptables -I INPUT -p tcp -m multiport --dports 5354 -m comment --comment "Designate mdns incoming" -j ACCEPT
  3. # iptables -I INPUT -p tcp -m multiport --dports 53 -m comment --comment "bind incoming" -j ACCEPT
  4. # iptables -I INPUT -p udp -m multiport --dports 53 -m comment --comment "bind/powerdns incoming" -j ACCEPT
  5. # iptables -I INPUT -p tcp -m multiport --dports 953 -m comment --comment "rndc incoming - bind only" -j ACCEPT
  6. # service iptables save; service iptables restart
  7. # setsebool named_write_master_zones 1

2、 編輯 /etc/neutron/neutron.conf[default] 節(jié):

  1. external_dns_driver = designate

3、 在 /etc/neutron/neutron.conf 中添加 [designate] 節(jié):

  1. [designate]
  2. url = http://{{ CONTROLLER_SERVER_IP }}:9001/v2 ## This end point of designate
  3. auth_type = password
  4. auth_url = http://{{ CONTROLLER_SERVER_IP }}:5000
  5. username = designate
  6. password = rhlab123
  7. project_name = services
  8. project_domain_name = Default
  9. user_domain_name = Default
  10. allow_reverse_dns_lookup = True
  11. ipv4_ptr_zone_prefix_size = 24
  12. ipv6_ptr_zone_prefix_size = 116

4、編輯 neutron.confdns_domain

  1. dns_domain = rhlab.dev.

重啟:

  1. # systemctl restart neutron-*

5、在 /etc/neutron/plugins/ml2/ml2_conf.ini 中的組成層 2(ML2)中添加 dns

  1. extension_drivers=port_security,qos,dns

6、在 Designate 中添加區(qū)域:

  1. # openstack zone create email=admin@rhlab.dev rhlab.dev.

rhlab.dev 區(qū)域中添加記錄:

  1. # openstack recordset create --record '192.168.1.230' --type A rhlab.dev. Test

Designate 現(xiàn)在就安裝和配置好了。

 

責(zé)任編輯:龐桂玉 來源: Linux中國
相關(guān)推薦

2022-06-05 13:52:32

Node.jsDNS 的原理DNS 服務(wù)器

2014-02-26 10:14:51

OpenStack測試系統(tǒng)

2015-08-13 14:35:43

2021-08-27 12:16:34

fastjarJAR文件Java

2018-03-19 17:40:10

Python區(qū)塊鏈

2019-07-05 08:39:39

GoSQL解析器

2014-04-14 15:54:00

print()Web服務(wù)器

2021-03-24 14:25:24

惡意軟件企業(yè)網(wǎng)絡(luò)勒索

2025-02-26 07:00:00

Go 語言Ollama 模型dubbogo

2019-05-14 12:30:07

PythonPygame游戲框架

2012-03-19 10:49:21

ibmdw

2014-01-14 09:11:24

微軟OpenStack亞馬遜

2024-10-31 08:15:46

2023-12-11 11:56:24

圖片服務(wù)器Rust

2016-03-01 14:37:47

華為

2015-06-12 10:27:28

DevOpsDockerOpenStack

2021-11-11 09:00:00

IaC工具自動化

2009-03-27 09:48:56

SnapFlowWaaS工作流

2020-11-09 06:38:00

ninja構(gòu)建方式構(gòu)建系統(tǒng)

2020-08-26 15:10:37

微服務(wù)中臺數(shù)據(jù)
點贊
收藏

51CTO技術(shù)棧公眾號