OpenStack Victoria : Designate 利用方法2021/03/25 |
OpenStack DNS Service(Designate)の利用方法です。
当例では以下のような環境を例に Designate をインストールしています。
------------+---------------------------+---------------------------+------------ | | | eth0|10.0.0.30 eth0|10.0.0.50 eth0|10.0.0.51 +-----------+-----------+ +-----------+-----------+ +-----------+-----------+ | [ Control Node ] | | [ Network Node ] | | [ Compute Node ] | | | | | | | | MariaDB RabbitMQ | | Open vSwitch | | Libvirt | | Memcached httpd | | Neutron Server | | Nova Compute | | Keystone Glance | | OVN-Northd | | Open vSwitch | | Nova API | | Cinder Volume | | OVN Metadata Agent | | Cinder API | | iSCSI Target | | OVN-Controller | | | | Designate Services | | | +-----------------------+ +-----------------------+ +-----------------------+ |
[1] | Openstack システムを利用可能な任意のユーザーで認証して、DNS エントリを作成します。 作業は、どこでもよいですが、当例ではコントロールノード上で行います。 例として [server.education] の正引きゾーンを作成します。 |
[cent@dlp ~(keystone)]$ openstack zone create --email dnsmaster@server.education server.education. +----------------+--------------------------------------+ | Field | Value | +----------------+--------------------------------------+ | action | CREATE | | attributes | | | created_at | 2021-03-25T04:20:07.000000 | | description | None | | email | dnsmaster@server.education | | id | e354eda1-adce-4fff-8879-c34583c72903 | | masters | | | name | server.education. | | pool_id | 794ccc2c-d751-44fe-b57f-8894c9f5c842 | | project_id | f1f04d774d2141fb9acabd28d0e00c33 | | serial | 1616646007 | | status | PENDING | | transferred_at | None | | ttl | 3600 | | type | PRIMARY | | updated_at | None | | version | 1 | +----------------+--------------------------------------+ # [status] が [ACTIVE] であれば OK [cent@dlp ~(keystone)]$ openstack zone list +--------------------------------------+-------------------+---------+------------+--------+--------+ | id | name | type | serial | status | action | +--------------------------------------+-------------------+---------+------------+--------+--------+ | e354eda1-adce-4fff-8879-c34583c72903 | server.education. | PRIMARY | 1616646007 | ACTIVE | NONE | +--------------------------------------+-------------------+---------+------------+--------+--------+ # A レコードを登録する [cent@dlp ~(keystone)]$ openstack recordset create --record '192.168.100.10' --type A server.education. node01 +-------------+--------------------------------------+ | Field | Value | +-------------+--------------------------------------+ | action | CREATE | | created_at | 2021-03-25T04:20:38.000000 | | description | None | | id | 1e9a91cd-df55-449e-a5ab-cb48baf86b66 | | name | node01.server.education. | | project_id | f1f04d774d2141fb9acabd28d0e00c33 | | records | 192.168.100.10 | | status | PENDING | | ttl | None | | type | A | | updated_at | None | | version | 1 | | zone_id | e354eda1-adce-4fff-8879-c34583c72903 | | zone_name | server.education. | +-------------+--------------------------------------+ # [status] が [ACTIVE] であれば OK [cent@dlp ~(keystone)]$ openstack recordset list server.education. +--------------------------------------+--------------------------+------+-------------------------------------------------------------------------------+--------+--------+ | id | name | type | records | status | action | +--------------------------------------+--------------------------+------+-------------------------------------------------------------------------------+--------+--------+ | 9c0592ad-eab9-4a7f-bca0-c2deeb33f8b7 | server.education. | NS | network.srv.world. | ACTIVE | NONE | | e7b38147-88d7-4022-8656-7c433208fa89 | server.education. | SOA | network.srv.world. dnsmaster.server.education. 1616646038 3575 600 86400 3600 | ACTIVE | NONE | | 1e9a91cd-df55-449e-a5ab-cb48baf86b66 | node01.server.education. | A | 192.168.100.10 | ACTIVE | NONE | +--------------------------------------+--------------------------+------+-------------------------------------------------------------------------------+--------+--------+ # 確認 [cent@dlp ~(keystone)]$ dig -p 5354 @network.srv.world node01.server.education. ; <<>> DiG 9.11.26-RedHat-9.11.26-3.el8 <<>> -p 5354 @network.srv.world node01.server.education. ; (1 server found) ;; global options: +cmd ;; Got answer: ;; -<<>>HEADER<<- opcode: QUERY, status: NOERROR, id: 10358 ;; flags: qr aa rd; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1 ;; WARNING: recursion requested but not available ;; OPT PSEUDOSECTION: ; EDNS: version: 0, flags:; udp: 8192 ;; QUESTION SECTION: ;node01.server.education. IN A ;; ANSWER SECTION: node01.server.education. 3600 IN A 192.168.100.10 ;; Query time: 22 msec ;; SERVER: 10.0.0.50#5354(10.0.0.50) ;; WHEN: Thu Mar 25 19:25:33 JST 2021 ;; MSG SIZE rcvd: 68 |
[2] | 例として [192.168.100.0/24] の逆引きゾーンを作成します。 |
[cent@dlp ~(keystone)]$ openstack zone create --email dnsmaster@server.education 100.168.192.in-addr.arpa. +----------------+--------------------------------------+ | Field | Value | +----------------+--------------------------------------+ | action | CREATE | | attributes | | | created_at | 2021-03-25T04:26:26.000000 | | description | None | | email | dnsmaster@server.education | | id | 9f129a8e-2fc4-474e-8054-aae3779bd372 | | masters | | | name | 100.168.192.in-addr.arpa. | | pool_id | 794ccc2c-d751-44fe-b57f-8894c9f5c842 | | project_id | f1f04d774d2141fb9acabd28d0e00c33 | | serial | 1616646386 | | status | PENDING | | transferred_at | None | | ttl | 3600 | | type | PRIMARY | | updated_at | None | | version | 1 | +----------------+--------------------------------------+ # [status] が [ACTIVE] であれば OK [cent@dlp ~(keystone)]$ openstack zone list +--------------------------------------+---------------------------+---------+------------+--------+--------+ | id | name | type | serial | status | action | +--------------------------------------+---------------------------+---------+------------+--------+--------+ | e354eda1-adce-4fff-8879-c34583c72903 | server.education. | PRIMARY | 1616646038 | ACTIVE | NONE | | 9f129a8e-2fc4-474e-8054-aae3779bd372 | 100.168.192.in-addr.arpa. | PRIMARY | 1616646386 | ACTIVE | NONE | +--------------------------------------+---------------------------+---------+------------+--------+--------+ # PTR レコードを登録する [cent@dlp ~(keystone)]$ openstack recordset create --record 'node01.server.education.' --type PTR 100.168.192.in-addr.arpa. 10 +-------------+--------------------------------------+ | Field | Value | +-------------+--------------------------------------+ | action | CREATE | | created_at | 2021-03-25T04:27:01.000000 | | description | None | | id | 098013b3-ec34-4ef0-8e94-8bd32bee94d8 | | name | 10.100.168.192.in-addr.arpa. | | project_id | f1f04d774d2141fb9acabd28d0e00c33 | | records | node01.server.education. | | status | PENDING | | ttl | None | | type | PTR | | updated_at | None | | version | 1 | | zone_id | 9f129a8e-2fc4-474e-8054-aae3779bd372 | | zone_name | 100.168.192.in-addr.arpa. | +-------------+--------------------------------------+ # [status] が [ACTIVE] であれば OK [cent@dlp ~(keystone)]$ openstack recordset list 100.168.192.in-addr.arpa. +--------------------------------------+------------------------------+------+-------------------------------------------------------------------------------+--------+--------+ | id | name | type | records | status | action | +--------------------------------------+------------------------------+------+-------------------------------------------------------------------------------+--------+--------+ | 34940487-6191-4c32-bd50-828591766dbc | 100.168.192.in-addr.arpa. | SOA | network.srv.world. dnsmaster.server.education. 1616646421 3512 600 86400 3600 | ACTIVE | NONE | | d27a6170-73db-4a95-86fe-e1aebada9f1d | 100.168.192.in-addr.arpa. | NS | network.srv.world. | ACTIVE | NONE | | 098013b3-ec34-4ef0-8e94-8bd32bee94d8 | 10.100.168.192.in-addr.arpa. | PTR | node01.server.education. | ACTIVE | NONE | +--------------------------------------+------------------------------+------+-------------------------------------------------------------------------------+--------+--------+ # 確認 [cent@dlp ~(keystone)]$ dig -p 5354 @network.srv.world -x 192.168.100.10 ; <<>> DiG 9.11.26-RedHat-9.11.26-3.el8 <<>> -p 5354 @network.srv.world -x 192.168.100.10 ; (1 server found) ;; global options: +cmd ;; Got answer: ;; -<<>>HEADER<<- opcode: QUERY, status: NOERROR, id: 44783 ;; flags: qr aa rd; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1 ;; WARNING: recursion requested but not available ;; OPT PSEUDOSECTION: ; EDNS: version: 0, flags:; udp: 8192 ;; QUESTION SECTION: ;10.100.168.192.in-addr.arpa. IN PTR ;; ANSWER SECTION: 10.100.168.192.in-addr.arpa. 3600 IN PTR node01.server.education. ;; Query time: 20 msec ;; SERVER: 10.0.0.50#5354(10.0.0.50) ;; WHEN: Thu Mar 25 19:27:38 JST 2021 ;; MSG SIZE rcvd: 93 |
[3] | レコードやゾーンを削除するには以下のように実行します。 |
[cent@dlp ~(keystone)]$ openstack recordset list server.education. +--------------------------------------+--------------------------+------+-------------------------------------------------------------------------------+--------+--------+ | id | name | type | records | status | action | +--------------------------------------+--------------------------+------+-------------------------------------------------------------------------------+--------+--------+ | 9c0592ad-eab9-4a7f-bca0-c2deeb33f8b7 | server.education. | NS | network.srv.world. | ACTIVE | NONE | | e7b38147-88d7-4022-8656-7c433208fa89 | server.education. | SOA | network.srv.world. dnsmaster.server.education. 1616646038 3575 600 86400 3600 | ACTIVE | NONE | | 1e9a91cd-df55-449e-a5ab-cb48baf86b66 | node01.server.education. | A | 192.168.100.10 | ACTIVE | NONE | +--------------------------------------+--------------------------+------+-------------------------------------------------------------------------------+--------+--------+ # [node01] レコードを削除する [cent@dlp ~(keystone)]$ openstack recordset delete server.education. node01.server.education. +-------------+--------------------------------------+ | Field | Value | +-------------+--------------------------------------+ | action | DELETE | | created_at | 2021-03-25T04:20:38.000000 | | description | None | | id | 1e9a91cd-df55-449e-a5ab-cb48baf86b66 | | name | node01.server.education. | | project_id | f1f04d774d2141fb9acabd28d0e00c33 | | records | 192.168.100.10 | | status | PENDING | | ttl | None | | type | A | | updated_at | 2021-03-25T04:29:02.000000 | | version | 2 | | zone_id | e354eda1-adce-4fff-8879-c34583c72903 | | zone_name | server.education. | +-------------+--------------------------------------+[cent@dlp ~(keystone)]$ openstack recordset list server.education. +--------------------------------------+-------------------+------+-------------------------------------------------------------------------------+--------+--------+ | id | name | type | records | status | action | +--------------------------------------+-------------------+------+-------------------------------------------------------------------------------+--------+--------+ | 9c0592ad-eab9-4a7f-bca0-c2deeb33f8b7 | server.education. | NS | network.srv.world. | ACTIVE | NONE | | e7b38147-88d7-4022-8656-7c433208fa89 | server.education. | SOA | network.srv.world. dnsmaster.server.education. 1616646542 3575 600 86400 3600 | ACTIVE | NONE | +--------------------------------------+-------------------+------+-------------------------------------------------------------------------------+--------+--------+[cent@dlp ~(keystone)]$ openstack zone list +--------------------------------------+---------------------------+---------+------------+--------+--------+ | id | name | type | serial | status | action | +--------------------------------------+---------------------------+---------+------------+--------+--------+ | e354eda1-adce-4fff-8879-c34583c72903 | server.education. | PRIMARY | 1616646542 | ACTIVE | NONE | | 9f129a8e-2fc4-474e-8054-aae3779bd372 | 100.168.192.in-addr.arpa. | PRIMARY | 1616646421 | ACTIVE | NONE | +--------------------------------------+---------------------------+---------+------------+--------+--------+ # [server.education.] ゾーンを削除する [cent@dlp ~(keystone)]$ openstack zone delete server.education. +----------------+--------------------------------------+ | Field | Value | +----------------+--------------------------------------+ | action | DELETE | | attributes | | | created_at | 2021-03-25T04:20:07.000000 | | description | None | | email | dnsmaster@server.education | | id | e354eda1-adce-4fff-8879-c34583c72903 | | masters | | | name | server.education. | | pool_id | 794ccc2c-d751-44fe-b57f-8894c9f5c842 | | project_id | f1f04d774d2141fb9acabd28d0e00c33 | | serial | 1616646542 | | status | PENDING | | transferred_at | None | | ttl | 3600 | | type | PRIMARY | | updated_at | 2021-03-25T04:29:49.000000 | | version | 7 | +----------------+--------------------------------------+[cent@dlp ~(keystone)]$ openstack zone list +--------------------------------------+---------------------------+---------+------------+--------+--------+ | id | name | type | serial | status | action | +--------------------------------------+---------------------------+---------+------------+--------+--------+ | 9f129a8e-2fc4-474e-8054-aae3779bd372 | 100.168.192.in-addr.arpa. | PRIMARY | 1616646421 | ACTIVE | NONE | +--------------------------------------+---------------------------+---------+------------+--------+--------+ |
Sponsored Link |