Dec 13, 2021 #1 Joe King Technical User Joined Feb 22, 2017 Messages 105 Location GB Hi Does the SRV record need to contain the _sip._tcp or should it just be mbgcluster.mydomain.com
Dec 13, 2021 #2 techymitel Technical User Joined Jun 16, 2010 Messages 166 Location GB In the deployment profile, under MBG SIP host, select 'Custom DNS SRV' and add the FQDN without the _sip._tcp Upvote 0 Downvote
In the deployment profile, under MBG SIP host, select 'Custom DNS SRV' and add the FQDN without the _sip._tcp
Dec 13, 2021 Thread starter #3 Joe King Technical User Joined Feb 22, 2017 Messages 105 Location GB cheers should the record on the DNS server included the _sip._tcp Upvote 0 Downvote
Dec 13, 2021 #4 techymitel Technical User Joined Jun 16, 2010 Messages 166 Location GB On your DNS server, you will need to configure a specific domain: mbgcluster.mydomain.com Then under that domain, create SRV entries with service type _sip and protocol type _tcp The MBG FQDN's should be added to your SRV entries You should be able to run the command: Code: nslookup -type=SRV _sip._tcp.mbgcluster.mydomain.com The response should look something like: Code: _sip._tcp.mbgcluster.mydomain.com SRV service locaion: priority = 1 weight = 10 port = 5060 svr hostname = <<MBG1 FQDN>> _sip._tcp.mbgcluster.mydomain.com SRV service locaion: priority = 1 weight = 10 port = 5060 svr hostname = <<MBG2 FQDN>> Depending on the priority and weight settings you use, the softphone will then use the hostname and port number supplied in the SRV record. Upvote 0 Downvote
On your DNS server, you will need to configure a specific domain: mbgcluster.mydomain.com Then under that domain, create SRV entries with service type _sip and protocol type _tcp The MBG FQDN's should be added to your SRV entries You should be able to run the command: Code: nslookup -type=SRV _sip._tcp.mbgcluster.mydomain.com The response should look something like: Code: _sip._tcp.mbgcluster.mydomain.com SRV service locaion: priority = 1 weight = 10 port = 5060 svr hostname = <<MBG1 FQDN>> _sip._tcp.mbgcluster.mydomain.com SRV service locaion: priority = 1 weight = 10 port = 5060 svr hostname = <<MBG2 FQDN>> Depending on the priority and weight settings you use, the softphone will then use the hostname and port number supplied in the SRV record.
Dec 13, 2021 Thread starter #5 Joe King Technical User Joined Feb 22, 2017 Messages 105 Location GB Thanks mate, Upvote 0 Downvote