The best thing to do is take a look at these things from a step back.<div><br></div><div>The domains inside the xml registry are completely different from the domains on the internet and again completely different from domains in sip packets.  The profiles are again entirely different from any of the above.  Its up to you to align them if you so choose.</div>
<div><br></div><div><br></div><div>The default configuration distributed with FreeSWITCH sets up the scenario most likely to load on any machine and work out of the box.  That is the primary goal of that configuration, so, It sets the domain in both the directory, the global default domain variable and the name of the internal profile to be identical to the ip on the box that can reach the internet.  Then it sets the sip to force everything to that value.  When you want to detach from this behavior, you are probably on a venture to do some kind of multi-home setup.</div>
<div><br></div><div><br></div><div>Aliases in the &lt;aliases&gt; tag are a list of keys you want to use to use that lead to the current profile your are configuring.  Think of it as the /etc/hosts file in unix only for profiles.   When you define aliases to match all of the possible domains hosted on a particular profile, then when you try to take a <a href="mailto:user@host.com">user@host.com</a> notation and decide which profile it came from, you can use the aliases to find it providing you have added &lt;alias name=&quot;<a href="http://host.com">host.com</a>&quot;/&gt; to that profile.</div>
<div><br></div><div>The &lt;domains&gt; tag is an indicator telling the profile to open the xml registry in FreeSWITCH and run through any domains defined therein.</div><div>The 2 key attributes are:</div><div><br></div><div>
alias: [true/false]  (automatically create an alias for this domain as mentioned above)</div><div>parse: [true/false] (scan the domain for gateway entries and include them into this profile)</div><div>name: [&lt;string&gt;] (either the name of a specific domain or &#39;all&#39; to denote parsing every domain in the directory)</div>
<div><br></div><div>As you showed in your question the default config has</div><div><br></div><div><div>&lt;domain name=&quot;all&quot; alias=&quot;true&quot; parse=&quot;false&quot;/&gt;</div></div><div><br></div><div>If you apply what you have learned above, it will scan for every domain (there is only one by default) and add an alias for it and not parse it for gateways.  The default directory uses global config vars to set the domain to match the local ip on the box.  So now you will have a domain in your config that is your ip, and the internal profile will attach to it and add an alias so that value expands to match it.</div>
<div><br></div><div><br></div><div>This is explained in a comment at the top of directory/default.xml</div><div><br></div><div><div>    FreeSWITCH works off the concept of users and domains just like email.                                                                                      </div>
<div>    You have users that are in domains for example <a href="mailto:1000@domain.com">1000@domain.com</a>.                                                                                             </div><div>                                                                                                                                                                </div>
<div>    When freeswitch gets a register packet it looks for the user in the directory                                                                               </div><div>    based on the from or to domain in the packet depending on how your sofia profile                                                                            </div>
<div>    is configured.  Out of the box the default domain will be the IP address of the                                                                             </div><div>    machine running FreeSWITCH.  This IP can be found by typing &quot;sofia status&quot; at the                                                                           </div>
<div>    CLI.  You will register your phones to the IP and not the hostname by default.                                                                              </div><div>    If you wish to register using the domain please open vars.xml in the root conf                                                                              </div>
<div>    directory and set the default domain to the hostname you desire.  Then you would                                                                            </div><div>    use the domain name in the client instead of the IP address to register                                                                                     </div>
<div>    with FreeSWITCH.                                                                    </div></div><div><br></div><div><br></div><div><br></div><div>So having more than one profile with the default of </div><div><br>
</div><div>&lt;domain name=&quot;all&quot; alias=&quot;true&quot; parse=&quot;false&quot;/&gt;<br></div><div><br></div><div>is going to end up aliasing the same domains into all profiles who call it and cause an overwrite in the lookup table and probably an error in your logs somewhere.  If you had parse=&quot;true&quot; on all of them, they would all try and register to the gateways in all of your domains.</div>
<div><br></div><div><br></div><div>If you look at the stock config, external.xml is a good example of a secondary profile, it has</div><div><br></div><div>&lt;domain name=&quot;all&quot; alias=&quot;false&quot; parse=&quot;true&quot;/&gt;<br>
</div><div><br></div><div>so no aliases, and yes parse ... the exact opposite of the internal so that all the gateways would register from external and internal would bind to the local ip.</div><div><br></div><div>So, you probably want to use separate &lt;domain name=&quot;<a href="http://my.com">my.com</a>&quot;/&gt; per domain per profile you want to bind it to in more complicated setups.</div>
<div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div>
<div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div> </div><div><br></div><div><br></div><div><br></div><div><br></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Sun, Nov 11, 2012 at 9:09 PM, Emrah <span dir="ltr">&lt;<a href="mailto:lists@kavun.ch" target="_blank">lists@kavun.ch</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Bless you!<br>
<br>
Thanks for putting this together. You&#39;ve beautifully summed up all my questions.<br>
<div class="HOEnZb"><div class="h5">On Nov 11, 2012, at 8:09 AM, Lawrence Conroy &lt;<a href="mailto:lconroy@insensate.co.uk">lconroy@insensate.co.uk</a>&gt; wrote:<br>
<br>
&gt; Hi Folks,<br>
&gt; I&#39;ve started a new thread as it&#39;s not quite the same issue, and domains &amp; profiles have confused the heck out of me every time I have developed a new setup for fS.<br>
&gt; I have sometimes had to hack/hard-doce the dialstring to make multiple domains in one profile work, had hours of fun with presence, db and force register settings, and have still had some odd gotchas that have required extensive meditation.<br>

&gt; [... and yes, I have read the 1.0.6 bridge book; I&#39;m trying to abstract these elements ]<br>
&gt;<br>
&gt; Coming at this from standards/specs and rolling my own SIP stacks, sofia/fS seems to use the term &quot;domain&quot; differently from sipdomain, and alias seems to be tied to the directory (and thus to the profile listed in a directory file), but I&#39;m not sure.<br>

&gt; so ...<br>
&gt; Before I capture to the sofia conf xml wiki page, I have a couple of questions on the sip-profile XML setup;<br>
&gt;<br>
&gt; Q: Is there a particular reason why there&#39;s a parameter called alias and an (entirely different) setting also called alias?<br>
&gt; The sofia conf xml wiki&#39;s comment on the setting &quot;alias&quot; shows I&#39;m not alone.<br>
&gt; I agree that&#39;s what it appears to be doing, but can we nail this down please (and what happens if an external client uses this connection to register and call)?<br>
&gt;<br>
&gt; In the current sofia conf xml wiki page, the domain setting is not exactly well documented :).<br>
&gt; The current internal.xml vanilla example from git (as of time of writing) has the following lines:<br>
&gt; -------------------------<br>
&gt; ...<br>
&gt; &lt;!-- <a href="http://wiki.freeswitch.org/wiki/Sofia_Configuration_Files" target="_blank">http://wiki.freeswitch.org/wiki/Sofia_Configuration_Files</a> --&gt;<br>
&gt; &lt;!--aliases are other names that will work as a valid profile name for this profile--&gt;<br>
&gt; &lt;aliases&gt;<br>
&gt;   &lt;!--<br>
&gt;        &lt;alias name=&quot;default&quot;/&gt;<br>
&gt;    --&gt;<br>
&gt; &lt;/aliases&gt;<br>
&gt; &lt;!-- Outbound Registrations --&gt;<br>
&gt; &lt;gateways&gt;<br>
&gt;   &lt;X-PRE-PROCESS cmd=&quot;include&quot; data=&quot;internal/*.xml&quot;/&gt;<br>
&gt; &lt;/gateways&gt;<br>
&gt;<br>
&gt; &lt;domains&gt;<br>
&gt;   &lt;!-- indicator to parse the directory for domains with parse=&quot;true&quot; to get gateways--&gt;<br>
&gt;   &lt;!--&lt;domain name=&quot;$${domain}&quot; parse=&quot;true&quot;/&gt;--&gt;<br>
&gt;   &lt;!-- indicator to parse the directory for domains with parse=&quot;true&quot; to get gateways and alias every domain to this profile --&gt;<br>
&gt;   &lt;!--&lt;domain name=&quot;all&quot; alias=&quot;true&quot; parse=&quot;true&quot;/&gt;--&gt;<br>
&gt;   &lt;domain name=&quot;all&quot; alias=&quot;true&quot; parse=&quot;false&quot;/&gt;<br>
&gt; &lt;/domains&gt;<br>
&gt; ...<br>
&gt; -------------------------<br>
&gt;<br>
&gt; This stuff is entirely missing from the sofia.conf.xml wiki page, and it IS really important.<br>
&gt;<br>
&gt;<br>
&gt; Q: what&#39;s the default value for the alias parameter in the domain element? -- it is missing from the first example.<br>
&gt; Q: if there is more than one profile, what&#39;s the impact of setting parse = true in one (or all) of the profiles&#39; XML files?<br>
&gt;   (or parse = false, or missing the parameter altogether)?<br>
&gt; AFAICT, the gateways get pulled in via the pre-process directive just fine, regardless of the value of the parse parameter -- it works for me, at least.<br>
&gt;<br>
&gt; Q: if there is more than one profile, what&#39;s the impact of putting domain name=&quot;all&quot; into one (or all) of the profiles&#39; XML files?<br>
&gt;<br>
&gt; Ideally, having more than one sipdomain tied to one profile &quot;would be good&quot;, but aliases doesn&#39;t do that -- as the git file says, these are aliases for the profile name.<br>
&gt;<br>
&gt; Before I start scribbling, Answers on a postcard to this ML, please.<br>
&gt;<br>
&gt; all the best,<br>
&gt;  Lawrence<br>
&gt; _________________________________________________________________________<br>
&gt; Professional FreeSWITCH Consulting Services:<br>
&gt; <a href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br>
&gt; <a href="http://www.freeswitchsolutions.com" target="_blank">http://www.freeswitchsolutions.com</a><br>
&gt;<br>
&gt; FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>
&gt; <a href="http://www.cudatel.com" target="_blank">http://www.cudatel.com</a><br>
&gt;<br>
&gt; Official FreeSWITCH Sites<br>
&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
&gt; <a href="http://wiki.freeswitch.org" target="_blank">http://wiki.freeswitch.org</a><br>
&gt; <a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a><br>
&gt;<br>
&gt; FreeSWITCH-users mailing list<br>
&gt; <a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>
&gt; <a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
&gt; UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
&gt; <a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
<br>
<br>
_________________________________________________________________________<br>
Professional FreeSWITCH Consulting Services:<br>
<a href="mailto:consulting@freeswitch.org">consulting@freeswitch.org</a><br>
<a href="http://www.freeswitchsolutions.com" target="_blank">http://www.freeswitchsolutions.com</a><br>
<br>
FreeSWITCH-powered IP PBX: The CudaTel Communication Server<br>
<a href="http://www.cudatel.com" target="_blank">http://www.cudatel.com</a><br>
<br>
Official FreeSWITCH Sites<br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
<a href="http://wiki.freeswitch.org" target="_blank">http://wiki.freeswitch.org</a><br>
<a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a><br>
<br>
FreeSWITCH-users mailing list<br>
<a href="mailto:FreeSWITCH-users@lists.freeswitch.org">FreeSWITCH-users@lists.freeswitch.org</a><br>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
</div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br>Anthony Minessale II<br><br>FreeSWITCH <a href="http://www.freeswitch.org/">http://www.freeswitch.org/</a><br>ClueCon <a href="http://www.cluecon.com/">http://www.cluecon.com/</a><br>
Twitter: <a href="http://twitter.com/FreeSWITCH_wire">http://twitter.com/FreeSWITCH_wire</a><br><br>AIM: anthm<br><a href="mailto:MSN%3Aanthony_minessale@hotmail.com">MSN:anthony_minessale@hotmail.com</a><br>GTALK/JABBER/<a href="mailto:PAYPAL%3Aanthony.minessale@gmail.com">PAYPAL:anthony.minessale@gmail.com</a><br>
IRC: <a href="http://irc.freenode.net">irc.freenode.net</a> #freeswitch<br><br>FreeSWITCH Developer Conference<br><a href="mailto:sip%3A888@conference.freeswitch.org">sip:888@conference.freeswitch.org</a><br><a href="mailto:googletalk%3Aconf%2B888@conference.freeswitch.org">googletalk:conf+888@conference.freeswitch.org</a><br>
pstn:+19193869900<br>
</div>