Versions Compared

Key

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

...

Within the Edmonton and Calgary regions, AAAA (IPv6) and PTR (reverse DNS) records are created automatically with the format id.region.cybera.ca (ege.g. abcd.yyc.cybera.ca) This generated domain name is added as metadata to your instance which you can view on an instance's details page on the dashboard or by using

...

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 create --records "10 mail.sampledomain.cybera.ca." "20 mail2.sampledomain.cybera.ca." --type MX --description "IPv4 MX Record" sampledomain.cybera.ca. sampledomain.cybera.ca.


To update a record:

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:

Code Block
openstack recordset delete sampledomain.cybera.ca. 2eee8889-ae7b-4271-8c39-abce5d2144ec

...


Common Issues

The most common issue seen when using the new automated names occurs when a service is running on the instance but not listening on IPv6 when the user has IPv6 access. As IPv6 is the default path used when available it's important to ensure that your security groups and services on your instance can handle IPv6 traffic. See the Security Groups section in the Basic Guide for more information.

...