This Document will show you the essential steps to add a PTR record for an existing floating IP.
For a complete overview see the networking reference guide and the DNS reference guide.
You may need to install the designate client (plugin).
(sudo) pip install python-openstackclient python-designateclient
We only allow PTR records for zones that you own. You can use a zone that you already created before this how-to.
If you want to create a subzone for the purpose of delegating it to a different project, you may want to work through this howto first.
If you want to practice with a test domain, you can create an empty zone like this:
$ openstack zone create --email email@domain.example ptrhowto.example.
+----------------+--------------------------------------+
| Field | Value |
+----------------+--------------------------------------+
| action | CREATE |
| attributes | |
| created_at | 2019-06-28T15:27:00.000000 |
| description | None |
| email | email@domain.example |
| id | 01234567-89ab-cdef-0123-456789abcdef |
| masters | |
| name | ptrhowto.example. |
| pool_id | 14234f0f-1234-4444-6789-758006f43802 |
| project_id | 0123456789abcdef0123456789abcdef |
| serial | 1561735620 |
| status | PENDING |
| transferred_at | None |
| ttl | 21600 |
| type | PRIMARY |
| updated_at | None |
| version | 1 |
+----------------+--------------------------------------+
You need at least one network and one server. For testing purposes, you can create a network and a server by following the tutorials "first steps" or "single LAMP server".
For automated forward A-record and reverse PTR-record management, the DNS domain needs to be associated with the network.
Find out the network ID with this command:
openstack network list
Then associate the DNS zone with the network:
openstack network set --dns-domain ptrhowto.example. <Network UUID>
Because we did not use the DNS integration when the server was created, we must update the DNS domain and DNS name for the preexisting network port of our server. For newly created servers this will happen automatically, once we associated the DNS domain with the network.
First let's find the ID of the server we want to work with and the floating IP:
$ openstack server list
+--------------------------------------+------------+--------+--------------------------------------------------+----------------------------------+----------+
| ID | Name | Status | Networks | Image | Flavor |
+--------------------------------------+------------+--------+--------------------------------------------------+----------------------------------+----------+
| e4dc0ac3-7f71-4279-ba95-d686da868dae | appserver2 | ACTIVE | demo_net=192.168.2.30, 185.56.129.73 | Ubuntu Bionic 18.04 (2020-04-30) | m1c.tiny |
+--------------------------------------+------------+--------+--------------------------------------------------+----------------------------------+----------+
And now we need to find the network port ID:
$ openstack port list --server e4dc0ac3-7f71-4279-ba95-d686da868dae
+--------------------------------------+------+-------------------+-----------------------------------------------------------------------------+--------+
| ID | Name | MAC Address | Fixed IP Addresses | Status |
+--------------------------------------+------+-------------------+-----------------------------------------------------------------------------+--------+
| 1e1c5f3f-4b69-41d0-8e67-15911a471a42 | | fa:16:3e:8e:29:33 | ip_address='192.168.2.30', subnet_id='81bcf2d9-f72e-4a2c-aedd-1f68e4c7f86d' | ACTIVE |
+--------------------------------------+------+-------------------+-----------------------------------------------------------------------------+--------+
Now we can update the DNS domain and DNS name for our port:
openstack port set 1e1c5f3f-4b69-41d0-8e67-15911a471a42 --dns-domain ptrhowto.example. --dns-name appserver2
Finally, to create the forward A-type records and reverse PTR-type records for our Floating IP, we need to re-assign it to the server:
Please be aware that this procedure will cause a downtime for your server.
In our example, the server ID is e4dc0ac3-7f71-4279-ba95-d686da868dae
and the floating IP is 185.56.129.73
.
openstack server remove floating ip <server UUID> <server floating IP>
and then immediately run:
openstack server add floating ip <server UUID> <server floating IP>
We now created the forward A-type record appserver2.ptrhowto.example.
in our example zone. You can verify that by running:
openstack recordset list ptrhowto.example.
Also, a matching reverse PTR-type record is configured for the floating IP:
$ dig +short -x 185.56.129.73
appserver2.ptrhowto.example.
Side note
An alternative way to set up PTR records would be to directly create a floating IP with dns_domain and dns_name set using the OpenStack CLI. But with this approach unfortunately it is not possible to change the domain or name of the floating IP retroactively.
It is also possible to have multiple PTR records for a single VM. You can achieve this by using multiple ports with different dns_names. It is not possible using multiple fixed IPs on the same port due to dns_name collisions.