A Broadband and ADSL forum. BroadbanterBanter

Welcome to BroadbanterBanter.

You are currently viewing as a guest which gives you limited access to view most discussions and other FREE features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload your own photos and access many other special features. Registration is fast, simple and absolutely free so please, join our community today.

Go Back   Home » BroadbanterBanter forum » Newsgroup Discussions » uk.telecom.voip (UK VOIP)
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

uk.telecom.voip (UK VOIP) (uk.telecom.voip) Discussion of topics relevant to packet based voice technologies including Voice over IP (VoIP), Fax over IP (FoIP), Voice over Frame Relay (VoFR), Voice over Broadband (VoB) and Voice on the Net (VoN) as well as service providers, hardware and software for use with these technologies. Advertising is not allowed.

Tags: , ,

Betamax caller ID with Asterisk



 
 
Thread Tools Display Modes
  #21  
Old July 18th 08, 01:00 AM posted to uk.telecom.voip
Graham.
external usenet poster
 
Posts: 346
Default Betamax caller ID with Asterisk

Apologies for the multiple posts guys.

--
Graham.

%Profound_observation%


Ads
  #22  
Old July 18th 08, 01:41 AM posted to uk.telecom.voip
voiptalker@gmail.com
external usenet poster
 
Posts: 31
Default Betamax caller ID with Asterisk

On Jul 17, 11:36*pm, alexd wrote:
On Thu, 17 Jul 2008 10:40:55 -0700, voiptalker wrote:
But, do you know of any way to send CLI based on number called? For
example, I'd like London based contacts to see my London number when
they receive a call, Cambridge contacts to see a Cambridge number and
Paris contacts to see a Paris CLI - no matter which extension the call
is made from.


Is this with FreePBX or vanilla Asterisk? Asterisk dialplans certainly
provide the power and flexibility to do this; whether or not you can with
FreePBX is another matter :-)


Yes, sorry I meant with FreePBX. I realise vanilla Asterisk could do
it, and I wish I could, but that's beyond my capabilities ;=)
  #23  
Old July 18th 08, 02:00 AM posted to uk.telecom.voip
voiptalker@gmail.com
external usenet poster
 
Posts: 31
Default Betamax caller ID with Asterisk

On Jul 18, 12:07*am, Theo Markettos theom
wrote:
wrote:
But, do you know of any way to send CLI based on number called? For
example, I'd like London based contacts to see my London number when
they receive a call, Cambridge contacts to see a Cambridge number and
Paris contacts to see a Paris CLI - no matter which extension the call
is made from.


If you can make Asterisk's CLID feature work, how about something like:

exten = _004420X.,1,Set(CALLERID(num)=00442012345678)
exten = _004420X.,2,Dial(SIP/${EXTEN}@provider)
exten = _00441223X.,1,Set(CALLERID(num)=00441223999999)
exten = _00441223X.,2,Dial(SIP/${EXTEN}@provider)
exten = _0033X.,1,Set(CALLERID(num)=0033123456789)
exten = _0033X.,2,Dial(SIP/${EXTEN}@provider)

(All completely untested)

Except that I can't make this feature work


Many thanks, I'll have a bash when I get a free hour or three. That
gets slotted into extensions.conf or extensions_custom.conf I suppose?

Would that interfere with/bypass FreePbx's Outbound Routes? If for
some reason Betamax was down, then a second trunk (another SIP
provider or landline) would be used.
  #24  
Old July 18th 08, 02:15 AM posted to uk.telecom.voip
voiptalker@gmail.com
external usenet poster
 
Posts: 31
Default Betamax caller ID with Asterisk

On Jul 18, 12:33*am, Jono wrote:
alexd explained on 17/07/2008 :

On Thu, 17 Jul 2008 10:40:55 -0700, voiptalker wrote:


But, do you know of any way to send CLI based on number called? For
example, I'd like London based contacts to see my London number when
they receive a call, Cambridge contacts to see a Cambridge number and
Paris contacts to see a Paris CLI - no matter which extension the call
is made from.


Is this with FreePBX or vanilla Asterisk? Asterisk dialplans certainly
provide the power and flexibility to do this; whether or not you can with
FreePBX is another matter :-)


I can't see voiptalker's post..

Anyway, yes it can be done in FreePBX.


OK. I don't immediately see how to achieve this

A bit cumbersome in the gui; nevertheless, possible.


Sounds a bit like "now don't try this at home now kids" I'll have a
tinker with Theo's idea to see what happens - or not..... Cheers
  #25  
Old July 18th 08, 08:38 PM posted to uk.telecom.voip
alexd
external usenet poster
 
Posts: 707
Default Betamax caller ID with Asterisk

On Thu, 17 Jul 2008 17:00:05 -0700, voiptalker wrote:

On Jul 18, 12:07*am, Theo Markettos theom
wrote:


If you can make Asterisk's CLID feature work, how about something like:

exten = _004420X.,1,Set(CALLERID(num)=00442012345678)
exten = _004420X.,2,Dial(SIP/${EXTEN}@provider)
exten = _00441223X.,1,Set(CALLERID(num)=00441223999999)
exten = _00441223X.,2,Dial(SIP/${EXTEN}@provider)
exten = _0033X.,1,Set(CALLERID(num)=0033123456789)
exten = _0033X.,2,Dial(SIP/${EXTEN}@provider)


Would that interfere with/bypass FreePbx's Outbound Routes?


The key is the Set() bit, which sets the CallerID based on the prefix of
the number you've dialled. Theo's example assumes you dial straight out
without pressing '9' first, in international format. So to call
02087654321, you would dial 00442087654321, and because that matches the
pattern '_004420X.', the CallerID for that call is set to
'0044201234568'. If you dial 9 first, change the pattern to '_9004420X.'.

So, you don't necessarily need the Dial() bit. After the Set(), you can
jump into wherever FreePBX does it's dialling [so long as FreePBX doesn't
Set(CALLERID anywhere after you've done it]. If you're going to be
testing this, I recommend you open an Asterisk console and 'core set
verbose 5' so you can see what it's doing.

--
http://ale.cx/ (AIM:troffasky) )
19:22:26 up 6 days, 21:57, 3 users, load average: 0.02, 0.05, 0.06
Convergence, n: The act of using separate DSL circuits for voice and data
  #26  
Old July 18th 08, 08:40 PM posted to uk.telecom.voip
alexd
external usenet poster
 
Posts: 707
Default Betamax caller ID with Asterisk

On Thu, 17 Jul 2008 22:58:51 +0100, Ivor Jones wrote:

Well the way I do it is to make the call from a number in the relevant
range.


That's what voiptalker is asking for.

--
http://ale.cx/ (AIM:troffasky) )
19:38:49 up 6 days, 22:13, 3 users, load average: 0.00, 0.03, 0.01
Convergence, n: The act of using separate DSL circuits for voice and data
  #27  
Old July 18th 08, 09:08 PM posted to uk.telecom.voip
Theo Markettos
external usenet poster
 
Posts: 146
Default Betamax caller ID with Asterisk

wrote:
Many thanks, I'll have a bash when I get a free hour or three. That
gets slotted into extensions.conf or extensions_custom.conf I suppose?


extensions.conf. You'll need some kind of framework around it. I'm
assuming you have some kind of phone connected to the PBX, which you'll have
to arrange to land in that dialling context:

[fred]
....the lines I listed before
exten = h,1,HangUp

The last line above hangs up the PBX phone when the SIP call has hungup.
Let's assume there's a SIP desktop phone which connects to your Asterisk
server, the details of the connection will be described in sip.conf and will
have a line:
context=fred
which means that when someone picks up the desktop phone any dialling will
be passed to the [fred] block above. This tutorial should give you an
idea:
http://www.asteriskguru.com/tutorial...p_ipphone.html

The same goes for softphones, IAX phones or PSTN phones via a linecard.

Would that interfere with/bypass FreePbx's Outbound Routes? If for
some reason Betamax was down, then a second trunk (another SIP
provider or landline) would be used.


Perhaps someone who knows FreePBX can comment? It might help to have a look
at what underlying Asterisk rules it generates.

Theo
  #28  
Old July 18th 08, 11:09 PM posted to uk.telecom.voip
Ivor Jones
external usenet poster
 
Posts: 386
Default Betamax caller ID with Asterisk

In ,
alexd typed, for some strange, unexplained reason:
: On Thu, 17 Jul 2008 22:58:51 +0100, Ivor Jones wrote:
:
: Well the way I do it is to make the call from a number in the
: relevant range.
:
: That's what voiptalker is asking for.

I saw it as how to spoof the CLI so it didn't matter which number he was
using.

I just select which number to dial out on via my PBX. On my system, if you
dial the usual '9' you get a line at random, but if you dial '81' you get
Line 1, '82' gets you Line 2 and so on. A card detailing which prefix to
dial for which outgoing number is fixed to each extension phone, some have
preset buttons programmed.

In any case, it's a solution that works for me :-)

Ivor

  #29  
Old July 24th 08, 12:05 AM posted to uk.telecom.voip
DesG
external usenet poster
 
Posts: 3
Default Betamax caller ID with Asterisk

On 17 Jul, 23:07, Theo Markettos
wrote:


If you can make Asterisk's CLID feature work, how about something like:

exten = _004420X.,1,Set(CALLERID(num)=00442012345678)
exten = _004420X.,2,Dial(SIP/${EXTEN}@provider)
exten = _00441223X.,1,Set(CALLERID(num)=00441223999999)
exten = _00441223X.,2,Dial(SIP/${EXTEN}@provider)
exten = _0033X.,1,Set(CALLERID(num)=0033123456789)
exten = _0033X.,2,Dial(SIP/${EXTEN}@provider)

(All completely untested)

Except that I can't make this feature work

Theo


Here is a paste from my extensions.conf

exten = _078.,1,Set(CALLERID(num)=+3531440XXXX)

That works, so maybe you need to use the + instead of the 00 when
setting the CLID?

Cheers, Des.

  #30  
Old July 24th 08, 01:28 AM posted to uk.telecom.voip
Theo Markettos
external usenet poster
 
Posts: 146
Default Betamax caller ID with Asterisk

DesG wrote:
Here is a paste from my extensions.conf

exten = _078.,1,Set(CALLERID(num)=+3531440XXXX)

That works, so maybe you need to use the + instead of the 00 when
setting the CLID?


Does that work with Betamax? I don't doubt that the above setup works with
normal Asterisk installations, but Betamax seem to use a funny way to
indicate the outbound CLID. I think I tried all possible combinations of
the above without success, but maybe I missed something.

Theo
 




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Betamax caller ID on SPA3102 gateway? Jose uk.telecom.voip (UK VOIP) 1 March 28th 08 02:47 AM
Betamax won't take my payment. Graham. uk.telecom.voip (UK VOIP) 3 March 16th 08 03:10 PM
Asterisk - Alter outgoing caller ID with BT Gareth Evans uk.telecom.voip (UK VOIP) 2 June 14th 07 10:10 PM
Betamax CLI for others ¬Stephen Hammond uk.telecom.voip (UK VOIP) 6 October 30th 06 10:14 PM
Question about betamax ¬Stephen Hammond uk.telecom.voip (UK VOIP) 5 September 12th 06 12:53 AM


All times are GMT +1. The time now is 02:15 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.Content Relevant URLs by vBSEO 2.4.0
Copyright ©2004-2008 BroadbanterBanter, part of the NewsgroupBanter project.
The comments are property of their posters.
MPAA - Houses for Sale - Loans - Credit Card - Daily Horoscopes