Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

NUTRI and international calls

Status
Not open for further replies.

bb34nne

Programmer
Feb 21, 2007
102
0
0
HR
Hello

Can somebody do NUTRP and post it here? I have problem with international calls. I want to call back to that international number because I missed the call, and I want put one zero in front of orginal number. How do my NUTRI command have to look? My NUTRP is below:

<NUTRP:ENTRY=ALL;
NUMBER CONVERSION DATA
ENTRY CNVTYP NUMTYP ROU TARDST PRE TRC NEWTYP CONT BCAP HLC
01 2 0 0 0
02 2 0 0 0
03 2 0 0 0
04 2 0 0 0
05 2 0 0 0
09 2 0 0 0
1 2 4 0 0
2 2 4 0 0
3 2 4 0 0
4 2 4 0 0
5 2 4 0 0
6 2 4 0 0
7 2 4 0 0
8 2 4 0 0
9 2 4 0 0
END
 
your number table is incorrect!
correct nutri should be:

numtyp 1 for international calls and numtyp 1 for national calls

Code:
nutri:entry=1,cnvtyp=2,numtyp=1,pre=000;
nutri:entry=2,cnvtyp=2,numtyp=1,pre=000;    
nutri:entry=3,cnvtyp=2,numtyp=1,pre=000;
nutri:entry=4,cnvtyp=2,numtyp=1,pre=000;
nutri:entry=5,cnvtyp=2,numtyp=1,pre=000;
nutri:entry=6,cnvtyp=2,numtyp=1,pre=000;
nutri:entry=7,cnvtyp=2,numtyp=1,pre=000;
nutri:entry=8,cnvtyp=2,numtyp=1,pre=000;
nutri:entry=9,cnvtyp=2,numtyp=1,pre=000;
nutri:entry=1,cnvtyp=2,numtyp=2,pre=00;
nutri:entry=2,cnvtyp=2,numtyp=2,pre=00;
nutri:entry=3,cnvtyp=2,numtyp=2,pre=00;
nutri:entry=4,cnvtyp=2,numtyp=2,pre=00;
nutri:entry=5,cnvtyp=2,numtyp=2,pre=00;
nutri:entry=6,cnvtyp=2,numtyp=2,pre=00;
nutri:entry=7,cnvtyp=2,numtyp=2,pre=00;
nutri:entry=8,cnvtyp=2,numtyp=2,pre=00;
nutri:entry=9,cnvtyp=2,numtyp=2,pre=00;

Cheers,
Daddy

-----------------------------------------------------
What You See Is What You Get
Never underestimate tha powah of tha google!
 
The following are my RODDP and NUTRP:


<RODDP:DEST=90802&90808&90807&90803&90805&90806&90703;
EXTERNAL DESTINATION ROUTE DATA
DEST DRN ROU CHO CUST ADC TRC SRT NUMACK PRE
90802 2 16051100000002500060000100 0 1 0
90808 2 16051100000002500060000100 0 1 0
90807 2 16051100000002500060000000 0 1 0
90803 2 16051100000002500060000100 0 1 0
90805 2 16051100000002500060000000 0 1 0
90806 2 16051100000002500060000100 0 1 0
90703 2 16051100000002500060000100 0 1 0


<NUTRP;
NUMBER CONVERSION DATA
ENTRY CNVTYP NUMTYP ROU TARDST PRE TRC NEWTYP CONT BCAP HLC
3 1 10 2 90703 0803000 0 0
3 1 10 2 90803 0803000 0 0
5 1 10 2 90805 0805000 0 0
3 1 10 2 90806 0803000 0 0
5 1 10 2 90807 0805000 0 0
3 1 10 2 90802 0802000 0 0
3 1 10 2 90808 0802000 0 0

The problem is that I want to achieve the conversions below from my extensions to 3 different public networks. The extension passes

through same route (2), to a transit PBX. Then from the transit PBX through different routes to the public:

1. All calls from extensions to 0803, 0806 and 0703 must have 0803000 as PREFIX
2. All calls from extensions to 0805 and 0807 must have 0805000 as PREFIX
3. All calls from extensions to 0802 and 0808 must have 0802000 as PREFIX

1 and 2 are working but 2 picks the prefix specified for 1. How do I correct this or achieve the above conversion on the originating PBX?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top