Hi all,
A domain has their own 3 or 4 digit internal dial plan. When users dial out SIP/PSTN, callers should add a prefix plus their internal number.
When PSTN calls come in, should I use prefix2domain in pdt module to convert the PSTN number to a local domain number.
Is it possible with ser/sems isdngw to do that?
Anybody could send me back an example file in order to help me to understand
Regards
Harry
I still send back this message, nobody in this list can answer my question ? really
Harry
Le mar 04/05/2004 à 19:00, gaillac harry a écrit :
Hi all,
A domain has their own 3 or 4 digit internal dial plan. When users dial out SIP/PSTN, callers should add a prefix plus their internal number.
When PSTN calls come in, should I use prefix2domain in pdt module to convert the PSTN number to a local domain number.
Is it possible with ser/sems isdngw to do that?
Anybody could send me back an example file in order to help me to understand
Regards
Harry
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
no answer? that means that nobody has tried it yet or they are to busy to answer.
Best solution: try it yourself and post your experiences
regards klaus
gaillac harry wrote:
I still send back this message, nobody in this list can answer my question ? really
Harry
Le mar 04/05/2004 à 19:00, gaillac harry a écrit :
Hi all,
A domain has their own 3 or 4 digit internal dial plan. When users dial out SIP/PSTN, callers should add a prefix plus their internal number.
When PSTN calls come in, should I use prefix2domain in pdt module to convert the PSTN number to a local domain number.
Is it possible with ser/sems isdngw to do that?
Anybody could send me back an example file in order to help me to understand
Regards
Harry
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
Hi Klaus,
I do hope you're kidding !!! why isdngw plugin???? Sorry I can't still get an isdn card or a cisco gateway.
here is a plan in order to explain my question
-------------------- | BRI / 4 channels | number line:123456xxxx -------------------- | | | | --------- ---------- --------|NAT BOX |---------|SER+SEMS | :Internal dial plan 4 digits --------- ---------- :BOB number 1000
- When a sip client want to dial an outgoing number, this one is sent to isdngw plugin .
- When an incoming call from sip gateway to BOB is dialed what's going on?
Does sems is able to remove 123456 prefix and sent 1000 to Bob?
Harry
Le jeu 06/05/2004 à 09:06, Klaus Darilion a écrit :
no answer? that means that nobody has tried it yet or they are to busy to answer.
Best solution: try it yourself and post your experiences
regards klaus
gaillac harry wrote:
I still send back this message, nobody in this list can answer my question ? really
Harry
Le mar 04/05/2004 à 19:00, gaillac harry a écrit :
Hi all,
A domain has their own 3 or 4 digit internal dial plan. When users dial out SIP/PSTN, callers should add a prefix plus their internal number.
When PSTN calls come in, should I use prefix2domain in pdt module to convert the PSTN number to a local domain number.
Is it possible with ser/sems isdngw to do that?
Anybody could send me back an example file in order to help me to understand
Regards
Harry
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
On May 06, 2004 at 12:23, gaillac harry gaillacharry@yahoo.fr wrote:
Hi Klaus,
I do hope you're kidding !!! why isdngw plugin???? Sorry I can't still get an isdn card or a cisco gateway.
here is a plan in order to explain my question
-------------------- | BRI / 4 channels | number line:123456xxxx -------------------- | | | |
--------|NAT BOX |---------|SER+SEMS | :Internal dial plan 4 digits --------- ---------- :BOB number 1000
- When a sip client want to dial an outgoing number, this one is sent to
isdngw plugin .
- When an incoming call from sip gateway to BOB is dialed what's going
on?
Does sems is able to remove 123456 prefix and sent 1000 to Bob?
Yes, ser can easily do this. I haven't used pdt for that. In your case a simple strip(6) in the ser.cfg will do it (e.g if (uri~='sip:123456.+@') strip(6); ) or subst_uri from textops: subst_uri('/(sip:)123456(.*)/\1\2/');).
Andrei
From: sems-bounces@lists.iptel.org gaillac harry
When an incoming call from sip gateway to BOB is dialed what's going on?
The PSTN call is converted to a SIP session with the Request URI prepared in the following way: <called-party-number>@<calleedomain> <called-party-number> should be delivered by the ISDN interface driver <calleedomain> is to be set in isdngw.conf
Does sems is able to remove 123456 prefix and sent 1000 to Bob?
Of course, call handling of SEMS is controlled by SER, and SER has a lot of possibilities (built-in actions) for URI-rewriting using e.g.regular expressions.
Franz