<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=us-ascii" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Gilles wrote:
<blockquote cite="mid:g18fg61el02ml03frnj63t3nomvl7mv1tu@4ax.com"
 type="cite">
  <pre wrap="">On Tue, 14 Dec 2010 16:56:14 +0100, Gilles <a class="moz-txt-link-rfc2396E" href="mailto:codecomplete@free.fr">&lt;codecomplete@free.fr&gt;</a>
wrote:
  </pre>
  <blockquote type="cite">
    <pre wrap="">PS: Here's what I'm thinking of using:
    </pre>
  </blockquote>
  <pre wrap=""><!---->
At this point, Asterisk seems to register OK with my VOSP, but when I
call the number from my cellphone, I get this error:

"NOTICE[88]: chan_sip.c:14033 handle_request_invite: Call from
'myvospaccount' to extension 's' rejected because extension not
found."

Incidently, how does Asterisk know how to link calls from the VOSP to
an extension in the dialplan?

Here's what I'm using:

;================ sip.conf
[general]
port = 5060
bindaddr = 0.0.0.0

;deny=0.0.0.0/0
;permit=&lt;IP address of VOSP server&gt;
externip=&lt;my public IP address&gt;
localnet=192.168.0.0/24
nat=yes

;all RTP packets go through Asterisk
canreinvite=no

disallow=all
allow=ulaw
allow=alaw
allow=gsm

;incoming calls from VOSP
;can't use "s" extension?
context = vosp-incoming
register =&gt; <a class="moz-txt-link-abbreviated" href="mailto:myvospaccount:mypasswd@myvosp.com">myvospaccount:mypasswd@myvosp.com</a>

;================ extension.conf
[general]
static=yes
writeprotect=yes
clearglobalvars=no
autofallthrough=yes

[vosp-incoming]
exten =&gt; s,1,Dial(SIP/6011)
exten =&gt; s,n,Hangup

Thank you.


  </pre>
</blockquote>
You are setting up a SIP trunk from your VOSP provider(whatever VOSP
is).&nbsp; It dials your phone number.&nbsp; So whatever you dial from your cell
phone is the extension that this trunk should land at.&nbsp; <br>
<br>
's' is not an extension.&nbsp; It's a placeholder for the steps in your dial
plan.<br>
<br>
For instance if my phone number with my provider is 815 555 1212, then
I need an extension 8155551212.<br>
<br>
I would use:<br>
<br>
[inbound]<br>
<br>
exten =&gt; 8155551212,1,answer<br>
exten =&gt; 81555551212,2,Goto(mainmenu,s,1)<br>
exten =&gt; 8155551212,3,hangup<br>
<br>
Lyle Giese<br>
LCR Computer Services, Inc.<br>
<br>
</body>
</html>