- On the DNS server, click Start, click Control Panel, click Administrative Tools, and then click DNS.
- In the console tree for your SIP domain, expand Forward Lookup Zones, and then right-click the SIP domain in which your Office Communications Server will be installed.
- Click Other New Records.
- In Select a resource record type, click Service Location (SRV), and then click Create Record.
- Click Service, and then type _sipinternaltls.
- Click Protocol, and then type _tcp.
- Click Port Number, and then type 5061.
- Click Host offering this service, and then type the FQDN of the Standard Edition Server.
- Click OK.
- Click Done.
Or you can create this by using Powershell
New-DnsRecord -RecordType SRV -Server yourdnsserver.yourdomain.com -ZoneName yourdnszone.com -TTL 3600 -Priority 0 -Weight 0 -Port 5061 -TargetName lyncpool.yourdomain.com -Name "_sipfederationtls._tcp"
If you do not have the DNSShell you can download it here: http://dnsshell.codeplex.com/
Installation
- Extract DnsShell.zip to C:\Windows\System32\WindowsPowerShell\v1.0\Modules\DnsShell
- Run: Import-Module DnsShell
No comments:
Post a Comment