<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">2016-04-05 17:12 GMT+02:00 Joshua Colp <span dir="ltr"><<a href="mailto:jcolp@digium.com" target="_blank">jcolp@digium.com</a>></span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Olivier wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">
Hello,<br>
<br>
For lab testing, I'm trying to build two differents PJSIP trunks between<br>
two  Asterisk 13.8.0enabled boxes.<br>
I thought I could set up both trunks like this:<br>
Box A/port 5060 <------ Trunk1 -----> Box B/port 5060<br>
Box A/port 5062 <------ Trunk2 -----> Box B/port 5062<br>
<br>
and declare trunks like this:<br>
<br>
[foobar1]<br>
type=endpoint<br>
transport=simpletrans<br>
context=from-customer<br>
aors=foobar1<br>
allow=!all,alaw<br>
<br>
[foobar1]<br>
type=identify<br>
endpoint=foobar1<br></span>
match=<a href="http://100.66.1.104:5060" rel="noreferrer" target="_blank">100.66.1.104:5060</a> <<a href="http://100.66.1.104:5060" rel="noreferrer" target="_blank">http://100.66.1.104:5060</a>><br>
<br>
[foobar1]<br>
type=aor<br>
contact=sip:<a href="http://100.66.1.104:5060" rel="noreferrer" target="_blank">100.66.1.104:5060</a> <<a href="http://100.66.1.104:5060" rel="noreferrer" target="_blank">http://100.66.1.104:5060</a>><br>
</blockquote>
<br>
You would need to use From user based matching to differentiate the two trunks. This can be accomplished by specifying the remote endpoint name to match using the from_user parameter on an endpoint. Example:<br>
<br>
[trunk1]<br>
type=endpoint<br>
from_user=trunk2<br>
<br>
When an outbound call is initiated using the trunk1 endpoint then the From user will be 'trunk2'. If this is received by another chan_pjsip it will attempt to look for an endpoint named 'trunk2'.<br>
<br>
This will allow you to differentiate.<span class="HOEnZb"><font color="#888888"><br></font></span></blockquote><div><br></div><div>So basically, I then must use an other header (than From header) to pass Caller IDs between the two boxes, no ?<br></div><div>Which header is then recommanded ? P-Asserted-Identity ?<br>Is this commonly supported and configurable by non-Asterisk PBX ?<br></div><div><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="HOEnZb"><font color="#888888">
<br>
-- <br>
Joshua Colp<br>
Digium, Inc. | Senior Software Developer<br>
445 Jan Davis Drive NW - Huntsville, AL 35806 - US<br>
Check us out at: <a href="http://www.digium.com" rel="noreferrer" target="_blank">www.digium.com</a> & <a href="http://www.asterisk.org" rel="noreferrer" target="_blank">www.asterisk.org</a><br>
<br>
<br>
-- <br>
_____________________________________________________________________<br>
-- Bandwidth and Colocation Provided by <a href="http://www.api-digital.com" rel="noreferrer" target="_blank">http://www.api-digital.com</a> --<br>
New to Asterisk? Join us for a live introductory webinar every Thurs:<br>
              <a href="http://www.asterisk.org/hello" rel="noreferrer" target="_blank">http://www.asterisk.org/hello</a><br>
<br>
asterisk-users mailing list<br>
To UNSUBSCRIBE or update options visit:<br>
  <a href="http://lists.digium.com/mailman/listinfo/asterisk-users" rel="noreferrer" target="_blank">http://lists.digium.com/mailman/listinfo/asterisk-users</a><br>
</font></span></blockquote></div><br></div></div>