reverse Domain name resolution, in contrast to the usual forward domain resolution, provides IP address to the corresponding domain name. IP Reverse resolution is primarily applied to mail servers to block spam, especially in foreign countries.
most spammers use dynamically assigned or unregistered domain names. IP address to send spam to evade tracking, using the domain name reverse resolution, you can greatly reduce the number of spam.
How to Windows Azure provided to the user reverse DNS Parse it?
through Azure Powershell can do, Azure Powershell you can go to the following address to download:
official website of the China Region: http://www.windowsazure.cn/downloads/
GitHub : https://github.com/Azure/azure-powershell/releases
"one" setting Azure the domain name to do RDNS
# Set RDNs
$servicename = "Winmailserver" # Cloud service name
$rDNSFQDN = "winmailserver.chinacloudapp.cn." # reverse dns
Set-azureservice-servicename$servicename-reversednsfqdn $rDNSFQDN # associating reverse DNS
650) this.width=650; "src=" Http://s3.51cto.com/wyfs02/M01/79/8E/wKiom1aUn0PRNCDgAABEkM0sNVs510.png "title=" 1.png " Style= "Float:none;" alt= "Wkiom1aun0prncdgaabekm0snvs510.png"/>
# Checksum Fetch
$servicename = "Winmailserver" # Cloud service name
Get-azureservice-servicename$servicename | Select reversednsfqdn # get reverse DNS
650) this.width=650; "src=" Http://s3.51cto.com/wyfs02/M01/79/8E/wKiom1aUn0OCUMh2AAAkYOCsNyU492.png "title=" 2.png " Style= "Float:none;" alt= "Wkiom1aun0ocumh2aaakyocsnyu492.png"/>
# Delete RDNS
$servicename = "Winmailserver" # Cloud service name
Set-azureservice-servicename$servicename-reversednsfqdn "" # Remove reverse DNS, set the value to null
650) this.width=650; "src=" Http://s3.51cto.com/wyfs02/M01/79/8D/wKioL1aUn3PBRs8lAAA6x9QfFNM016.png "title=" 3.png " Style= "Float:none;" alt= "Wkiol1aun3pbrs8laaa6x9qffnm016.png"/>
"Two" set non- Azure the domain name to do RDNS
The prerequisites are: Www.heyutan.club have to do a CName or A record the resources in your subscription account.
650) this.width=650; "src=" Http://s3.51cto.com/wyfs02/M02/79/8E/wKiom1aUn0TDcQJyAACh5SwgoEU766.png "title=" 4.png " Style= "Float:none;" alt= "Wkiom1aun0tdcqjyaach5swgoeu766.png"/>
# Set RDNs
$servicename = "Winmailserver"
$rDNSFQDN = "Www.heyutan.club."
Set-azureservice-servicename $servicename-reversednsfqdn $rDNSFQDN
650) this.width=650; "src=" Http://s3.51cto.com/wyfs02/M02/79/8D/wKioL1aUn3PDUsfRAABDGOayVBg771.png "title=" 5.png " Style= "Float:none;" alt= "Wkiol1aun3pdusfraabdgoayvbg771.png"/>
"Three" precautions
( 1 ) after the domain name with a full period of English $rDNSFQDN = "winmailserver.chinacloudapp.cn."
Otherwise the error is as follows:
650) this.width=650; "src=" Http://s3.51cto.com/wyfs02/M02/79/8D/wKioL1aUn3SyV4ViAAB2G0-O5eI111.png "title=" 7.png " Style= "Float:none;" alt= "Wkiol1aun3syv4viaab2g0-o5ei111.png"/>
(2)Azurewithin the subscriptionDNSname doRDNS, there are no restrictions:Azure VIP 42.159.x.x/139.x.x.x---->subscription to any cloud service under theDNSnamexxxx.chinacloudapp.cn
However, when you want to do a custom domain name RDNS when, for example AZUREVIP 139.219.13.239 ----> Custom domain name Mail.heyutan.club , there are prerequisites, the following conditions can be satisfied:
-
mail.heyutan.club must be able to parse to (that is, cname dns name xxxx. chinacloudapp.cn
Mail.heyutan.club must be able to parse (i.e. A record) with any one of the subscriptions Reserved IP or any deployment (cloud service) VIP
Otherwise the error is as follows:
650) this.width=650; "src=" Http://s5.51cto.com/wyfs02/M00/79/8D/wKioL1aUn3XRqCN7AACXKx1ggMM434.png "title=" 8.png " Style= "Float:none;" alt= "Wkiol1aun3xrqcn7aacxkx1ggmm434.png"/>
( 3 ) The test is valid for use CMD
nslookup-q=ptr 139.219. 13.239
nslookup-q=ptr 139.219. 13.239 203.196.0.6
650) this.width=650; "src=" Http://s5.51cto.com/wyfs02/M00/79/8E/wKiom1aUn0WREyReAAARijgDcHI048.png "title=" 9.png " Style= "Float:none;" alt= "Wkiom1aun0wreyreaaarijgdchi048.png"/>
( 4 ) Official reference documentation: A nnouncing Reverse DNS for azure Cloud Services Microsoft Azure Blog
http://azure.microsoft.com/blog/2014/07/21/announcing-reverse-dns-for-azure-cloud-services/
This article is from the "[email protected]" blog, please be sure to keep this source http://winhe.blog.51cto.com/7547741/1734180
Azure Cloud Services Reverse DNS