No subject


Wed Jan 27 21:05:54 CET 2016


if ( !(is_method("REGISTER")  ) ) {
if (from_uri==myself)
{
# authenticate if from local subscriber
# authenticate all initial non-REGISTER request that pretend to be
# generated by local subscriber (domain from FROM URI is local)
if (!proxy_authorize("", "subscriber")) {
proxy_challenge("", "0");
exit;
}
if (!db_check_from()) {
sl_send_reply("403","Forbidden auth ID");
exit;
}
consume_credentials();
# caller authenticated
} else {
# if caller is not local, then called number must be local
if (!uri==myself) {
send_reply("403","Rely forbidden");
exit;
}
}

}

What extra configuration should i be making to allow calls (INVITE etc) to
be signalled via opensips ?

Here is a sample of the SIP trace:

REQUEST:
===================
01-30 17:15:57.522: I/System.out(30771): INVITE sip:1012 at 192.168.0.46 SIP/
2.0
01-30 17:15:57.522: I/System.out(30771): Via: SIP/2.0/TCP 10.1.4.24:57232
;rport;branch=z9hG4bKPj2Ablr3CXdtiqLbZwAwM1IY.s2phTfK3i;alias
01-30 17:15:57.522: I/System.out(30771): Max-Forwards: 70
01-30 17:15:57.522: I/System.out(30771): From: sip:1000 at 192.168.0.46
;tag=SgvMtXb0KnIhW0ZDWnLxDN1tglrpAPzD
01-30 17:15:57.522: I/System.out(30771): To: sip:1012 at 192.168.0.46
01-30 17:15:57.522: I/System.out(30771): Contact: <sip:1000 at 105.5.139.90:
30789;ob>
01-30 17:15:57.522: I/System.out(30771): Call-ID:
MnJgNdYjsQsPxaxyPScBIbYydinJm9dR
01-30 17:15:57.522: I/System.out(30771): CSeq: 9040 INVITE
01-30 17:15:57.522: I/System.out(30771): Route: <sip:192.168.4.248;lr>
01-30 17:15:57.522: I/System.out(30771): Allow: PRACK, INVITE, ACK, BYE,
CANCEL, UPDATE, INFO, SUBSCRIBE, NOTIFY, REFER, MESSAGE, OPTIONS
01-30 17:15:57.522: I/System.out(30771): Supported: replaces, 100rel,
timer, norefersub
01-30 17:15:57.522: I/System.out(30771): Session-Expires: 1800
01-30 17:15:57.522: I/System.out(30771): Min-SE: 90
01-30 17:15:57.522: I/System.out(30771): User-Agent: Pjsua2 Android 2.4.5
01-30 17:15:57.522: I/System.out(30771): Content-Type: application/s

RESPONSE
====================
01-30 17:15:58.123: I/System.out(30771): SIP/2.0 403 Rely forbidden
01-30 17:15:58.123: I/System.out(30771): Via: SIP/2.0/TCP 10.1.4.24:57232
;received=105.5.139.90;rport=30689
;branch=z9hG4bKPj2Ablr3CXdtiqLbZwAwM1IY.s2phTfK3i;alias
01-30 17:15:58.123: I/System.out(30771): From: sip:1000 at 192.168.0.46
;tag=SgvMtXb0KnIhW0ZDWnLxDN1tglrpAPzD
01-30 17:15:58.123: I/System.out(30771): To: sip:1012 at 192.168.0.46
;tag=a0a925d2eca49498ea7382b7b1f63f38.62df
01-30 17:15:58.123: I/System.out(30771): Call-ID:
MnJgNdYjsQsPxaxyPScBIbYydinJm9dR
01-30 17:15:58.123: I/System.out(30771): CSeq: 9040 INVITE
01-30 17:15:58.123: I/System.out(30771): Server: OpenSIPS (2.1.2
(x86_64/linux))
01-30 17:15:58.123: I/System.out(30771): Content-Length: 0

-- 
David

--047d7b5d9cad828bb4052a8ec3b1
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr">Hello list,<div>Am quite new to opensips. So i want opensi=
ps to act as an outbound proxy to freeswitch. I followed the tutorial on th=
e opensips site and set up a running opensips instance (vanilla). I too hav=
e a running freeswitch instance.=C2=A0<br clear=3D"all"><div><br></div><div=
>so, on my softphone, when i set outbound proxy as opensips, =C2=A0am able =
to register the phone successfully to freeswitch via opensips. But when i a=
ttempt to make a call, i get:</div><div><br></div><div><br></div><div>send_=
reply(&quot;403&quot;,&quot;Rely forbidden&quot;);<br></div><div><br></div>=
<div><br></div><div>From the opensips config, i can see this is cause by th=
is snipped:</div><div><br></div><div><div></div><div><div class=3D"" style=
=3D"display:block;padding:0.5em;color:rgb(51,51,51);font-family:monospace;b=
ackground:rgb(248,248,248)"><div><span class=3D"" style=3D"color:rgb(51,51,=
51);font-weight:bold">if</span> ( !(is_method(<span class=3D"" style=3D"col=
or:rgb(221,17,68)">&quot;REGISTER&quot;</span>) =C2=A0) ) {</div><div><span=
 class=3D"" style=3D"white-space:pre">		</span></div><div><span class=3D"" =
style=3D"white-space:pre">		</span><span class=3D"" style=3D"color:rgb(51,5=
1,51);font-weight:bold">if</span> (from_uri=3D=3Dmyself)</div><div><span cl=
ass=3D"" style=3D"white-space:pre">		</span></div><div><span class=3D"" sty=
le=3D"white-space:pre">		</span>{</div><div><span class=3D"" style=3D"white=
-space:pre">			</span></div><div><span class=3D"" style=3D"white-space:pre"=
>			</span># authenticate <span class=3D"" style=3D"color:rgb(51,51,51);fon=
t-weight:bold">if</span> from local subscriber</div><div><span class=3D"" s=
tyle=3D"white-space:pre">			</span># authenticate all initial non-REGISTER =
request that pretend to be</div><div><span class=3D"" style=3D"white-space:=
pre">			</span># <span class=3D"">generated by local <span class=3D"" style=
=3D"color:rgb(153,0,0);font-weight:bold">subscriber</span> <span class=3D""=
>(domain from FROM URI is local)</span></span></div><div><span class=3D"" s=
tyle=3D"white-space:pre"><span class=3D"">			</span></span><span class=3D""=
><span class=3D"" style=3D"color:rgb(153,0,0);font-weight:bold">if</span> <=
span class=3D"">(!proxy_authorize(<span class=3D"" style=3D"color:rgb(221,1=
7,68)">&quot;&quot;</span>, <span class=3D"" style=3D"color:rgb(221,17,68)"=
>&quot;subscriber&quot;</span>)</span>) </span>{</div><div><span class=3D""=
 style=3D"white-space:pre">				</span>proxy_challenge(<span class=3D"" styl=
e=3D"color:rgb(221,17,68)">&quot;&quot;</span>, <span class=3D"" style=3D"c=
olor:rgb(221,17,68)">&quot;0&quot;</span>);</div><div><span class=3D"" styl=
e=3D"white-space:pre">				</span>exit;</div><div><span class=3D"" style=3D"=
white-space:pre">			</span>}</div><div><span class=3D"" style=3D"white-spac=
e:pre">			</span><span class=3D"" style=3D"color:rgb(51,51,51);font-weight:=
bold">if</span> (!db_check_from()) {</div><div><span class=3D"" style=3D"wh=
ite-space:pre">				</span>sl_send_reply(<span class=3D"" style=3D"color:rgb=
(221,17,68)">&quot;403&quot;</span>,<span class=3D"" style=3D"color:rgb(221=
,17,68)">&quot;Forbidden auth ID&quot;</span>);</div><div><span class=3D"" =
style=3D"white-space:pre">				</span>exit;</div><div><span class=3D"" style=
=3D"white-space:pre">			</span>}</div><div><span class=3D"" style=3D"white-=
space:pre">		</span></div><div><span class=3D"" style=3D"white-space:pre">	=
		</span>consume_credentials();</div><div><span class=3D"" style=3D"white-s=
pace:pre">			</span># caller authenticated</div><div><span class=3D"" style=
=3D"white-space:pre">			</span></div><div><span class=3D"" style=3D"white-s=
pace:pre">		</span>} <span class=3D"" style=3D"color:rgb(51,51,51);font-wei=
ght:bold">else</span> {</div><div><span class=3D"" style=3D"white-space:pre=
">			</span># <span class=3D"" style=3D"color:rgb(51,51,51);font-weight:bol=
d">if</span> caller is not local, <span class=3D"">then called number must =
be local</span></div><div><span class=3D"" style=3D"white-space:pre"><span =
class=3D"">			</span></span></div><div><span class=3D"" style=3D"white-spac=
e:pre"><span class=3D"">			</span></span><span class=3D""><span class=3D"" =
style=3D"color:rgb(153,0,0);font-weight:bold">if</span> <span class=3D"">(!=
uri=3D=3Dmyself)</span> </span>{</div><div><span class=3D"" style=3D"white-=
space:pre">				</span>send_reply(<span class=3D"" style=3D"color:rgb(221,17=
,68)">&quot;403&quot;</span>,<span class=3D"" style=3D"color:rgb(221,17,68)=
">&quot;Rely forbidden&quot;</span>);</div><div><span class=3D"" style=3D"w=
hite-space:pre">				</span>exit;</div><div><span class=3D"" style=3D"white-=
space:pre">			</span>}</div><div><span class=3D"" style=3D"white-space:pre"=
>		</span>}</div><div><br></div><div><span class=3D"" style=3D"white-space:=
pre">	</span>}</div></div></div><div></div></div><div><br></div><div>What e=
xtra configuration should i be making to allow calls (INVITE etc) to be sig=
nalled via opensips ?</div><div><br></div><div>Here is a sample of the SIP =
trace:</div><div><br></div><div>REQUEST:</div><div>=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D</div><div><div></div><div><div class=3D""=
 style=3D"display:block;padding:0.5em;color:rgb(51,51,51);font-family:monos=
pace;background:rgb(248,248,248)"><div><span class=3D"" style=3D"color:rgb(=
0,128,128)">01</span>-<span class=3D"" style=3D"color:rgb(0,128,128)">30</s=
pan> <span class=3D"" style=3D"color:rgb(0,128,128)">17</span>:<span class=
=3D"" style=3D"color:rgb(0,128,128)">15</span>:<span class=3D"" style=3D"co=
lor:rgb(0,128,128)">57.522</span>: I/System.<span class=3D"" style=3D"color=
:rgb(51,51,51);font-weight:bold">out</span>(<span class=3D"" style=3D"color=
:rgb(0,128,128)">30771</span>): INVITE sip:<span class=3D"" style=3D"color:=
rgb(0,128,128)">1012</span>@<span class=3D"" style=3D"color:rgb(0,128,128)"=
>192.168</span><span class=3D"" style=3D"color:rgb(0,128,128)">.0</span><sp=
an class=3D"" style=3D"color:rgb(0,128,128)">.46</span> SIP/<span class=3D"=
" style=3D"color:rgb(0,128,128)">2.0</span></div><div><span class=3D"" styl=
e=3D"color:rgb(0,128,128)">01</span>-<span class=3D"" style=3D"color:rgb(0,=
128,128)">30</span> <span class=3D"" style=3D"color:rgb(0,128,128)">17</spa=
n>:<span class=3D"" style=3D"color:rgb(0,128,128)">15</span>:<span class=3D=
"" style=3D"color:rgb(0,128,128)">57.522</span>: I/System.<span class=3D"" =
style=3D"color:rgb(51,51,51);font-weight:bold">out</span>(<span class=3D"" =
style=3D"color:rgb(0,128,128)">30771</span>): Via: SIP/<span class=3D"" sty=
le=3D"color:rgb(0,128,128)">2.0</span>/TCP <span class=3D"" style=3D"color:=
rgb(0,128,128)">10.1</span><span class=3D"" style=3D"color:rgb(0,128,128)">=
.4</span><span class=3D"" style=3D"color:rgb(0,128,128)">.24</span>:<span c=
lass=3D"" style=3D"color:rgb(0,128,128)">57232</span>;rport;branch=3Dz9hG4b=
KPj2Ablr3CXdtiqLbZwAwM1IY.s2phTfK3i;alias</div><div>01-<span class=3D"" sty=
le=3D"color:rgb(0,128,128)">30</span> <span class=3D"" style=3D"color:rgb(0=
,128,128)">17</span>:<span class=3D"" style=3D"color:rgb(0,128,128)">15</sp=
an>:<span class=3D"" style=3D"color:rgb(0,128,128)">57.522</span>: I/System=
.<span class=3D"" style=3D"color:rgb(51,51,51);font-weight:bold">out</span>=
(<span class=3D"" style=3D"color:rgb(0,128,128)">30771</span>): Max-Forward=
s: <span class=3D"" style=3D"color:rgb(0,128,128)">70</span></div><div><spa=
n class=3D"" style=3D"color:rgb(0,128,128)">01</span>-<span class=3D"" styl=
e=3D"color:rgb(0,128,128)">30</span> <span class=3D"" style=3D"color:rgb(0,=
128,128)">17</span>:<span class=3D"" style=3D"color:rgb(0,128,128)">15</spa=
n>:<span class=3D"" style=3D"color:rgb(0,128,128)">57.522</span>: I/System.=
<span class=3D"" style=3D"color:rgb(51,51,51);font-weight:bold">out</span>(=
<span class=3D"" style=3D"color:rgb(0,128,128)">30771</span>): From: sip:<s=
pan class=3D"" style=3D"color:rgb(0,128,128)">1000</span>@<span class=3D"" =
style=3D"color:rgb(0,128,128)">192.168</span><span class=3D"" style=3D"colo=
r:rgb(0,128,128)">.0</span><span class=3D"" style=3D"color:rgb(0,128,128)">=
.46</span>;tag=3DSgvMtXb0KnIhW0ZDWnLxDN1tglrpAPzD</div><div>01-<span class=
=3D"" style=3D"color:rgb(0,128,128)">30</span> <span class=3D"" style=3D"co=
lor:rgb(0,128,128)">17</span>:<span class=3D"" style=3D"color:rgb(0,128,128=
)">15</span>:<span class=3D"" style=3D"color:rgb(0,128,128)">57.522</span>:=
 I/System.<span class=3D"" style=3D"color:rgb(51,51,51);font-weight:bold">o=
ut</span>(<span class=3D"" style=3D"color:rgb(0,128,128)">30771</span>): To=
: sip:<span class=3D"" style=3D"color:rgb(0,128,128)">1012</span>@<span cla=
ss=3D"" style=3D"color:rgb(0,128,128)">192.168</span><span class=3D"" style=
=3D"color:rgb(0,128,128)">.0</span><span class=3D"" style=3D"color:rgb(0,12=
8,128)">.46</span></div><div><span class=3D"" style=3D"color:rgb(0,128,128)=
">01</span>-<span class=3D"" style=3D"color:rgb(0,128,128)">30</span> <span=
 class=3D"" style=3D"color:rgb(0,128,128)">17</span>:<span class=3D"" style=
=3D"color:rgb(0,128,128)">15</span>:<span class=3D"" style=3D"color:rgb(0,1=
28,128)">57.522</span>: I/System.<span class=3D"" style=3D"color:rgb(51,51,=
51);font-weight:bold">out</span>(<span class=3D"" style=3D"color:rgb(0,128,=
128)">30771</span>): Contact: &lt;sip:<span class=3D"" style=3D"color:rgb(0=
,128,128)">1000</span>@<span class=3D"" style=3D"color:rgb(0,128,128)">105.=
5</span><span class=3D"" style=3D"color:rgb(0,128,128)">.139</span><span cl=
ass=3D"" style=3D"color:rgb(0,128,128)">.90</span>:<span class=3D"" style=
=3D"color:rgb(0,128,128)">30789</span>;ob&gt;</div><div><span class=3D"" st=
yle=3D"color:rgb(0,128,128)">01</span>-<span class=3D"" style=3D"color:rgb(=
0,128,128)">30</span> <span class=3D"" style=3D"color:rgb(0,128,128)">17</s=
pan>:<span class=3D"" style=3D"color:rgb(0,128,128)">15</span>:<span class=
=3D"" style=3D"color:rgb(0,128,128)">57.522</span>: I/System.<span class=3D=
"" style=3D"color:rgb(51,51,51);font-weight:bold">out</span>(<span class=3D=
"" style=3D"color:rgb(0,128,128)">30771</span>): Call-ID: MnJgNdYjsQsPxaxyP=
ScBIbYydinJm9dR</div><div>01-<span class=3D"" style=3D"color:rgb(0,128,128)=
">30</span> <span class=3D"" style=3D"color:rgb(0,128,128)">17</span>:<span=
 class=3D"" style=3D"color:rgb(0,128,128)">15</span>:<span class=3D"" style=
=3D"color:rgb(0,128,128)">57.522</span>: I/System.<span class=3D"" style=3D=
"color:rgb(51,51,51);font-weight:bold">out</span>(<span class=3D"" style=3D=
"color:rgb(0,128,128)">30771</span>): CSeq: <span class=3D"" style=3D"color=
:rgb(0,128,128)">9040</span> INVITE</div><div>01-<span class=3D"" style=3D"=
color:rgb(0,128,128)">30</span> <span class=3D"" style=3D"color:rgb(0,128,1=
28)">17</span>:<span class=3D"" style=3D"color:rgb(0,128,128)">15</span>:<s=
pan class=3D"" style=3D"color:rgb(0,128,128)">57.522</span>: I/System.<span=
 class=3D"" style=3D"color:rgb(51,51,51);font-weight:bold">out</span>(<span=
 class=3D"" style=3D"color:rgb(0,128,128)">30771</span>): Route: &lt;sip:<s=
pan class=3D"" style=3D"color:rgb(0,128,128)">192.168</span><span class=3D"=
" style=3D"color:rgb(0,128,128)">.4</span><span class=3D"" style=3D"color:r=
gb(0,128,128)">.248</span>;lr&gt;</div><div><span class=3D"" style=3D"color=
:rgb(0,128,128)">01</span>-<span class=3D"" style=3D"color:rgb(0,128,128)">=
30</span> <span class=3D"" style=3D"color:rgb(0,128,128)">17</span>:<span c=
lass=3D"" style=3D"color:rgb(0,128,128)">15</span>:<span class=3D"" style=
=3D"color:rgb(0,128,128)">57.522</span>: I/System.<span class=3D"" style=3D=
"color:rgb(51,51,51);font-weight:bold">out</span>(<span class=3D"" style=3D=
"color:rgb(0,128,128)">30771</span>): Allow: PRACK, INVITE, ACK, BYE, CANCE=
L, UPDATE, INFO, SUBSCRIBE, NOTIFY, REFER, MESSAGE, OPTIONS</div><div>01-<s=
pan class=3D"" style=3D"color:rgb(0,128,128)">30</span> <span class=3D"" st=
yle=3D"color:rgb(0,128,128)">17</span>:<span class=3D"" style=3D"color:rgb(=
0,128,128)">15</span>:<span class=3D"" style=3D"color:rgb(0,128,128)">57.52=
2</span>: I/System.<span class=3D"" style=3D"color:rgb(51,51,51);font-weigh=
t:bold">out</span>(<span class=3D"" style=3D"color:rgb(0,128,128)">30771</s=
pan>): Supported: replaces, <span class=3D"" style=3D"color:rgb(0,128,128)"=
>100</span>rel, timer, norefersub</div><div>01-<span class=3D"" style=3D"co=
lor:rgb(0,128,128)">30</span> <span class=3D"" style=3D"color:rgb(0,128,128=
)">17</span>:<span class=3D"" style=3D"color:rgb(0,128,128)">15</span>:<spa=
n class=3D"" style=3D"color:rgb(0,128,128)">57.522</span>: I/System.<span c=
lass=3D"" style=3D"color:rgb(51,51,51);font-weight:bold">out</span>(<span c=
lass=3D"" style=3D"color:rgb(0,128,128)">30771</span>): Session-Expires: <s=
pan class=3D"" style=3D"color:rgb(0,128,128)">1800</span></div><div><span c=
lass=3D"" style=3D"color:rgb(0,128,128)">01</span>-<span class=3D"" style=
=3D"color:rgb(0,128,128)">30</span> <span class=3D"" style=3D"color:rgb(0,1=
28,128)">17</span>:<span class=3D"" style=3D"color:rgb(0,128,128)">15</span=
>:<span class=3D"" style=3D"color:rgb(0,128,128)">57.522</span>: I/System.<=
span class=3D"" style=3D"color:rgb(51,51,51);font-weight:bold">out</span>(<=
span class=3D"" style=3D"color:rgb(0,128,128)">30771</span>): Min-SE: <span=
 class=3D"" style=3D"color:rgb(0,128,128)">90</span></div><div><span class=
=3D"" style=3D"color:rgb(0,128,128)">01</span>-<span class=3D"" style=3D"co=
lor:rgb(0,128,128)">30</span> <span class=3D"" style=3D"color:rgb(0,128,128=
)">17</span>:<span class=3D"" style=3D"color:rgb(0,128,128)">15</span>:<spa=
n class=3D"" style=3D"color:rgb(0,128,128)">57.522</span>: I/System.<span c=
lass=3D"" style=3D"color:rgb(51,51,51);font-weight:bold">out</span>(<span c=
lass=3D"" style=3D"color:rgb(0,128,128)">30771</span>): User-Agent: Pjsua2 =
Android <span class=3D"" style=3D"color:rgb(0,128,128)">2.4</span><span cla=
ss=3D"" style=3D"color:rgb(0,128,128)">.5</span></div><div><span class=3D""=
 style=3D"color:rgb(0,128,128)">01</span>-<span class=3D"" style=3D"color:r=
gb(0,128,128)">30</span> <span class=3D"" style=3D"color:rgb(0,128,128)">17=
</span>:<span class=3D"" style=3D"color:rgb(0,128,128)">15</span>:<span cla=
ss=3D"" style=3D"color:rgb(0,128,128)">57.522</span>: I/System.<span class=
=3D"" style=3D"color:rgb(51,51,51);font-weight:bold">out</span>(<span class=
=3D"" style=3D"color:rgb(0,128,128)">30771</span>): Content-Type: applicati=
on/s</div></div></div><div></div></div><div><div class=3D"" style=3D"displa=
y:block;padding:0.5em;color:rgb(51,51,51);font-family:monospace;background:=
rgb(248,248,248)"><div></div></div></div><div><br></div><div>RESPONSE</div>=
<div>=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D</div><div=
><div></div><div><div class=3D"hljs cs" style=3D"display:block;overflow-x:a=
uto;padding:0.5em;color:rgb(51,51,51);font-family:monospace;background:rgb(=
248,248,248)"><div><span class=3D"hljs-number" style=3D"color:rgb(0,128,128=
)">01</span>-<span class=3D"hljs-number" style=3D"color:rgb(0,128,128)">30<=
/span> <span class=3D"hljs-number" style=3D"color:rgb(0,128,128)">17</span>=
:<span class=3D"hljs-number" style=3D"color:rgb(0,128,128)">15</span>:<span=
 class=3D"hljs-number" style=3D"color:rgb(0,128,128)">58.123</span>: I/Syst=
em.<span class=3D"hljs-keyword" style=3D"color:rgb(51,51,51);font-weight:bo=
ld">out</span>(<span class=3D"hljs-number" style=3D"color:rgb(0,128,128)">3=
0771</span>): SIP/<span class=3D"hljs-number" style=3D"color:rgb(0,128,128)=
">2.0</span> <span class=3D"hljs-number" style=3D"color:rgb(0,128,128)">403=
</span> Rely forbidden</div><div>01-<span class=3D"hljs-number" style=3D"co=
lor:rgb(0,128,128)">30</span> <span class=3D"hljs-number" style=3D"color:rg=
b(0,128,128)">17</span>:<span class=3D"hljs-number" style=3D"color:rgb(0,12=
8,128)">15</span>:<span class=3D"hljs-number" style=3D"color:rgb(0,128,128)=
">58.123</span>: I/System.<span class=3D"hljs-keyword" style=3D"color:rgb(5=
1,51,51);font-weight:bold">out</span>(<span class=3D"hljs-number" style=3D"=
color:rgb(0,128,128)">30771</span>): Via: SIP/<span class=3D"hljs-number" s=
tyle=3D"color:rgb(0,128,128)">2.0</span>/TCP <span class=3D"hljs-number" st=
yle=3D"color:rgb(0,128,128)">10.1</span><span class=3D"hljs-number" style=
=3D"color:rgb(0,128,128)">.4</span><span class=3D"hljs-number" style=3D"col=
or:rgb(0,128,128)">.24</span>:<span class=3D"hljs-number" style=3D"color:rg=
b(0,128,128)">57232</span>;received=3D<span class=3D"hljs-number" style=3D"=
color:rgb(0,128,128)">105.5</span><span class=3D"hljs-number" style=3D"colo=
r:rgb(0,128,128)">.139</span><span class=3D"hljs-number" style=3D"color:rgb=
(0,128,128)">.90</span>;rport=3D<span class=3D"hljs-number" style=3D"color:=
rgb(0,128,128)">30689</span>;branch=3Dz9hG4bKPj2Ablr3CXdtiqLbZwAwM1IY.s2phT=
fK3i;alias</div><div>01-<span class=3D"hljs-number" style=3D"color:rgb(0,12=
8,128)">30</span> <span class=3D"hljs-number" style=3D"color:rgb(0,128,128)=
">17</span>:<span class=3D"hljs-number" style=3D"color:rgb(0,128,128)">15</=
span>:<span class=3D"hljs-number" style=3D"color:rgb(0,128,128)">58.123</sp=
an>: I/System.<span class=3D"hljs-keyword" style=3D"color:rgb(51,51,51);fon=
t-weight:bold">out</span>(<span class=3D"hljs-number" style=3D"color:rgb(0,=
128,128)">30771</span>): From: sip:<span class=3D"hljs-number" style=3D"col=
or:rgb(0,128,128)">1000</span>@<span class=3D"hljs-number" style=3D"color:r=
gb(0,128,128)">192.168</span><span class=3D"hljs-number" style=3D"color:rgb=
(0,128,128)">.0</span><span class=3D"hljs-number" style=3D"color:rgb(0,128,=
128)">.46</span>;tag=3DSgvMtXb0KnIhW0ZDWnLxDN1tglrpAPzD</div><div>01-<span =
class=3D"hljs-number" style=3D"color:rgb(0,128,128)">30</span> <span class=
=3D"hljs-number" style=3D"color:rgb(0,128,128)">17</span>:<span class=3D"hl=
js-number" style=3D"color:rgb(0,128,128)">15</span>:<span class=3D"hljs-num=
ber" style=3D"color:rgb(0,128,128)">58.123</span>: I/System.<span class=3D"=
hljs-keyword" style=3D"color:rgb(51,51,51);font-weight:bold">out</span>(<sp=
an class=3D"hljs-number" style=3D"color:rgb(0,128,128)">30771</span>): To: =
sip:<span class=3D"hljs-number" style=3D"color:rgb(0,128,128)">1012</span>@=
<span class=3D"hljs-number" style=3D"color:rgb(0,128,128)">192.168</span><s=
pan class=3D"hljs-number" style=3D"color:rgb(0,128,128)">.0</span><span cla=
ss=3D"hljs-number" style=3D"color:rgb(0,128,128)">.46</span>;tag=3Da0a925d2=
eca49498ea7382b7b1f63f38<span class=3D"hljs-number" style=3D"color:rgb(0,12=
8,128)">.62</span>df</div><div>01-<span class=3D"hljs-number" style=3D"colo=
r:rgb(0,128,128)">30</span> <span class=3D"hljs-number" style=3D"color:rgb(=
0,128,128)">17</span>:<span class=3D"hljs-number" style=3D"color:rgb(0,128,=
128)">15</span>:<span class=3D"hljs-number" style=3D"color:rgb(0,128,128)">=
58.123</span>: I/System.<span class=3D"hljs-keyword" style=3D"color:rgb(51,=
51,51);font-weight:bold">out</span>(<span class=3D"hljs-number" style=3D"co=
lor:rgb(0,128,128)">30771</span>): Call-ID: MnJgNdYjsQsPxaxyPScBIbYydinJm9d=
R</div><div>01-<span class=3D"hljs-number" style=3D"color:rgb(0,128,128)">3=
0</span> <span class=3D"hljs-number" style=3D"color:rgb(0,128,128)">17</spa=
n>:<span class=3D"hljs-number" style=3D"color:rgb(0,128,128)">15</span>:<sp=
an class=3D"hljs-number" style=3D"color:rgb(0,128,128)">58.123</span>: I/Sy=
stem.<span class=3D"hljs-keyword" style=3D"color:rgb(51,51,51);font-weight:=
bold">out</span>(<span class=3D"hljs-number" style=3D"color:rgb(0,128,128)"=
>30771</span>): CSeq: <span class=3D"hljs-number" style=3D"color:rgb(0,128,=
128)">9040</span> INVITE</div><div>01-<span class=3D"hljs-number" style=3D"=
color:rgb(0,128,128)">30</span> <span class=3D"hljs-number" style=3D"color:=
rgb(0,128,128)">17</span>:<span class=3D"hljs-number" style=3D"color:rgb(0,=
128,128)">15</span>:<span class=3D"hljs-number" style=3D"color:rgb(0,128,12=
8)">58.123</span>: I/System.<span class=3D"hljs-keyword" style=3D"color:rgb=
(51,51,51);font-weight:bold">out</span>(<span class=3D"hljs-number" style=
=3D"color:rgb(0,128,128)">30771</span>): Server: OpenSIPS (<span class=3D"h=
ljs-number" style=3D"color:rgb(0,128,128)">2.1</span><span class=3D"hljs-nu=
mber" style=3D"color:rgb(0,128,128)">.2</span> (x86_64/linux))</div><div><s=
pan class=3D"hljs-number" style=3D"color:rgb(0,128,128)">01</span>-<span cl=
ass=3D"hljs-number" style=3D"color:rgb(0,128,128)">30</span> <span class=3D=
"hljs-number" style=3D"color:rgb(0,128,128)">17</span>:<span class=3D"hljs-=
number" style=3D"color:rgb(0,128,128)">15</span>:<span class=3D"hljs-number=
" style=3D"color:rgb(0,128,128)">58.123</span>: I/System.<span class=3D"hlj=
s-keyword" style=3D"color:rgb(51,51,51);font-weight:bold">out</span>(<span =
class=3D"hljs-number" style=3D"color:rgb(0,128,128)">30771</span>): Content=
-Length: <span class=3D"hljs-number" style=3D"color:rgb(0,128,128)">0</span=
></div></div></div><div></div></div><div><br></div>-- <br><div class=3D"gma=
il_signature">David</div>
</div></div>

--047d7b5d9cad828bb4052a8ec3b1--



More information about the Users mailing list