Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MiCollab Client SIP Resiliency

Status
Not open for further replies.

Joe King

Technical User
Feb 22, 2017
105
GB
Hi

Does the SRV record need to contain the _sip._tcp or should it just be mbgcluster.mydomain.com

 

In the deployment profile, under MBG SIP host, select 'Custom DNS SRV' and add the FQDN without the _sip._tcp
 
cheers
should the record on the DNS server included the _sip._tcp

 
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.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top