RE: [Asterisk-Users] would it be possible to...

2004-05-04 Thread Andrew Kroh
This is possible with asterisk.  There several ways you can do this.
You would need a X100P from Digium to interface with the PSTN line
coming in.  Then you could send the call over VoIP which doesn't require
anything more than broadband and a VoIP provider.  You should have
caller-id on the PSTN line to verify the mobile number.

Mobile -- PSTN -- Asterisk -- VoIP -- Foreign Number

Best regards,

Andrew Kroh



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Wolfgang
Pichler
Sent: Tuesday, May 04, 2004 10:53 AM
To: Asterisk-Users Mailinglist
Subject: [Asterisk-Users] would it be possible to...

hi all,

i'd like to know if it would be possible with asterisk (and which
hardware would i need) to implement the following (or is it not possible
with asterisk - but possible with ...)

I'd like to set up something like a Mobile to Conventionel Network
Gateway - so that users (with there Mobile Phone) which are registered
(known Call Number) can Call a Conventionel Network Number + the Number
theyed liked to call (for foreign country calls) - the gateway then
connects to the foreign number and let the call start.
For example: If you'd like to call a number in the united states with
your mobile phone (which normally is expensive) - then you call for
example 0732/432563-1272626552 (localnumber-number you really like to
call) and so you don't have to pay for an expensive foreign call.

I hope you understand what i mean (my english isn't best)

best regards
Wolfgang

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

---
Incoming mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.670 / Virus Database: 432 - Release Date: 4/27/2004
 

---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.670 / Virus Database: 432 - Release Date: 4/27/2004
 

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


[Asterisk-Users] Spoofing CallerID on Demand

2004-04-14 Thread Andrew Kroh
I have an outgoing line that allows me to set my caller id.  I want to be able to 
change the caller id when ever I place a call using this line.  I would like my user 
to press 7, then be prompted for their 10 digit caller id number, then be promted for 
the number they would like to call in the form 1NXXNXX.
 
How can I accomplish this???
 
Right now I am using this script that users have to dial _71NXXN , 
where the first 12 digits are the number to be called and the last 10 are the caller 
id.
 
My dialplan:
 
exten = _71NXXN,1,SetCallerID(${EXTEN:12})
exten = _71NXXN,2,StripLSD(10)
exten = _71NXXNXX,3,Dial(~~~,${EXTEN:1})
 
exten = h,1,Hangup
exten = i,1,Hangup
exten = t,1,Hangup
,E,zj)b b,E,z%lv(g(mlv(g(Yb~.N
[EMAIL PROTECTED]   zm+mlv(g(Yb~.

RE: [Asterisk-Users] Spoofing CallerID on Demain

2004-04-14 Thread Andrew Kroh
Here is what I thought of, does anyone see any problems in this logic?
1. User dials 7
2. Asterisk plays directions in background.  But continues to next priority
whiles playing. (Correct?)
3. User enters number.
4. Asterisk sets CID.
5. Asterisk plays more directions in background so user can enter number
whiles it is talking.
6. Asterisk dials the number.

exten = 7,1,Background(enter-10-digit-callerid-to-display)
exten = 7,2,Goto(_XX,1)

exten = _XX,1,SetCallerID(${EXTEN})
exten = _XX,2,Goto(_1NXXNXX,1)

exten =
_1NXXNXX,1,Backgound(dial-number-to-be-called-including-1-and-the-areaco
de)
exten = _1NXXNXX,2,Dial,~/${EXTEN}

exten = h,1,Hangup
exten = i,1,Hangup
exten = t,1,Hangup

How would asterisk react if the user only entered 7 numbers when it asks for
10?  Would it hangup?

___
Asterisk-Users mailing list
[EMAIL PROTECTED]
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users