Incoming VoIP Features: Difference between revisions

 
===More about SRV Records===
An example of using srv records would be as follows: Say you have two VoIP servers and they have the public IPs of <syntaxhighlight inline>192.0.2.50</syntaxhighlight> and <syntaxhighlight inline>192.0.2.60</syntaxhighlight> and you want to give it the DNS name of <syntaxhighlight inline>a-pbx.example.com</syntaxhighlight> and <syntaxhighlight inline>b-pbx.example.com</syntaxhighlight>. You'd create the following DNS records for it as follows:
 
a-pbx.example.com. A 192.0.2.50
_sip._udp.pbx.example.com. SRV 1 0 5060 b-pbx.example.com.
 
In the AAISP control pages, you'd enter <syntaxhighlight inline>pbx.example.com</syntaxhighlight> as the server hostname, our systems will then look up the SRV records and will route the call accordingly.
 
The format of the 'host' part of a SRV record is:
_service._protocol.name
 
The format of the 'value' of an srv record would be in the format of:
priority weight port host
 
===Also Ring===