skype ( office365 ) 설정을 할때 아래와 같이 SRV 레코드를 DNS에 선언하라고 한다. PDNS 에서의 추가 방법은 아래와 같다.
1 2 3 |
Name / Priority / Content / TTL _sip._tls.domain.com / 100 / 1 443 sipdir.online.lync.com. / 3600 _sipfederationtls._tcp.domain.com / 100 / 1 5061 sipfed.online.lync.com. / 3600 |
BIND – zone file 에서의 추가 방법은 아래와 같다.
1 2 |
_sip._tls IN SRV 100 1 443 sipdir.online.lync.com. _sipfederationtls._tcp IN SRV 100 1 5061 sipfed.online.lync.com. |
아래는 적용 테스트 명령어(NSLOOKUP) 이다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
C:\>nslookup -q=SRV _sip._tls.domain.com _sip._tls.jehaplus.net SRV service location: priority = 100 weight = 1 port = 443 svr hostname = sipdir.online.lync.com C:\>nslookup -q=SRV _sipfederationtls._tcp.domain.com _sipfederationtls._tcp.jehaplus.net SRV service location: priority = 100 weight = 1 port = 5061 svr hostname = sipfed.online.lync.com |