Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

When a floating IP address is assigned to an instance, an A record is created with the automated name for your instance, as well as a PTR record as well.

Custom PTR Records

If you wish your PTR record changed after the factfor your IPv6 address OR your floating IPv4 address changed, please contact rac-admin@cybera.ca for an administrator to make the change.

...

Code Block
openstack recordset create --records "2605:fd00:4:1000:abcd:ef12:3456:7890" --type AAAA --description "IPv6 AAAA Record" sampledomain.cybera.ca. test

 


A record:

Code Block
openstack recordset create --records "127.0.0.1" --type A --description "IPv4 A Record" sampledomain.cybera.ca. test

 


MX record for your domain:
(Please note the different format than other records - priority and then name)

...

Code Block
openstack recordset set --records "2605:fd00:4:1000:aaaa:bbbb:cccc:dddd" --description "IPv6 AAAA Record" sampledomain.cybera.ca. test.sampledomain.cybera.ca

 


If multiple records exist using the same record name, you will need to use the ID of the record instead, similar to what is required for other OpenStack services:

Code Block
openstack recordset set --records "2605:fd00:4:1000:aaaa:bbbb:cccc:dddd" --description "IPv6 AAAA Record" sampledomain.cybera.ca. 2eee8889-ae7b-4271-8c39-abce5d2144ec

...


To delete a record:

Code Block
openstack recordset delete sampledomain.cybera.ca. test.sampledomain.cybera.ca

...


If multiple records exist using the same record name, you will need to use the ID of the record instead, similar to what is required for other OpenStack services:

...