Correct way to add a SRV record to Google Cloud DNS?

Deadly 提交于 2020-01-06 04:54:15

问题


I'm trying to add records needed to get my email working. When I try to add the SRV record to Google Cloud, the data text field template has only 3 numbers and a text ?? But on godaddy there are these fields that need to be add:

Port, Protocol, Name, Service, Priority, Weight, Target. here is an example from godaddy:

443 _tls    @   _sip    100 1   some-thing.some-thing

Here is Google Cloud records form:

So how should I add these data properly ?


回答1:


it's a SRV record - which contains the SRV data:

Port Protocol Name Service Priority Weight Target
5060     _tls    @    _sip      100      1 some-thing.some-thing

the format is _service._proto.name. TTL class SRV priority weight port target.

taken apart, might use name _sip._tcp.acme.com. with SRV data alike:

0 1 5060 sip.acme.com.

notice the trailing .



来源:https://stackoverflow.com/questions/52656208/correct-way-to-add-a-srv-record-to-google-cloud-dns

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!