Re: [asterisk-users] dial plan and sip

2010-11-15 Thread Chad Wallace
On Sat, 13 Nov 2010 20:38:30 -0500
Thomas Perron thomas.per...@gmail.com wrote:

 Here is a very very basic config.  But, not working (:
 I simply want to dial the DID that is registered with the SIP
 provider. then, as you can see the call should dial the 703111 number
 Hints please?
[...]
 exten = s,n,Dial(SIP/jazzey/1703111,120,A,(demo-thanks))

exten = s,n,Dial(SIP/jazzey/1703111,120,A(demo-thanks))


-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] dial plan and sip

2010-11-15 Thread Thomas Perron
thank you
i will try it.


On Mon, Nov 15, 2010 at 4:52 PM, Chad Wallace
cwall...@lodgingcompany.com wrote:
 On Sat, 13 Nov 2010 20:38:30 -0500
 Thomas Perron thomas.per...@gmail.com wrote:

 Here is a very very basic config.  But, not working (:
 I simply want to dial the DID that is registered with the SIP
 provider. then, as you can see the call should dial the 703111 number
 Hints please?
 [...]
 exten = s,n,Dial(SIP/jazzey/1703111,120,A,(demo-thanks))

 exten = s,n,Dial(SIP/jazzey/1703111,120,A(demo-thanks))


 --
 _
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
               http://www.asterisk.org/hello

 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] dial plan and sip

2010-11-14 Thread Kyle Kienapfel
Why do you have A,(demo-thanks) shouldn't it it be A(demo-thanks)?
eg:
exten = s,n,Dial(SIP/jazzey/1703111,120,A(demo-thanks))

On Sat, Nov 13, 2010 at 6:38 PM, Thomas Perron thomas.per...@gmail.comwrote:

 Here is a very very basic config.  But, not working (:
 I simply want to dial the DID that is registered with the SIP provider.
 then, as you can see the call should dial the 703111 number
 Hints please?


 sip.conf
 ;register = 
 908366554:396...@carrier.jazzey.com908366554%3a396...@carrier.jazzey.com
 register = 908366554:396...@sip.jazzey.com908366554%3a396...@sip.jazzey.com
 [jazzey]
 type=friend
 host=sip.jazzey.com
 username=908366554
 secret=396444
 qualify=no
 insecure=invite

 extensions.conf
 exten = s,1,Answer()
 exten = s,n,Wait(2)
 exten = s,n,Dial(SIP/jazzey/1703111,120,A,(demo-thanks))
 exten = s,n,Wait(2)
 exten = s,n,Hangup()

 --
 _
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [asterisk-users] dial plan and sip

2010-11-13 Thread Brett Woollum
Try changing this line:
 exten = s,n,Dial(SIP/jazzey/1703111,120,A,(demo-thanks))

To:
 exten = s,n,Dial(SIP/1703...@jazzey,120,A,(demo-thanks))


Sent from my iPhone

On Nov 13, 2010, at 5:38 PM, Thomas Perron thomas.per...@gmail.com wrote:

 Here is a very very basic config.  But, not working (:
 I simply want to dial the DID that is registered with the SIP provider.
 then, as you can see the call should dial the 703111 number
 Hints please?
 
 
 sip.conf
 ;register = 908366554:396...@carrier.jazzey.com
 register = 908366554:396...@sip.jazzey.com
 [jazzey]
 type=friend
 host=sip.jazzey.com
 username=908366554
 secret=396444
 qualify=no
 insecure=invite
 
 extensions.conf
 exten = s,1,Answer()
 exten = s,n,Wait(2)
 exten = s,n,Dial(SIP/jazzey/1703111,120,A,(demo-thanks))
 exten = s,n,Wait(2)
 exten = s,n,Hangup()
 
 -- 
 _
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello
 
 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] dial plan and sip

2010-11-13 Thread Thomas Perron
Hi Brett,
It did not work.
I will try other ideas.
SIP or Dial plan problem?
registeration?


On Sat, Nov 13, 2010 at 8:55 PM, Brett Woollum br...@woollum.com wrote:
 Try changing this line:
 exten = s,n,Dial(SIP/jazzey/1703111,120,A,(demo-thanks))

 To:
 exten = s,n,Dial(SIP/1703...@jazzey,120,A,(demo-thanks))


 Sent from my iPhone

 On Nov 13, 2010, at 5:38 PM, Thomas Perron thomas.per...@gmail.com wrote:

 Here is a very very basic config.  But, not working (:
 I simply want to dial the DID that is registered with the SIP provider.
 then, as you can see the call should dial the 703111 number
 Hints please?


 sip.conf
 ;register = 908366554:396...@carrier.jazzey.com
 register = 908366554:396...@sip.jazzey.com
 [jazzey]
 type=friend
 host=sip.jazzey.com
 username=908366554
 secret=396444
 qualify=no
 insecure=invite

 extensions.conf
 exten = s,1,Answer()
 exten = s,n,Wait(2)
 exten = s,n,Dial(SIP/jazzey/1703111,120,A,(demo-thanks))
 exten = s,n,Wait(2)
 exten = s,n,Hangup()

 --
 _
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
               http://www.asterisk.org/hello

 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

 --
 _
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
               http://www.asterisk.org/hello

 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] dial plan and sip

2010-11-13 Thread Brett Woollum
What is the error message?

Sent from my iPhone

On Nov 13, 2010, at 6:28 PM, Thomas Perron thomas.per...@gmail.com wrote:

 Hi Brett,
 It did not work.
 I will try other ideas.
 SIP or Dial plan problem?
 registeration?
 
 
 On Sat, Nov 13, 2010 at 8:55 PM, Brett Woollum br...@woollum.com wrote:
 Try changing this line:
 exten = s,n,Dial(SIP/jazzey/1703111,120,A,(demo-thanks))
 
 To:
 exten = s,n,Dial(SIP/1703...@jazzey,120,A,(demo-thanks))
 
 
 Sent from my iPhone
 
 On Nov 13, 2010, at 5:38 PM, Thomas Perron thomas.per...@gmail.com wrote:
 
 Here is a very very basic config.  But, not working (:
 I simply want to dial the DID that is registered with the SIP provider.
 then, as you can see the call should dial the 703111 number
 Hints please?
 
 
 sip.conf
 ;register = 908366554:396...@carrier.jazzey.com
 register = 908366554:396...@sip.jazzey.com
 [jazzey]
 type=friend
 host=sip.jazzey.com
 username=908366554
 secret=396444
 qualify=no
 insecure=invite
 
 extensions.conf
 exten = s,1,Answer()
 exten = s,n,Wait(2)
 exten = s,n,Dial(SIP/jazzey/1703111,120,A,(demo-thanks))
 exten = s,n,Wait(2)
 exten = s,n,Hangup()
 
 --
 _
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello
 
 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users
 
 --
 _
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello
 
 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users
 
 
 -- 
 _
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello
 
 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] dial plan and sip

2010-11-13 Thread Thomas Perron
How do I see the error message?
the phone call seemed to get through but I did not see anything on my
1.4 console.
i used 1.6.x before.  having trouble with this for some reason.  older stuff.
i have one session open at the  prompt but nothing shows up.



On Sat, Nov 13, 2010 at 9:53 PM, Brett Woollum br...@woollum.com wrote:
 What is the error message?

 Sent from my iPhone

 On Nov 13, 2010, at 6:28 PM, Thomas Perron thomas.per...@gmail.com wrote:

 Hi Brett,
 It did not work.
 I will try other ideas.
 SIP or Dial plan problem?
 registeration?


 On Sat, Nov 13, 2010 at 8:55 PM, Brett Woollum br...@woollum.com wrote:
 Try changing this line:
 exten = s,n,Dial(SIP/jazzey/1703111,120,A,(demo-thanks))

 To:
 exten = s,n,Dial(SIP/1703...@jazzey,120,A,(demo-thanks))


 Sent from my iPhone

 On Nov 13, 2010, at 5:38 PM, Thomas Perron thomas.per...@gmail.com wrote:

 Here is a very very basic config.  But, not working (:
 I simply want to dial the DID that is registered with the SIP provider.
 then, as you can see the call should dial the 703111 number
 Hints please?


 sip.conf
 ;register = 908366554:396...@carrier.jazzey.com
 register = 908366554:396...@sip.jazzey.com
 [jazzey]
 type=friend
 host=sip.jazzey.com
 username=908366554
 secret=396444
 qualify=no
 insecure=invite

 extensions.conf
 exten = s,1,Answer()
 exten = s,n,Wait(2)
 exten = s,n,Dial(SIP/jazzey/1703111,120,A,(demo-thanks))
 exten = s,n,Wait(2)
 exten = s,n,Hangup()

 --
 _
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
               http://www.asterisk.org/hello

 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

 --
 _
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
               http://www.asterisk.org/hello

 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


 --
 _
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
               http://www.asterisk.org/hello

 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

 --
 _
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
               http://www.asterisk.org/hello

 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] dial plan and sip

2010-11-13 Thread Jim Dickenson
You get into asterisk by saying asterisk -r. You then up the verbosity by 
saying core set verbose 3 or some such number. You the call your number and 
you should see the steps of your dialplan execute.
-- 
Jim Dickenson
mailto:dicken...@cfmc.com

CfMC
http://www.cfmc.com/



On Nov 13, 2010, at 7:02 PM, Thomas Perron wrote:

 How do I see the error message?
 the phone call seemed to get through but I did not see anything on my
 1.4 console.
 i used 1.6.x before.  having trouble with this for some reason.  older stuff.
 i have one session open at the  prompt but nothing shows up.
 
 
 
 On Sat, Nov 13, 2010 at 9:53 PM, Brett Woollum br...@woollum.com wrote:
 What is the error message?
 
 Sent from my iPhone
 
 On Nov 13, 2010, at 6:28 PM, Thomas Perron thomas.per...@gmail.com wrote:
 
 Hi Brett,
 It did not work.
 I will try other ideas.
 SIP or Dial plan problem?
 registeration?
 
 
 On Sat, Nov 13, 2010 at 8:55 PM, Brett Woollum br...@woollum.com wrote:
 Try changing this line:
 exten = s,n,Dial(SIP/jazzey/1703111,120,A,(demo-thanks))
 
 To:
 exten = s,n,Dial(SIP/1703...@jazzey,120,A,(demo-thanks))
 
 
 Sent from my iPhone
 
 On Nov 13, 2010, at 5:38 PM, Thomas Perron thomas.per...@gmail.com wrote:
 
 Here is a very very basic config.  But, not working (:
 I simply want to dial the DID that is registered with the SIP provider.
 then, as you can see the call should dial the 703111 number
 Hints please?
 
 
 sip.conf
 ;register = 908366554:396...@carrier.jazzey.com
 register = 908366554:396...@sip.jazzey.com
 [jazzey]
 type=friend
 host=sip.jazzey.com
 username=908366554
 secret=396444
 qualify=no
 insecure=invite
 
 extensions.conf
 exten = s,1,Answer()
 exten = s,n,Wait(2)
 exten = s,n,Dial(SIP/jazzey/1703111,120,A,(demo-thanks))
 exten = s,n,Wait(2)
 exten = s,n,Hangup()
 
 --
 _
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello
 
 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users
 
 --
 _
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello
 
 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users
 
 
 --
 _
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello
 
 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users
 
 --
 _
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello
 
 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users
 
 
 -- 
 _
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello
 
 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] dial plan and sip

2010-11-13 Thread Thomas Perron
Jim,
Thanks. But, no joy.
I set to 3, then 5.
I don't think I am getting registered somewhere.
The console shows nothing.
The call to the DID drops after 5 seconds or so.
It does not ring.
I know.  Basic stuff.  I really think the version of this code is not
robust enough.
My sip.conf and extensions.conf is very simple.


On Sat, Nov 13, 2010 at 10:13 PM, Jim Dickenson dicken...@cfmc.com wrote:
 You get into asterisk by saying asterisk -r. You then up the verbosity by 
 saying core set verbose 3 or some such number. You the call your number and 
 you should see the steps of your dialplan execute.
 --
 Jim Dickenson
 mailto:dicken...@cfmc.com

 CfMC
 http://www.cfmc.com/



 On Nov 13, 2010, at 7:02 PM, Thomas Perron wrote:

 How do I see the error message?
 the phone call seemed to get through but I did not see anything on my
 1.4 console.
 i used 1.6.x before.  having trouble with this for some reason.  older stuff.
 i have one session open at the  prompt but nothing shows up.



 On Sat, Nov 13, 2010 at 9:53 PM, Brett Woollum br...@woollum.com wrote:
 What is the error message?

 Sent from my iPhone

 On Nov 13, 2010, at 6:28 PM, Thomas Perron thomas.per...@gmail.com wrote:

 Hi Brett,
 It did not work.
 I will try other ideas.
 SIP or Dial plan problem?
 registeration?


 On Sat, Nov 13, 2010 at 8:55 PM, Brett Woollum br...@woollum.com wrote:
 Try changing this line:
 exten = s,n,Dial(SIP/jazzey/1703111,120,A,(demo-thanks))

 To:
 exten = s,n,Dial(SIP/1703...@jazzey,120,A,(demo-thanks))


 Sent from my iPhone

 On Nov 13, 2010, at 5:38 PM, Thomas Perron thomas.per...@gmail.com 
 wrote:

 Here is a very very basic config.  But, not working (:
 I simply want to dial the DID that is registered with the SIP provider.
 then, as you can see the call should dial the 703111 number
 Hints please?


 sip.conf
 ;register = 908366554:396...@carrier.jazzey.com
 register = 908366554:396...@sip.jazzey.com
 [jazzey]
 type=friend
 host=sip.jazzey.com
 username=908366554
 secret=396444
 qualify=no
 insecure=invite

 extensions.conf
 exten = s,1,Answer()
 exten = s,n,Wait(2)
 exten = s,n,Dial(SIP/jazzey/1703111,120,A,(demo-thanks))
 exten = s,n,Wait(2)
 exten = s,n,Hangup()

 --
 _
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
               http://www.asterisk.org/hello

 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

 --
 _
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
               http://www.asterisk.org/hello

 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


 --
 _
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
               http://www.asterisk.org/hello

 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

 --
 _
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
               http://www.asterisk.org/hello

 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


 --
 _
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
               http://www.asterisk.org/hello

 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


 --
 _
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 New to Asterisk? Join us for a live introductory webinar every Thurs:
               http://www.asterisk.org/hello

 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


-- 
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users