Hello Florian Zumpe,
Welcome to the Microsoft Q&A and thank you for posting your questions here.
I understand that you would like to know how you can setup a PTR Record for an already bound Email Communication Domain.
Regarding your explanation and question:
- You need to assign a DNS name to your public IP address. This can be done via the Azure portal or using PowerShell. Then, use the
Set-AzPublicIpAddress
cmdlet to configure the reverse DNS. PowerShell command example:
Make sure that the DNS name resolves to the public IP address.Set-AzPublicIpAddress -Name "YourPublicIpName" -ResourceGroupName "YourResourceGroupName" -ReverseFqdn "yourdomain.com"
- On your las question. Currently, configuring reverse DNS for Azure services is not supported via the Azure portal. You need to use PowerShell or Azure CLI. This is how you can do it using PowerShell:
- If you haven't already, install the Azure PowerShell module, install it:
Install-Module -Name Az -AllowClobber -Scope CurrentUser
- Login to your Azure account using PowerShell:
Connect-AzAccount
- Set the reverse DNS using PowerShell:
Set-AzPublicIpAddress -Name "YourPublicIpName" -ResourceGroupName "YourResourceGroupName" -ReverseFqdn "yourdomain.com"
- If you haven't already, install the Azure PowerShell module, install it:
For more detailed steps on configuring reverse DNS for Azure services - https://learn.microsoft.com/en-us/azure/dns/dns-reverse-dns-for-azure-services
I hope this is helpful! Do not hesitate to let me know if you have any other questions.
Please don't forget to close up the thread here by upvoting and accept it as an answer if it is helpful.