[asterisk-users] MFC/R2 detected as ISDN PRI

2010-11-10 Thread Martin Spinassi
Hi list,

I'm trying to setup an asterisk 1.8.0 with MFC/R2, but I'm having these
error messages loading chan_dahdi:

 module load chan_dahdi.so
ERROR[9241]: chan_dahdi.c:11848 mkintf: Signalling requested on channel
1 is MFC/R2 but line is in ISDN PRI signalling
ERROR[9241]: chan_dahdi.c:16180 build_channels: Unable to register
channel '1-15'

I got the config in /etc/asterisk/chan_dahdi.conf with the correct
signalling:

signalling=mfcr2
mfcr2_variant=ar

Why asterisk detects it as ISDN PRI? Is there any way to force it to use
MFC/R2? Am I missing something?
Any tip or link to documentation is really appreciated.

Here goes some info about what I have:

# dahdi_scan
[1]
active=yes
alarms=OK
description=Wildcard TE121 Card 0
name=WCT1/0
manufacturer=Digium
devicetype=Wildcard TE121 (VPMADT032)
location=PCI Bus 37 Slot 09
basechan=1
totchans=31
irq=32
type=digital-E1
syncsrc=1
lbo=0 db (CSU)/0-133 feet (DSX-1)
coding_opts=AMI,HDB3
framing_opts=CCS,CRC4
coding=HDB3
framing=CCS

Asterisk version: 1.8.0
Dahdi version: dahdi-linux-complete-2.4.0+2.4.0
libpri version: libpri-1.4.11.4
openr2 version: openr2-1.2.0

My location: Argentina


Again, if you have any tip, I'll really thank you it. I've been
scratching my head with this for two long days.. 


Cheers,

Martín


-- 
_
-- 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] MFC/R2 detected as ISDN PRI

2010-11-10 Thread Tzafrir Cohen
On Wed, Nov 10, 2010 at 11:42:18AM -0300, Martin Spinassi wrote:
 Hi list,
 
 I'm trying to setup an asterisk 1.8.0 with MFC/R2, but I'm having these
 error messages loading chan_dahdi:
 
  module load chan_dahdi.so
 ERROR[9241]: chan_dahdi.c:11848 mkintf: Signalling requested on channel
 1 is MFC/R2 but line is in ISDN PRI signalling

That is: You requested [in chan_dahdi.conf] MFC/R2 signalling, but the
channel has [applied from /etc/dahdi/system.conf] PRI signalling.

You should probably have in /etc/dahdi/system.conf something along the
lines of:

  # Not sure about crc4
  span=1,1,0,cas,hdb3,crc4
  cas=1-15,17-31,1101
  dchan=16
  
  # also be sure to set echocan, tonezone, and such

-- 
   Tzafrir Cohen
icq#16849755  jabber:tzafrir.co...@xorcom.com
+972-50-7952406   mailto:tzafrir.co...@xorcom.com
http://www.xorcom.com  iax:gu...@local.xorcom.com/tzafrir

-- 
_
-- 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] MFC/R2 detected as ISDN PRI

2010-11-10 Thread Martin Spinassi
On Wed, 2010-11-10 at 17:10 +0200, Tzafrir Cohen wrote:
 On Wed, Nov 10, 2010 at 11:42:18AM -0300, Martin Spinassi wrote:
  Hi list,
  
  I'm trying to setup an asterisk 1.8.0 with MFC/R2, but I'm having these
  error messages loading chan_dahdi:
  
   module load chan_dahdi.so
  ERROR[9241]: chan_dahdi.c:11848 mkintf: Signalling requested on channel
  1 is MFC/R2 but line is in ISDN PRI signalling
 
 That is: You requested [in chan_dahdi.conf] MFC/R2 signalling, but the
 channel has [applied from /etc/dahdi/system.conf] PRI signalling.
 
 You should probably have in /etc/dahdi/system.conf something along the
 lines of:
 
   # Not sure about crc4
   span=1,1,0,cas,hdb3,crc4
   cas=1-15,17-31,1101
   dchan=16
   
   # also be sure to set echocan, tonezone, and such
 


Thank you so much Tzafrir for your response.

After reading your post, it gets a bit more clearer, but can't figure
out how to solve it. 

This is my /etc/dahdi/system.con

span = 1,1,0,ccs,hdb3
bchan = 1-15,17-31
dchan = 16
echocanceller = mg2,1-240
loadzone = ar
defaultzone = ar

And this my /etc/asterisk/chan_dahdi.conf

[channels]
echocanceller=yes
cancallforward=yes
echocancelwhenbridged=yes
context=entrantes-pstn
callgroup=1
pickupgroup=1
signalling=mfcr2
mfcr2_variant=ar
mfcr2_max_ani=10
mfcr2_max_dnis=14
mfcr2_category=national_subscriber
mfcr2_logdir=span1
mfcr2_call_files=yes
mfcr2_logging=all
channel = 1-15
channel = 17-31

Does they make sense to you?  I'm kind of messed up after review them
hundreds of times in 48 hours.

Cheers,

Martin


-- 
_
-- 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] MFC/R2 detected as ISDN PRI

2010-11-10 Thread Shaun Ruffell
On 11/10/2010 09:31 AM, Martin Spinassi wrote:
 On Wed, 2010-11-10 at 17:10 +0200, Tzafrir Cohen wrote:
 On Wed, Nov 10, 2010 at 11:42:18AM -0300, Martin Spinassi wrote:
 Hi list,

 I'm trying to setup an asterisk 1.8.0 with MFC/R2, but I'm having these
 error messages loading chan_dahdi:

 module load chan_dahdi.so
 ERROR[9241]: chan_dahdi.c:11848 mkintf: Signalling requested on channel
 1 is MFC/R2 but line is in ISDN PRI signalling

 That is: You requested [in chan_dahdi.conf] MFC/R2 signalling, but the
 channel has [applied from /etc/dahdi/system.conf] PRI signalling.

 You should probably have in /etc/dahdi/system.conf something along the
 lines of:

   # Not sure about crc4
   span=1,1,0,cas,hdb3,crc4
   cas=1-15,17-31,1101
   dchan=16
   
   # also be sure to set echocan, tonezone, and such

 
 
 Thank you so much Tzafrir for your response.
 
 After reading your post, it gets a bit more clearer, but can't figure
 out how to solve it. 
 
 This is my /etc/dahdi/system.con

Hi Martin,


I think you should change the following:

 
 span = 1,1,0,ccs,hdb3
 bchan = 1-15,17-31
 dchan = 16
 echocanceller = mg2,1-240
 loadzone = ar
 defaultzone = ar


To this:

span = 1,1,0,cas,hdb3
cas = 1-15,17-31:1101
echocanceller = mg2,1-240
loadzone = ar
defaultzone = ar


Then restart dahdi.

Cheers,
Shaun

-- 
Shaun Ruffell
Digium, Inc. | Linux Kernel Developer
445 Jan Davis Drive NW - Huntsville, AL 35806 - USA
Check us out at: www.digium.com  www.asterisk.org

-- 
_
-- 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] MFC/R2 detected as ISDN PRI

2010-11-10 Thread Miguel Molina
El 10/11/10 10:31, Martin Spinassi escribió:
 On Wed, 2010-11-10 at 17:10 +0200, Tzafrir Cohen wrote:
 On Wed, Nov 10, 2010 at 11:42:18AM -0300, Martin Spinassi wrote:
 Hi list,

 I'm trying to setup an asterisk 1.8.0 with MFC/R2, but I'm having these
 error messages loading chan_dahdi:

 module load chan_dahdi.so
 ERROR[9241]: chan_dahdi.c:11848 mkintf: Signalling requested on channel
 1 is MFC/R2 but line is in ISDN PRI signalling
 That is: You requested [in chan_dahdi.conf] MFC/R2 signalling, but the
 channel has [applied from /etc/dahdi/system.conf] PRI signalling.

 You should probably have in /etc/dahdi/system.conf something along the
 lines of:

# Not sure about crc4
span=1,1,0,cas,hdb3,crc4
cas=1-15,17-31,1101
dchan=16

# also be sure to set echocan, tonezone, and such


 Thank you so much Tzafrir for your response.

 After reading your post, it gets a bit more clearer, but can't figure
 out how to solve it.

 This is my /etc/dahdi/system.con

 span = 1,1,0,ccs,hdb3
 bchan = 1-15,17-31
 dchan = 16
 echocanceller = mg2,1-240
 loadzone = ar
 defaultzone = ar

 And this my /etc/asterisk/chan_dahdi.conf

 [channels]
 echocanceller=yes
 cancallforward=yes
 echocancelwhenbridged=yes
 context=entrantes-pstn
 callgroup=1
 pickupgroup=1
 signalling=mfcr2
 mfcr2_variant=ar
 mfcr2_max_ani=10
 mfcr2_max_dnis=14
 mfcr2_category=national_subscriber
 mfcr2_logdir=span1
 mfcr2_call_files=yes
 mfcr2_logging=all
 channel =  1-15
 channel =  17-31

 Does they make sense to you?  I'm kind of messed up after review them
 hundreds of times in 48 hours.

 Cheers,

 Martin


There you are... your system.conf has:

span = 1,1,0,ccs,hdb3

MFC/R2 uses CAS signalling, not CCS like PRI links, so you can try what 
Tzafrir suggested for your DAHDI system.conf file. I found a similar 
MFC/R2 configuration in this post:

http://lists.digium.com/pipermail/asterisk-r2/2010-April/001760.html

Hope it helps.

Cheers,

-- 
Ing. Miguel Molina
Grupo de Tecnología
Millenium Phone Center


-- 
_
-- 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] MFC/R2 detected as ISDN PRI

2010-11-10 Thread Martin Spinassi
On Wed, 2010-11-10 at 10:51 -0500, Miguel Molina wrote:
 El 10/11/10 10:31, Martin Spinassi escribió:
  On Wed, 2010-11-10 at 17:10 +0200, Tzafrir Cohen wrote:
  On Wed, Nov 10, 2010 at 11:42:18AM -0300, Martin Spinassi wrote:
  Hi list,
 
  I'm trying to setup an asterisk 1.8.0 with MFC/R2, but I'm having these
  error messages loading chan_dahdi:
 
  module load chan_dahdi.so
  ERROR[9241]: chan_dahdi.c:11848 mkintf: Signalling requested on channel
  1 is MFC/R2 but line is in ISDN PRI signalling
  That is: You requested [in chan_dahdi.conf] MFC/R2 signalling, but the
  channel has [applied from /etc/dahdi/system.conf] PRI signalling.
 
  You should probably have in /etc/dahdi/system.conf something along the
  lines of:
 
 # Not sure about crc4
 span=1,1,0,cas,hdb3,crc4
 cas=1-15,17-31,1101
 dchan=16
 
 # also be sure to set echocan, tonezone, and such
 
 
  Thank you so much Tzafrir for your response.
 
  After reading your post, it gets a bit more clearer, but can't figure
  out how to solve it.
 
  This is my /etc/dahdi/system.con
 
  span = 1,1,0,ccs,hdb3
  bchan = 1-15,17-31
  dchan = 16
  echocanceller = mg2,1-240
  loadzone = ar
  defaultzone = ar
 
  And this my /etc/asterisk/chan_dahdi.conf
 
  [channels]
  echocanceller=yes
  cancallforward=yes
  echocancelwhenbridged=yes
  context=entrantes-pstn
  callgroup=1
  pickupgroup=1
  signalling=mfcr2
  mfcr2_variant=ar
  mfcr2_max_ani=10
  mfcr2_max_dnis=14
  mfcr2_category=national_subscriber
  mfcr2_logdir=span1
  mfcr2_call_files=yes
  mfcr2_logging=all
  channel =  1-15
  channel =  17-31
 
  Does they make sense to you?  I'm kind of messed up after review them
  hundreds of times in 48 hours.
 
  Cheers,
 
  Martin
 
 
 There you are... your system.conf has:
 
 span = 1,1,0,ccs,hdb3
 
 MFC/R2 uses CAS signalling, not CCS like PRI links, so you can try what 
 Tzafrir suggested for your DAHDI system.conf file. I found a similar 
 MFC/R2 configuration in this post:
 
 http://lists.digium.com/pipermail/asterisk-r2/2010-April/001760.html
 
 Hope it helps.
 
 Cheers,
 
 -- 
 Ing. Miguel Molina
 Grupo de Tecnología
 Millenium Phone Center
 
 


Tzafir, Shaun and Miguel:

Thanks so much for your help! The config that Shaun sent worked
perfectly, and it's the same that Miguel pointed on his mail.

As I have no way to show you how happy I am finally solving this, if you
ever visit Buenos Aires, I promise you guys I'll buy as much beer/coffee
as you can take :-D

Best regards and thank you once again!

Martin


-- 
_
-- 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] MFC/R2 in chan_zap , Testers Wanted

2008-04-25 Thread Lex Lethol
Congrats on going forward with the project Moises.  MFC/R2 support on
chan_zap sounds great, looking forward on trying it out.

Regards,
Lex

On Thu, Apr 24, 2008 at 3:03 PM, Moises Silva [EMAIL PROTECTED] wrote:
   Unicall MFC/R2 is activelly maintained. by Moy. Actually it's a backport 
  of the Steve driver (now coded for Callweaver derivative) to Asterisk (1.2, 
  1.4, and 1.6 soon). It works pretty well. In fact, it works more stable in 
  1.4 than the original Steve driver in 1.2, and with better sound under 
  heavy loads.
The Asutunicall page can be found here:
http://www.moythreads.com/astunicall/

  Hum, wonder who this moy is  hey wait, that's me! . Even when is
  in my plans to keep giving general maintenance to chan_unicall, my
  long term plan is to leave R2 support into chan_zap, so I would
  recommend to all users to try chan_zap R2 support, the more users we
  get the faster the driver will be stable enough to replace
  chan_unicall, the less headaches you will have (I hope).

  - Moy or Moisés Silva, same shit :-)



  --
  I do not agree with what you have to say, but I'll defend to the
  death your right to say it. Voltaire

  ___
  -- Bandwidth and Colocation Provided by http://www.api-digital.com --

  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 --

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


[asterisk-users] MFC/R2 in chan_zap , Testers Wanted

2008-04-24 Thread Moises Silva
If you are an MFC/R2 user and want to help in the development of
chan_zap support for this signalling, please take a look at the
bugtracker at http://bugs.digium.com/view.php?id=12509 and/or contact
me. Currently just México support is built-in, if you want your
country variant supported, drop me a line.

Moisés Silva

-- 
I do not agree with what you have to say, but I'll defend to the
death your right to say it. Voltaire

___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

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


Re: [asterisk-users] MFC/R2 in chan_zap , Testers Wanted

2008-04-24 Thread Vinícius Fontes
Hello Moisés, thanks for your effort on this! I would love to use Digium cards 
for MFC/R2 signalling in the future.

I added some info you might like in the bugtracker, you might take a look at it.



Att
Vinícius Fontes
Desenvolvimento
Canall Tecnologia em Comunicações Ltda.

- Moises Silva [EMAIL PROTECTED] escreveu:

 If you are an MFC/R2 user and want to help in the development of
 chan_zap support for this signalling, please take a look at the
 bugtracker at http://bugs.digium.com/view.php?id=12509 and/or contact
 me. Currently just México support is built-in, if you want your
 country variant supported, drop me a line.
 
 Moisés Silva
 
 -- 
 I do not agree with what you have to say, but I'll defend to the
 death your right to say it. Voltaire
 
 ___
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 
 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 --

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

Re: [asterisk-users] MFC/R2 in chan_zap , Testers Wanted

2008-04-24 Thread Ruben Zamora
Moises

Thats means, that we arent going to use unicall?

If that true i can test these weekend with a E1-Axtel.

Thanks

Ruben


Moises Silva escribió:
 If you are an MFC/R2 user and want to help in the development of
 chan_zap support for this signalling, please take a look at the
 bugtracker at http://bugs.digium.com/view.php?id=12509 and/or contact
 me. Currently just México support is built-in, if you want your
 country variant supported, drop me a line.

 Moisés Silva

   

___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

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


Re: [asterisk-users] MFC/R2 in chan_zap , Testers Wanted

2008-04-24 Thread Moises Silva
 Hello Moisés, thanks for your effort on this! I would love to use Digium 
 cards for MFC/R2 signalling in the future.
Currently you can use Digium cards with Unicall  :-) , tho, having
MFC/R2 on chan_zap is more handy.

  I added some info you might like in the bugtracker, you might take a look at 
 it.
I will, thanks!

Moisés Silva

-- 
I do not agree with what you have to say, but I'll defend to the
death your right to say it. Voltaire

___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

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


Re: [asterisk-users] MFC/R2 in chan_zap , Testers Wanted

2008-04-24 Thread Moises Silva
Hello Ruben,

Yes, if you consider using R2 support in chan_zap Unicall is no longer
required. I will be not available online this weekend, please let me
know your feedback after your try it. We can also meet via MSN so I
can assist you in testing the next weeked (3-4 May).

Thanks for the help.

Moisés Silva

On Thu, Apr 24, 2008 at 8:26 AM, Ruben Zamora [EMAIL PROTECTED] wrote:
 Moises

  Thats means, that we arent going to use unicall?

  If that true i can test these weekend with a E1-Axtel.

  Thanks

  Ruben


  Moises Silva escribió:

  If you are an MFC/R2 user and want to help in the development of
   chan_zap support for this signalling, please take a look at the
   bugtracker at http://bugs.digium.com/view.php?id=12509 and/or contact
   me. Currently just México support is built-in, if you want your
   country variant supported, drop me a line.
  
   Moisés Silva
  
  



 ___
  -- Bandwidth and Colocation Provided by http://www.api-digital.com --

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




-- 
I do not agree with what you have to say, but I'll defend to the
death your right to say it. Voltaire

___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

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


Re: [asterisk-users] MFC/R2 in chan_zap , Testers Wanted

2008-04-24 Thread Vinícius Fontes
  Hello Moisés, thanks for your effort on this! I would love to use
 Digium cards for MFC/R2 signalling in the future.
 Currently you can use Digium cards with Unicall  :-) , tho, having
 MFC/R2 on chan_zap is more handy.

Way more handy and will be much more reliable too. Steve Underwood did a great 
job implemeting it, but as far as I know the code isn't actively maintained 
anymore. Of course your implementation of MFC/R2 will take a while to become 
stable, but hey -- it's a start.


   I added some info you might like in the bugtracker, you might take
 a look at it.
 I will, thanks!

Russel pointed some licensing stuff related to the Digivoice drivers. Please 
listen to him on that, I had no idea of that kind of complication. If your 
implementation of MFC/R2 can't be integrated in Zaptel, then it's no much 
better than Unicall. 

I guess if you look at Digivoice's code to figure out how it works and then 
write your own code, there will be no licensing issues. But that's just a 
guess, Russel will need to clarify it.

You can count on me for any testing needed on the BR variant.


___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

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

Re: [asterisk-users] MFC/R2 in chan_zap , Testers Wanted

2008-04-24 Thread Moises Silva
  Way more handy and will be much more reliable too. Steve Underwood did a 
 great job implemeting it, but as far as I know the code isn't actively
 maintained anymore. Of course your implementation of MFC/R2 will take a while 
 to become stable, but hey -- it's a start.

Agreed.

  Russel pointed some licensing stuff related to the Digivoice drivers. Please 
 listen to him on that, I had no idea of that kind of complication. If your
 implementation of MFC/R2 can't be integrated in Zaptel, then it's no much 
 better than Unicall.
You mean chan_zap/zapata (zaptel is the kernel code). I had already
discussed with Russell the licensing. He just got confused for a
second because he forgot LGPL code requires both license files (GPL
and LGPL).

  I guess if you look at Digivoice's code to figure out how it works and then 
 write your own code, there will be no licensing issues. But that's just a 
 guess,
 Russel will need to clarify it.
I did not discussed that with Russell, but I will. In the meantime,
since I am aware of the licensing concerns I have not even looked at
that code :-)

I would like to test the BR variant the next week, I will contact you
off-list to see if we can meet via IM.

- Moisés Silva

-- 
I do not agree with what you have to say, but I'll defend to the
death your right to say it. Voltaire

___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

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


Re: [asterisk-users] MFC/R2 in chan_zap , Testers Wanted

2008-04-24 Thread Guillermo Freige

Unicall MFC/R2 is activelly maintained. by Moy. Actually it's a backport of the 
Steve driver (now coded for Callweaver derivative) to Asterisk (1.2, 1.4, and 
1.6 soon). It works pretty well. In fact, it works more stable in 1.4 than the 
original Steve driver in 1.2, and with better sound under heavy loads.
The Asutunicall page can be found here:
http://www.moythreads.com/astunicall/

Guillermo

 Date: Thu, 24 Apr 2008 12:16:42 -0500
 From: [EMAIL PROTECTED]
 To: asterisk-users@lists.digium.com
 Subject: Re: [asterisk-users] MFC/R2 in chan_zap , Testers Wanted
 
  Way more handy and will be much more reliable too. Steve Underwood did a 
 great job implemeting it, but as far as I know the code isn't actively
 maintained anymore. Of course your implementation of MFC/R2 will take a 
 while to become stable, but hey -- it's a start.
 
 Agreed.
 
  Russel pointed some licensing stuff related to the Digivoice drivers. 
 Please listen to him on that, I had no idea of that kind of complication. If 
 your
 implementation of MFC/R2 can't be integrated in Zaptel, then it's no much 
 better than Unicall.
 You mean chan_zap/zapata (zaptel is the kernel code). I had already
 discussed with Russell the licensing. He just got confused for a
 second because he forgot LGPL code requires both license files (GPL
 and LGPL).
 
  I guess if you look at Digivoice's code to figure out how it works and then 
 write your own code, there will be no licensing issues. But that's just a 
 guess,
 Russel will need to clarify it.
 I did not discussed that with Russell, but I will. In the meantime,
 since I am aware of the licensing concerns I have not even looked at
 that code :-)
 
 I would like to test the BR variant the next week, I will contact you
 off-list to see if we can meet via IM.
 
 - Moisés Silva
 
 -- 
 I do not agree with what you have to say, but I'll defend to the
 death your right to say it. Voltaire
 
 ___
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 
 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users

_
Send funny voice messages packed with tidbits from MSN. Everyone wants to be 
ready.
http://www.noonewantstolookdumb.com?OCID=T001MSN54N1613A
___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

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


Re: [asterisk-users] MFC/R2 in chan_zap , Testers Wanted

2008-04-24 Thread Moises Silva
  Unicall MFC/R2 is activelly maintained. by Moy. Actually it's a backport of 
 the Steve driver (now coded for Callweaver derivative) to Asterisk (1.2, 1.4, 
 and 1.6 soon). It works pretty well. In fact, it works more stable in 1.4 
 than the original Steve driver in 1.2, and with better sound under heavy 
 loads.
  The Asutunicall page can be found here:
  http://www.moythreads.com/astunicall/

Hum, wonder who this moy is  hey wait, that's me! . Even when is
in my plans to keep giving general maintenance to chan_unicall, my
long term plan is to leave R2 support into chan_zap, so I would
recommend to all users to try chan_zap R2 support, the more users we
get the faster the driver will be stable enough to replace
chan_unicall, the less headaches you will have (I hope).

- Moy or Moisés Silva, same shit :-)

-- 
I do not agree with what you have to say, but I'll defend to the
death your right to say it. Voltaire

___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

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


[asterisk-users] MFC/R2

2008-01-28 Thread James Finstrom
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Followed the instructions at
http://www.voip-info.org/wiki/view/Asterisk+MFC+R2

I dead end at patching the channels Makefile. There have been some
changes since these instructions were made. I added the chan_unicall.c
to the channels folder but asterisk doesnt pick it up added
chan_unicall.o to the Makefile and asterisk pukes

anyone have instructions for building in to 1.4.8+

Thanks

- --
James Finstrom
Rhino Equipment Corp.
Tel: 1-800-785-7073  ext. 6344
FAX: +1 (480) 961-1826
IP: asterisk.rhinoequipment.com ext 6344
FWD: 633686 ext 6344

THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY
MATERIAL and is thus for use only by the intended recipient. If you
received
this in error, please contact the sender and delete the email and its
attachments from all computers.

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFHnm1edloC7YyaIOoRAje2AJwPlRqj4rl+guvJVm2O25Et6TYkpgCePDYy
w66jmc+wLO6zF6G5Tjz5hcc=
=yR6F
-END PGP SIGNATURE-


___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

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


Re: [asterisk-users] MFC/R2

2008-01-28 Thread Carlos Chavez

On Mon, 2008-01-28 at 17:03 -0700, James Finstrom wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 Followed the instructions at
 http://www.voip-info.org/wiki/view/Asterisk+MFC+R2
 
 I dead end at patching the channels Makefile. There have been some
 changes since these instructions were made. I added the chan_unicall.c
 to the channels folder but asterisk doesnt pick it up added
 chan_unicall.o to the Makefile and asterisk pukes
 
 anyone have instructions for building in to 1.4.8+
 
 Thanks

The only change that needs to be made to the asterisk/channels/Makefile
is:

chan_h323.so: chan_h323.o h323/libchanh323.a
$(ECHO_PREFIX) echo[LD] $^ - $@
$(CMD_PREFIX) $(CXX) $(PTHREAD_CFLAGS) $(ASTLDFLAGS) $(SOLINK)
-o $@ $ h323/libchanh323.a $(CHANH323LIB) -L$(PWLIBDIR)/lib $(PTLIB) -L
$(OPENH323DIR)/lib $(H323LIB) -L/usr/lib -lcrypto -lssl -lexpat
endif

--
chan_unicall.o: chan_unicall.c
$(ECHO_PREFIX) echo  [LD] $^ - $@
$(CMD_PREFIX) $(CC) -I../include -c $(CFLAGS) -D_GNU_SOURCE
-DAST_MODULE=\$*\ -o chan_unicall.o chan_unicall.c

chan_unicall.so: chan_unicall.o
$(CMD_PREFIX) $(CC) $(SOLINK) -o $@ $ -lunicall -lxml2
-lsupertone -lspandsp -ltiff $(ZAPLIB)
-

chan_misdn.o: ASTCFLAGS+=-Imisdn

Just insert what is between the dashes (the other lines are there for
reference so you know where to insert the rest.  That is it.  Asterisk
should now compile chan_unicall.

I would recommend that you go to http://www.moythreads.com/astunicall/
in order to get the newest support for Unicall on Asterisk 1.4.x


 
 - --
 James Finstrom
 Rhino Equipment Corp.
 Tel: 1-800-785-7073  ext. 6344
 FAX: +1 (480) 961-1826
 IP: asterisk.rhinoequipment.com ext 6344
 FWD: 633686 ext 6344
 
 THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY
 MATERIAL and is thus for use only by the intended recipient. If you
 received
 this in error, please contact the sender and delete the email and its
 attachments from all computers.
 
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.4.6 (GNU/Linux)
 Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
 
 iD8DBQFHnm1edloC7YyaIOoRAje2AJwPlRqj4rl+guvJVm2O25Et6TYkpgCePDYy
 w66jmc+wLO6zF6G5Tjz5hcc=
 =yR6F
 -END PGP SIGNATURE-
 
 
 ___
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --
 
 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users
-- 
Telecomunicaciones Abiertas de México S.A. de C.V.
Carlos Chávez Prats
Director de Tecnología
+52-55-91169161 ext 2001


signature.asc
Description: This is a digitally signed message part
___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

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

Re: [asterisk-users] MFC/R2

2008-01-28 Thread Luis Antonio Prata Barbosa
Hi,

Do you know http://www.moythreads.com/astunicall/  ???

Luis A P Barbosa


2008/1/28, James Finstrom [EMAIL PROTECTED]:

 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1

 Followed the instructions at
 http://www.voip-info.org/wiki/view/Asterisk+MFC+R2

 I dead end at patching the channels Makefile. There have been some
 changes since these instructions were made. I added the chan_unicall.c
 to the channels folder but asterisk doesnt pick it up added
 chan_unicall.o to the Makefile and asterisk pukes

 anyone have instructions for building in to 1.4.8+

 Thanks

 - --
 James Finstrom
 Rhino Equipment Corp.
 Tel: 1-800-785-7073  ext. 6344
 FAX: +1 (480) 961-1826
 IP: asterisk.rhinoequipment.com ext 6344
 FWD: 633686 ext 6344

 THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY
 MATERIAL and is thus for use only by the intended recipient. If you
 received
 this in error, please contact the sender and delete the email and its
 attachments from all computers.

 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.4.6 (GNU/Linux)
 Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

 iD8DBQFHnm1edloC7YyaIOoRAje2AJwPlRqj4rl+guvJVm2O25Et6TYkpgCePDYy
 w66jmc+wLO6zF6G5Tjz5hcc=
 =yR6F
 -END PGP SIGNATURE-


 ___
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --

 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 --

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

Re: [asterisk-users] MFC/R2 Signaling configuration

2008-01-12 Thread Tzafrir Cohen
On Sat, Jan 12, 2008 at 08:11:20AM +0300, Brian Hutchinson wrote:
 Hi Moy,
 
 Bottom line up front (yes I'm military):How do I now configure some of my
 spans as normal Euro ISDN and a few with R2?  Do I use a combination of
 /etc/asterisk/unicall.conf and /etc/zaptel.conf or just unicall.conf for
 everything?
 
 See below for the rest of the details and thanks in advance for advice!
 
 I downloaded your astunical-1.4.16 and have been studying it.
 
 I have a machine running the latest download of asterisk-1.4-17 and was
 trying to figure out how to build MFC/R2 support into it.
 
 I merged your unicall specific changes from the Makefile in channels
 directory to the new 1.4.17 channels Makefile (only like 4 changes).
 
 Next I went into each individual directory of your tarball and started
 building.
 
 I did spandsp-0.0.4 first and that appeared to work OK.
 
 Next I did libsupertone-0.0.2 which again appeared to work OK.
 
 Next I did libunicall-0.0.3 which went OK.
 
 Next I did libmfcr2-0.0.3 and that didn't go OK.
 
 I captured the output of make and found that the build of mfcr2.c died
 because it couldn't find the include file linux/zaptel.h
 
 I did a find on my system and saw where zaptel.h was in
 /usr/include/zaptel/zaptel.h

Right. Any chance that your version of unicall is not up-to-date?

 
 Once I fixed that ... I backed out to the main asterisk-1.4.17 directory and
 did a make there and it looked like it build chan_unicall OK and make
 install put the .so in the right place.
 
 I noticed that your tarball did not include a unicall.conf file.  Do you
 have one?
 
 I'm using two Digium TE420B (with DSP).  Most of my trunks will be EURO ISDN
 and two of them need to do R2 signalling.  How should my configs look?  Are
 all trunks configured with unicall.conf now or do I still have to use
 /etc/zaptel.conf?

I suspect that you should setup [trunkgroups] in zapata.conf somehow not to 
use some spans. Otherwise chan_zap will try to open them.

 
 (time goes by)
 
 rebooted the box and now it seg faults over and over because I guess I
 don't have the unicall conf set up right.

Do you have core dumps from those segfaults? Can you provide a
backtrace?

-- 
   Tzafrir Cohen
icq#16849755  jabber:[EMAIL PROTECTED]
+972-50-7952406   mailto:[EMAIL PROTECTED]
http://www.xorcom.com  iax:[EMAIL PROTECTED]/tzafrir

___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

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


Re: [asterisk-users] MFC/R2 Signaling configuration

2008-01-12 Thread Brian Hutchinson


 
  I did a find on my system and saw where zaptel.h was in
  /usr/include/zaptel/zaptel.h

 Right. Any chance that your version of unicall is not up-to-date?


Not sure which versions were used ... I cheated and used Moy's package for
1.4.16 (I'm using 1.4.17) and just patched the Makefile in the channels
directory.



  I'm using two Digium TE420B (with DSP).  Most of my trunks will be EURO
 ISDN
  and two of them need to do R2 signalling.  How should my configs look?
  Are
  all trunks configured with unicall.conf now or do I still have to use
  /etc/zaptel.conf?

 I suspect that you should setup [trunkgroups] in zapata.conf somehow not
 to
 use some spans. Otherwise chan_zap will try to open them.


Not sure I'm following you.  Haven't used trunkgroups before.  Where can I
get educated on how to use them the way you suggest?



 Do you have core dumps from those segfaults? Can you provide a


 backtrace?


I'm not sure what was going but I  kind of figured out I had overlap in the
zapata.conf and  unicall.conf and when I kept span 1-3 stuff in
zapata.confand span 4 in
unicall.conf it went away.  If I made any kind of mistake in the conf files
asterisk would bomb and restart over and over until I pulled the kill -15
gun out.



 --
   Tzafrir Cohen
 icq#16849755  jabber:[EMAIL PROTECTED]
 +972-50-7952406   mailto:[EMAIL PROTECTED]
 http://www.xorcom.com  iax:[EMAIL PROTECTED]/tzafrir

 ___
 -- Bandwidth and Colocation Provided by http://www.api-digital.com --

 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 --

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

Re: [asterisk-users] MFC/R2 Signaling configuration

2008-01-12 Thread Brian Hutchinson
On Jan 12, 2008 2:01 PM, Tzafrir Cohen [EMAIL PROTECTED] wrote:

 On Sat, Jan 12, 2008 at 08:11:20AM +0300, Brian Hutchinson wrote:


 Right. Any chance that your version of unicall is not up-to-date?


OK, you got me to thinking maybe I missed something and since it only takes
a few minutes (nice!) to build asterisk from scratch on this beast of a
machine ... I built Moy's package as is and installed it and it is doing the
exact same thing I reported last.  Can't answer calls but can make calls out
so I don't think it is my build.

I have not played with the test call capability and I just found Moy's most
excellent .pdf on the subject so I think I'm going to make a loop back cable
and call between two spans and see what happens.  I'm learning more about R2
that I wanted to.  I didn't know it was an ancient thing ... I think I'll
just ask them to give me a pri isdn like the rest of my trunks and be done
with it!

Regards,

Brian
___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

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

[asterisk-users] MFC/R2 Signaling configuration

2008-01-11 Thread Brian Hutchinson
Hi Moy,

Bottom line up front (yes I'm military):How do I now configure some of my
spans as normal Euro ISDN and a few with R2?  Do I use a combination of
/etc/asterisk/unicall.conf and /etc/zaptel.conf or just unicall.conf for
everything?

See below for the rest of the details and thanks in advance for advice!

I downloaded your astunical-1.4.16 and have been studying it.

I have a machine running the latest download of asterisk-1.4-17 and was
trying to figure out how to build MFC/R2 support into it.

I merged your unicall specific changes from the Makefile in channels
directory to the new 1.4.17 channels Makefile (only like 4 changes).

Next I went into each individual directory of your tarball and started
building.

I did spandsp-0.0.4 first and that appeared to work OK.

Next I did libsupertone-0.0.2 which again appeared to work OK.

Next I did libunicall-0.0.3 which went OK.

Next I did libmfcr2-0.0.3 and that didn't go OK.

I captured the output of make and found that the build of mfcr2.c died
because it couldn't find the include file linux/zaptel.h

I did a find on my system and saw where zaptel.h was in
/usr/include/zaptel/zaptel.h

Once I fixed that ... I backed out to the main asterisk-1.4.17 directory and
did a make there and it looked like it build chan_unicall OK and make
install put the .so in the right place.

I noticed that your tarball did not include a unicall.conf file.  Do you
have one?

I'm using two Digium TE420B (with DSP).  Most of my trunks will be EURO ISDN
and two of them need to do R2 signalling.  How should my configs look?  Are
all trunks configured with unicall.conf now or do I still have to use
/etc/zaptel.conf?

(time goes by)

rebooted the box and now it seg faults over and over because I guess I
don't have the unicall conf set up right.

I've left for the day and I'm sending this from a mobile device so I
hope it makes it and looks ok. I'm in Iraq so I didn't want to lose a
day due to the time difference.

Regards,

Brian
___
-- Bandwidth and Colocation Provided by http://www.api-digital.com --

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

Re: [asterisk-users] MFC/R2 on AsteriskNOw

2007-10-30 Thread sistemas
Where is chan_unicall.so? Remember, Asterisknow haven't source code, and it 
is necessary for install  chan_unicall.so.
Idea??

Thanks!!



- Original Message - 
From: Moises Silva [EMAIL PROTECTED]
To: Asterisk Users Mailing List - Non-Commercial Discussion 
asterisk-users@lists.digium.com
Sent: Monday, October 29, 2007 4:25 PM
Subject: Re: [asterisk-users] MFC/R2 on AsteriskNOw


 just install chan_unicall.so

 On 10/29/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:




 MFC/R2 on AsteriskNOw!! How?

 Please!!!

 Thanks!!


 ___
 --Bandwidth and Colocation Provided by http://www.api-digital.com--

 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:

 http://lists.digium.com/mailman/listinfo/asterisk-users



 -- 
 Within C++, there is a much smaller and cleaner language struggling
 to get out.

 ___
 --Bandwidth and Colocation Provided by http://www.api-digital.com--

 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--

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


Re: [asterisk-users] MFC/R2 on AsteriskNOw

2007-10-30 Thread Moises Silva
I don't have experience with Aterisk Now, but from the web page it
clearly states it is GPL, that means, code available. In any case, is
just matter of compiling a proper version of chan_unicall.so to match
the Asterisk version used in Asterisk Now. All information required is
here:

http://www.soft-switch.org/unicall/installing-mfcr2.html

And google.

Please ask concrete questions and you will have concrete answers. In
other words, you are not making smart questions:
http://catb.org/~esr/faqs/smart-questions.html

Moy

On 10/30/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 Where is chan_unicall.so? Remember, Asterisknow haven't source code, and it
 is necessary for install  chan_unicall.so.
 Idea??

 Thanks!!



 - Original Message -
 From: Moises Silva [EMAIL PROTECTED]
 To: Asterisk Users Mailing List - Non-Commercial Discussion
 asterisk-users@lists.digium.com
 Sent: Monday, October 29, 2007 4:25 PM
 Subject: Re: [asterisk-users] MFC/R2 on AsteriskNOw


  just install chan_unicall.so
 
  On 10/29/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 
 
 
 
  MFC/R2 on AsteriskNOw!! How?
 
  Please!!!
 
  Thanks!!
 
 
  ___
  --Bandwidth and Colocation Provided by http://www.api-digital.com--
 
  asterisk-users mailing list
  To UNSUBSCRIBE or update options visit:
 
  http://lists.digium.com/mailman/listinfo/asterisk-users
 
 
 
  --
  Within C++, there is a much smaller and cleaner language struggling
  to get out.
 
  ___
  --Bandwidth and Colocation Provided by http://www.api-digital.com--
 
  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--

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



-- 
Within C++, there is a much smaller and cleaner language struggling
to get out.

___
--Bandwidth and Colocation Provided by http://www.api-digital.com--

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


[asterisk-users] MFC/R2 on AsteriskNOw

2007-10-29 Thread sistemas
MFC/R2 on AsteriskNOw!! How?

Please!!!

Thanks!!


___
--Bandwidth and Colocation Provided by http://www.api-digital.com--

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

Re: [asterisk-users] MFC/R2 on AsteriskNOw

2007-10-29 Thread Moises Silva
just install chan_unicall.so

On 10/29/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:




 MFC/R2 on AsteriskNOw!! How?

 Please!!!

 Thanks!!


 ___
 --Bandwidth and Colocation Provided by http://www.api-digital.com--

 asterisk-users mailing list
 To UNSUBSCRIBE or update options visit:

 http://lists.digium.com/mailman/listinfo/asterisk-users



-- 
Within C++, there is a much smaller and cleaner language struggling
to get out.

___
--Bandwidth and Colocation Provided by http://www.api-digital.com--

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


[asterisk-users] MFC/R2 protocol varient - sri lanka/Nortel DMS 100

2007-10-14 Thread Vidura Senadeera
Hi All,

We successfully installed MFC/R2, chan_unicall.so with asterisk ver 1.2.6.
asterisk is loading properly and we can see US show channels working fine.
We are using digium Te120P card.

Now we are trying to setup E1 link with Nortel DMS 100, which is resides at
one of telco provider in Sri Lanka.
But we don't know what is the exact protocol varient to use. Is anyone help
us out on this reagard.

How do we know the exact details of the protocol varient we have to use?.

Thanks  Regards,
Vidura Senadeera,
Senior solutions Specialist,
Debug Solutions
Sri Lanka.
Tel - +94114520036
Mobile - +9466596
Web - www.debug.lk
___
--Bandwidth and Colocation Provided by http://www.api-digital.com--

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

Re: [asterisk-users] MFC/R2 problems

2007-01-15 Thread Facundo Ameal

These are the different meanings for the diferrent error codes:
T1 TIMEOUT  = 32769
T2 TIMEOUT  = 32770
T3 TIMEOUT  = 32771
UNEXPECTED MF SIGNAL= 32772
UNEXPECTED CAS  = 32773
INVALID STATE   = 32774
SET_CAS FAILURE = 32775
SEIZE ACK TIMEOUT   = 32776
DEVICE IO ERROR = 32777
T1B TIMEOUT = 32778

I hope it helps.

Greets

On 1/8/07, yusuf [EMAIL PROTECTED] wrote:

Hi,

if that means I should post my config, here goes:

zaptel:
span=1,1,3,cas,hdb3,crc4
cas=1-15:1101
cas=17-31:1101

unicall.conf:
protocolvariant=id,10,10
protocolend=cpe
group=1
channel = 1-15
channel = 17-31

wanpipe1.conf
FE_MEDIA= E1
FE_LCODE= HDB3
FE_FRAME= CRC4
FE_LINE = 1
TE_CLOCK= NORMAL
TE_REF_CLOCK= 0
TE_HIGHIMPEDANCE= NO
LBO = 120OH
TE_SIG_MODE = CAS
FE_TXTRISTATE   = NO
MTU = 1500
UDPPORT = 9000
TTL = 255
IGNORE_FRONT_END = NO
TDMV_SPAN   = 1
TDMV_DCHAN  = 16

[w1g1]
ACTIVE_CH   = ALL
TDMV_ECHO_OFF   = NO
TDMV_HWEC   = NO



Josué Conti wrote:
 Hi Yusuf, how are you?
 It orders in the list its configurations, so that let us can help.

 Best Regards

 Josue

 2007/1/8, yusuf  [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]:

 Hi all,

 I have Asterisk 1.2.10, zaptel 1.2.7, spandsp-0.0.3pre22 compiled,
 and a Sangoma A101, and when I
 make a call I get this:


 Jan  8 13:04:06 DEBUG[12252]: chan_unicall.c:2000 unicall_exception:
 Exception on 19, channel 1
 Jan  8 13:04:06 WARNING[12252]: chan_unicall.c:627 unicall_report:
 MFC/R2 UniCall/1  - 1101
 [1/  40/Seize /Idle ]
 Jan  8 13:04:06 WARNING[12252]: chan_unicall.c:627 unicall_report:
 MFC/R2 UniCall/1 0 on  -
 [2/  40/Group I /Idle ]
 Jan  8 13:04:11 WARNING[12252]: chan_unicall.c:627 unicall_report:
 MFC/R2 UniCall/1 R2 prot. err.
 [2/  40/Group I /DNIS ] cause 32769 - T1 timed out
 Jan  8 13:04:11 WARNING[12252]: chan_unicall.c:627 unicall_report:
 MFC/R2 UniCall/1 0 off -
 [1/   1/Idle /Idle ]
 Jan  8 13:04:11 WARNING[12252]: chan_unicall.c:627 unicall_report:
 MFC/R2 UniCall/1 1001  -
 [1/   1/Idle /Idle ]
 Jan  8 13:04:11 WARNING[12252]: chan_unicall.c:2644 handle_uc_event:
 Unicall/1 event Protocol failure
  -- Unicall/1 protocol error. Cause 32769
 Jan  8 13:04:11 WARNING[12252]: chan_unicall.c:627 unicall_report:
 MFC/R2 UniCall/1 Channel echo cancel
 Jan  8 13:04:11 DEBUG[12252]: chan_unicall.c:955 unicall_disable_ec:
 disabled echo cancellation on
 channel 1

 Jan  8 13:04:11 WARNING[12250]: chan_unicall.c:627 unicall_report:
 MFC/R2 UniCall/1  - 1001
 [1/   1/Idle /Idle ]
 Jan  8 13:04:11 WARNING[12250]: chan_unicall.c:627 unicall_report:
 MFC/R2 UniCall/1 1001  -
 [1/   1/Idle /Idle ]
  -- Hungup 'UniCall/1-1'


 What does - Unicall/1 protocol error. Cause 32769 mean, and can
 anyone help me.

 --


--
thanks,
Yusuf

--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.


--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

___
--Bandwidth and Colocation provided by Easynews.com --

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




--
Facundo Ameal.
famealatgmaildotcom
Linux User #395088

Share your knowledge, use free software.
___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [asterisk-users] MFC/R2 problems

2007-01-15 Thread yusuf

Hi,

thanks for the help. It turns out the this device I had, an Orion GSM gateway, does not talk MFC/R2, 
but some variant of R2, according to Steve U.


thanks anyways :)

Facundo Ameal wrote:

These are the different meanings for the diferrent error codes:
T1 TIMEOUT  = 32769
T2 TIMEOUT  = 32770
T3 TIMEOUT  = 32771
UNEXPECTED MF SIGNAL= 32772
UNEXPECTED CAS  = 32773
INVALID STATE   = 32774
SET_CAS FAILURE = 32775
SEIZE ACK TIMEOUT   = 32776
DEVICE IO ERROR = 32777
T1B TIMEOUT = 32778

I hope it helps.

Greets

On 1/8/07, yusuf [EMAIL PROTECTED] wrote:


Hi,

if that means I should post my config, here goes:

zaptel:
span=1,1,3,cas,hdb3,crc4
cas=1-15:1101
cas=17-31:1101

unicall.conf:
protocolvariant=id,10,10
protocolend=cpe
group=1
channel = 1-15
channel = 17-31

wanpipe1.conf
FE_MEDIA= E1
FE_LCODE= HDB3
FE_FRAME= CRC4
FE_LINE = 1
TE_CLOCK= NORMAL
TE_REF_CLOCK= 0
TE_HIGHIMPEDANCE= NO
LBO = 120OH
TE_SIG_MODE = CAS
FE_TXTRISTATE   = NO
MTU = 1500
UDPPORT = 9000
TTL = 255
IGNORE_FRONT_END = NO
TDMV_SPAN   = 1
TDMV_DCHAN  = 16

[w1g1]
ACTIVE_CH   = ALL
TDMV_ECHO_OFF   = NO
TDMV_HWEC   = NO



Josué Conti wrote:
 Hi Yusuf, how are you?
 It orders in the list its configurations, so that let us can help.

 Best Regards

 Josue

 2007/1/8, yusuf  [EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]:


 Hi all,

 I have Asterisk 1.2.10, zaptel 1.2.7, spandsp-0.0.3pre22 compiled,
 and a Sangoma A101, and when I
 make a call I get this:


 Jan  8 13:04:06 DEBUG[12252]: chan_unicall.c:2000 
unicall_exception:

 Exception on 19, channel 1
 Jan  8 13:04:06 WARNING[12252]: chan_unicall.c:627 unicall_report:
 MFC/R2 UniCall/1  - 1101
 [1/  40/Seize /Idle ]
 Jan  8 13:04:06 WARNING[12252]: chan_unicall.c:627 unicall_report:
 MFC/R2 UniCall/1 0 on  -
 [2/  40/Group I /Idle ]
 Jan  8 13:04:11 WARNING[12252]: chan_unicall.c:627 unicall_report:
 MFC/R2 UniCall/1 R2 prot. err.
 [2/  40/Group I /DNIS ] cause 32769 - T1 timed out
 Jan  8 13:04:11 WARNING[12252]: chan_unicall.c:627 unicall_report:
 MFC/R2 UniCall/1 0 off -
 [1/   1/Idle /Idle ]
 Jan  8 13:04:11 WARNING[12252]: chan_unicall.c:627 unicall_report:
 MFC/R2 UniCall/1 1001  -
 [1/   1/Idle /Idle ]
 Jan  8 13:04:11 WARNING[12252]: chan_unicall.c:2644 
handle_uc_event:

 Unicall/1 event Protocol failure
  -- Unicall/1 protocol error. Cause 32769
 Jan  8 13:04:11 WARNING[12252]: chan_unicall.c:627 unicall_report:
 MFC/R2 UniCall/1 Channel echo cancel
 Jan  8 13:04:11 DEBUG[12252]: chan_unicall.c:955 
unicall_disable_ec:

 disabled echo cancellation on
 channel 1

 Jan  8 13:04:11 WARNING[12250]: chan_unicall.c:627 unicall_report:
 MFC/R2 UniCall/1  - 1001
 [1/   1/Idle /Idle ]
 Jan  8 13:04:11 WARNING[12250]: chan_unicall.c:627 unicall_report:
 MFC/R2 UniCall/1 1001  -
 [1/   1/Idle /Idle ]
  -- Hungup 'UniCall/1-1'


 What does - Unicall/1 protocol error. Cause 32769 mean, and can
 anyone help me.

 --







--
thanks,
Yusuf

--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.


--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [asterisk-users] MFC/R2 problems + Orion GSM Gateway

2007-01-09 Thread yusuf

Hi,

I have made some headway with this.  Let me explain a abit of the setup.  I have an Orion GSM 
Gateway, that was connected to a Cisco AS5300 via E1.  When I looked at the AS5300 config, it was 
talking R2 to the Orion.  So I have tried to connect the Orion direclty to Asterisk (leaving out the 
Cisco), using Unicall.

This is a problem I have with an incoming call, from Orion to Asterisk.

Jan  9 16:35:29 WARNING[7262]: chan_unicall.c:627 unicall_report: MFC/R2 UniCall/2  - 0001  [1/ 
  1/Idle  /Idle ]

Jan  9 16:35:29 WARNING[7262]: chan_unicall.c:627 unicall_report: MFC/R2 
UniCall/2 Detected
Jan  9 16:35:29 WARNING[7262]: chan_unicall.c:627 unicall_report: MFC/R2 UniCall/2 Making a new call 
with CRN 32769
Jan  9 16:35:29 WARNING[7262]: chan_unicall.c:627 unicall_report: MFC/R2 UniCall/2 1101  -  [2/ 
  2/Idle  /Idle ]

Jan  9 16:35:29 WARNING[7262]: chan_unicall.c:2644 handle_uc_event: Unicall/2 
event Detected
Jan  9 16:35:31 WARNING[7262]: chan_unicall.c:627 unicall_report: MFC/R2 UniCall/2  - 1001  [2/ 
  2/Seize ack /Seize ack]
Jan  9 16:35:31 WARNING[7262]: chan_unicall.c:627 unicall_report: MFC/R2 UniCall/2 Far end 
disconnected(cause=Normal, unspecified cause [31]) - state 0x2

Jan  9 16:35:31 WARNING[7262]: chan_unicall.c:2644 handle_uc_event: Unicall/2 
event Far end disconnected
Jan  9 16:35:31 WARNING[7262]: chan_unicall.c:2930 handle_uc_event: CRN 32769 - far disconnected 
cause=Normal, unspecified cause [31]

Jan  9 16:35:31 WARNING[7262]: chan_unicall.c:627 unicall_report: MFC/R2 
UniCall/2 Call control(6)
Jan  9 16:35:31 WARNING[7262]: chan_unicall.c:627 unicall_report: MFC/R2 UniCall/2 Drop 
call(cause=Normal Clearing [16])
Jan  9 16:35:31 WARNING[7262]: chan_unicall.c:627 unicall_report: MFC/R2 UniCall/2 Call 
disconnected(cause=Normal, unspecified cause [31]) - state 0x800

Jan  9 16:35:31 WARNING[7262]: chan_unicall.c:2644 handle_uc_event: Unicall/2 
event Drop call
Jan  9 16:35:31 DEBUG[7262]: chan_unicall.c:2978 handle_uc_event: CRN 32769 - 
Doing a release call
Jan  9 16:35:31 WARNING[7262]: chan_unicall.c:627 unicall_report: MFC/R2 
UniCall/2 Call control(7)
Jan  9 16:35:31 WARNING[7262]: chan_unicall.c:627 unicall_report: MFC/R2 
UniCall/2 Release call
Jan  9 16:35:31 WARNING[7262]: chan_unicall.c:627 unicall_report: MFC/R2 UniCall/2 1001  -  [1/ 
   1000/Clear fwd /Seize ack]


The below output(in the mail) is of an outgoing call from Asterisk.

Can anyone please help me to see what is wrong?

yusuf wrote:

Hi,

if that means I should post my config, here goes:

zaptel:
span=1,1,3,cas,hdb3,crc4
cas=1-15:1101
cas=17-31:1101

unicall.conf:
protocolvariant=id,10,10
protocolend=cpe
group=1
channel = 1-15
channel = 17-31

wanpipe1.conf
FE_MEDIA= E1
FE_LCODE= HDB3
FE_FRAME= CRC4
FE_LINE = 1
TE_CLOCK= NORMAL
TE_REF_CLOCK= 0
TE_HIGHIMPEDANCE= NO
LBO = 120OH
TE_SIG_MODE = CAS
FE_TXTRISTATE   = NO
MTU = 1500
UDPPORT = 9000
TTL = 255
IGNORE_FRONT_END = NO
TDMV_SPAN   = 1
TDMV_DCHAN  = 16

[w1g1]
ACTIVE_CH   = ALL
TDMV_ECHO_OFF   = NO
TDMV_HWEC   = NO



Josué Conti wrote:


Hi Yusuf, how are you?
It orders in the list its configurations, so that let us can help.

Best Regards

Josue

2007/1/8, yusuf  [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]:

Hi all,

I have Asterisk 1.2.10, zaptel 1.2.7, spandsp-0.0.3pre22 compiled,
and a Sangoma A101, and when I
make a call I get this:


Jan  8 13:04:06 DEBUG[12252]: chan_unicall.c:2000 unicall_exception:
Exception on 19, channel 1
Jan  8 13:04:06 WARNING[12252]: chan_unicall.c:627 unicall_report:
MFC/R2 UniCall/1  - 1101
[1/  40/Seize /Idle ]
Jan  8 13:04:06 WARNING[12252]: chan_unicall.c:627 unicall_report:
MFC/R2 UniCall/1 0 on  -
[2/  40/Group I /Idle ]
Jan  8 13:04:11 WARNING[12252]: chan_unicall.c:627 unicall_report:
MFC/R2 UniCall/1 R2 prot. err.
[2/  40/Group I /DNIS ] cause 32769 - T1 timed out
Jan  8 13:04:11 WARNING[12252]: chan_unicall.c:627 unicall_report:
MFC/R2 UniCall/1 0 off -
[1/   1/Idle /Idle ]
Jan  8 13:04:11 WARNING[12252]: chan_unicall.c:627 unicall_report:
MFC/R2 UniCall/1 1001  -
[1/   1/Idle /Idle ]
Jan  8 13:04:11 WARNING[12252]: chan_unicall.c:2644 handle_uc_event:
Unicall/1 event Protocol failure
 -- Unicall/1 protocol error. Cause 32769
Jan  8 13:04:11 WARNING[12252]: chan_unicall.c:627 unicall_report:
MFC/R2 UniCall/1 Channel echo cancel
Jan  8 13:04:11 DEBUG[12252]: chan_unicall.c:955 unicall_disable_ec:
disabled echo cancellation on
channel 1

Jan  8 13:04:11 WARNING[12250]: chan_unicall.c:627 unicall_report:
MFC/R2 UniCall/1  - 1001
[1/   1/Idle /Idle ]
Jan  8 13:04:11 WARNING[12250]: chan_unicall.c:627 

Re: [asterisk-users] MFC/R2 problems + Orion GSM Gateway

2007-01-09 Thread Moises Silva

Yusuf, there are several things can be wrong. Make sure you have
configured the correct protocol variant, DNIS and CID. Also check you
really need CRC4 checking.

I wrote a document to help debugging this stuff, you can find it here:

http://moy.ivsol.net/unicall/mfcr2-asterisk-unicall-0.2-english.pdf


Good Look

Kind Regards

On 1/9/07, yusuf [EMAIL PROTECTED] wrote:

Hi,

I have made some headway with this.  Let me explain a abit of the setup.  I 
have an Orion GSM
Gateway, that was connected to a Cisco AS5300 via E1.  When I looked at the 
AS5300 config, it was
talking R2 to the Orion.  So I have tried to connect the Orion direclty to 
Asterisk (leaving out the
Cisco), using Unicall.
This is a problem I have with an incoming call, from Orion to Asterisk.

Jan  9 16:35:29 WARNING[7262]: chan_unicall.c:627 unicall_report: MFC/R2 UniCall/2 
 - 0001  [1/
   1/Idle  /Idle ]
Jan  9 16:35:29 WARNING[7262]: chan_unicall.c:627 unicall_report: MFC/R2 
UniCall/2 Detected
Jan  9 16:35:29 WARNING[7262]: chan_unicall.c:627 unicall_report: MFC/R2 
UniCall/2 Making a new call
with CRN 32769
Jan  9 16:35:29 WARNING[7262]: chan_unicall.c:627 unicall_report: MFC/R2 UniCall/2 
1101  -  [2/
   2/Idle  /Idle ]
Jan  9 16:35:29 WARNING[7262]: chan_unicall.c:2644 handle_uc_event: Unicall/2 
event Detected
Jan  9 16:35:31 WARNING[7262]: chan_unicall.c:627 unicall_report: MFC/R2 UniCall/2 
 - 1001  [2/
   2/Seize ack /Seize ack]
Jan  9 16:35:31 WARNING[7262]: chan_unicall.c:627 unicall_report: MFC/R2 
UniCall/2 Far end
disconnected(cause=Normal, unspecified cause [31]) - state 0x2
Jan  9 16:35:31 WARNING[7262]: chan_unicall.c:2644 handle_uc_event: Unicall/2 
event Far end disconnected
Jan  9 16:35:31 WARNING[7262]: chan_unicall.c:2930 handle_uc_event: CRN 32769 - 
far disconnected
cause=Normal, unspecified cause [31]
Jan  9 16:35:31 WARNING[7262]: chan_unicall.c:627 unicall_report: MFC/R2 
UniCall/2 Call control(6)
Jan  9 16:35:31 WARNING[7262]: chan_unicall.c:627 unicall_report: MFC/R2 
UniCall/2 Drop
call(cause=Normal Clearing [16])
Jan  9 16:35:31 WARNING[7262]: chan_unicall.c:627 unicall_report: MFC/R2 
UniCall/2 Call
disconnected(cause=Normal, unspecified cause [31]) - state 0x800
Jan  9 16:35:31 WARNING[7262]: chan_unicall.c:2644 handle_uc_event: Unicall/2 
event Drop call
Jan  9 16:35:31 DEBUG[7262]: chan_unicall.c:2978 handle_uc_event: CRN 32769 - 
Doing a release call
Jan  9 16:35:31 WARNING[7262]: chan_unicall.c:627 unicall_report: MFC/R2 
UniCall/2 Call control(7)
Jan  9 16:35:31 WARNING[7262]: chan_unicall.c:627 unicall_report: MFC/R2 
UniCall/2 Release call
Jan  9 16:35:31 WARNING[7262]: chan_unicall.c:627 unicall_report: MFC/R2 UniCall/2 
1001  -  [1/
1000/Clear fwd /Seize ack]

The below output(in the mail) is of an outgoing call from Asterisk.

Can anyone please help me to see what is wrong?

yusuf wrote:
 Hi,

 if that means I should post my config, here goes:

 zaptel:
 span=1,1,3,cas,hdb3,crc4
 cas=1-15:1101
 cas=17-31:1101

 unicall.conf:
 protocolvariant=id,10,10
 protocolend=cpe
 group=1
 channel = 1-15
 channel = 17-31

 wanpipe1.conf
 FE_MEDIA= E1
 FE_LCODE= HDB3
 FE_FRAME= CRC4
 FE_LINE = 1
 TE_CLOCK= NORMAL
 TE_REF_CLOCK= 0
 TE_HIGHIMPEDANCE= NO
 LBO = 120OH
 TE_SIG_MODE = CAS
 FE_TXTRISTATE   = NO
 MTU = 1500
 UDPPORT = 9000
 TTL = 255
 IGNORE_FRONT_END = NO
 TDMV_SPAN   = 1
 TDMV_DCHAN  = 16

 [w1g1]
 ACTIVE_CH   = ALL
 TDMV_ECHO_OFF   = NO
 TDMV_HWEC   = NO



 Josué Conti wrote:

 Hi Yusuf, how are you?
 It orders in the list its configurations, so that let us can help.

 Best Regards

 Josue

 2007/1/8, yusuf  [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]:

 Hi all,

 I have Asterisk 1.2.10, zaptel 1.2.7, spandsp-0.0.3pre22 compiled,
 and a Sangoma A101, and when I
 make a call I get this:


 Jan  8 13:04:06 DEBUG[12252]: chan_unicall.c:2000 unicall_exception:
 Exception on 19, channel 1
 Jan  8 13:04:06 WARNING[12252]: chan_unicall.c:627 unicall_report:
 MFC/R2 UniCall/1  - 1101
 [1/  40/Seize /Idle ]
 Jan  8 13:04:06 WARNING[12252]: chan_unicall.c:627 unicall_report:
 MFC/R2 UniCall/1 0 on  -
 [2/  40/Group I /Idle ]
 Jan  8 13:04:11 WARNING[12252]: chan_unicall.c:627 unicall_report:
 MFC/R2 UniCall/1 R2 prot. err.
 [2/  40/Group I /DNIS ] cause 32769 - T1 timed out
 Jan  8 13:04:11 WARNING[12252]: chan_unicall.c:627 unicall_report:
 MFC/R2 UniCall/1 0 off -
 [1/   1/Idle /Idle ]
 Jan  8 13:04:11 WARNING[12252]: chan_unicall.c:627 unicall_report:
 MFC/R2 UniCall/1 1001  -
 [1/   1/Idle /Idle ]
 Jan  8 13:04:11 WARNING[12252]: chan_unicall.c:2644 handle_uc_event:
 Unicall/1 event Protocol failure
  -- Unicall/1 protocol error. Cause 32769
 

[asterisk-users] MFC/R2 problems

2007-01-08 Thread yusuf

Hi all,

I have Asterisk 1.2.10, zaptel 1.2.7, spandsp-0.0.3pre22 compiled, and a Sangoma A101, and when I 
make a call I get this:



Jan  8 13:04:06 DEBUG[12252]: chan_unicall.c:2000 unicall_exception: Exception 
on 19, channel 1
Jan  8 13:04:06 WARNING[12252]: chan_unicall.c:627 unicall_report: MFC/R2 UniCall/1  - 1101 
[1/  40/Seize /Idle ]
Jan  8 13:04:06 WARNING[12252]: chan_unicall.c:627 unicall_report: MFC/R2 UniCall/1 0 on  - 
[2/  40/Group I /Idle ]
Jan  8 13:04:11 WARNING[12252]: chan_unicall.c:627 unicall_report: MFC/R2 UniCall/1 R2 prot. err. 
[2/  40/Group I /DNIS ] cause 32769 - T1 timed out
Jan  8 13:04:11 WARNING[12252]: chan_unicall.c:627 unicall_report: MFC/R2 UniCall/1 0 off - 
[1/   1/Idle /Idle ]
Jan  8 13:04:11 WARNING[12252]: chan_unicall.c:627 unicall_report: MFC/R2 UniCall/1 1001  - 
[1/   1/Idle /Idle ]

Jan  8 13:04:11 WARNING[12252]: chan_unicall.c:2644 handle_uc_event: Unicall/1 
event Protocol failure
-- Unicall/1 protocol error. Cause 32769
Jan  8 13:04:11 WARNING[12252]: chan_unicall.c:627 unicall_report: MFC/R2 
UniCall/1 Channel echo cancel
Jan  8 13:04:11 DEBUG[12252]: chan_unicall.c:955 unicall_disable_ec: disabled echo cancellation on 
channel 1


Jan  8 13:04:11 WARNING[12250]: chan_unicall.c:627 unicall_report: MFC/R2 UniCall/1  - 1001 
[1/   1/Idle /Idle ]
Jan  8 13:04:11 WARNING[12250]: chan_unicall.c:627 unicall_report: MFC/R2 UniCall/1 1001  - 
[1/   1/Idle /Idle ]

-- Hungup 'UniCall/1-1'


What does - Unicall/1 protocol error. Cause 32769 mean, and can anyone help 
me.

--
thanks,
Yusuf

--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.


--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [asterisk-users] MFC/R2 problems

2007-01-08 Thread Josué Conti

Hi Yusuf, how are you?
It orders in the list its configurations, so that let us can help.

Best Regards

Josue

2007/1/8, yusuf [EMAIL PROTECTED]:


Hi all,

I have Asterisk 1.2.10, zaptel 1.2.7, spandsp-0.0.3pre22 compiled, and a
Sangoma A101, and when I
make a call I get this:


Jan  8 13:04:06 DEBUG[12252]: chan_unicall.c:2000 unicall_exception:
Exception on 19, channel 1
Jan  8 13:04:06 WARNING[12252]: chan_unicall.c:627 unicall_report: MFC/R2
UniCall/1  - 1101
[1/  40/Seize /Idle ]
Jan  8 13:04:06 WARNING[12252]: chan_unicall.c:627 unicall_report: MFC/R2
UniCall/1 0 on  -
[2/  40/Group I /Idle ]
Jan  8 13:04:11 WARNING[12252]: chan_unicall.c:627 unicall_report: MFC/R2
UniCall/1 R2 prot. err.
[2/  40/Group I /DNIS ] cause 32769 - T1 timed out
Jan  8 13:04:11 WARNING[12252]: chan_unicall.c:627 unicall_report: MFC/R2
UniCall/1 0 off -
[1/   1/Idle /Idle ]
Jan  8 13:04:11 WARNING[12252]: chan_unicall.c:627 unicall_report: MFC/R2
UniCall/1 1001  -
[1/   1/Idle /Idle ]
Jan  8 13:04:11 WARNING[12252]: chan_unicall.c:2644 handle_uc_event:
Unicall/1 event Protocol failure
 -- Unicall/1 protocol error. Cause 32769
Jan  8 13:04:11 WARNING[12252]: chan_unicall.c:627 unicall_report: MFC/R2
UniCall/1 Channel echo cancel
Jan  8 13:04:11 DEBUG[12252]: chan_unicall.c:955 unicall_disable_ec:
disabled echo cancellation on
channel 1

Jan  8 13:04:11 WARNING[12250]: chan_unicall.c:627 unicall_report: MFC/R2
UniCall/1  - 1001
[1/   1/Idle /Idle ]
Jan  8 13:04:11 WARNING[12250]: chan_unicall.c:627 unicall_report: MFC/R2
UniCall/1 1001  -
[1/   1/Idle /Idle ]
 -- Hungup 'UniCall/1-1'


What does - Unicall/1 protocol error. Cause 32769 mean, and can anyone
help me.

--
thanks,
Yusuf

--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.


--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

___
--Bandwidth and Colocation provided by Easynews.com --

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

___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [asterisk-users] MFC/R2 problems

2007-01-08 Thread yusuf

Hi,

if that means I should post my config, here goes:

zaptel:
span=1,1,3,cas,hdb3,crc4
cas=1-15:1101
cas=17-31:1101

unicall.conf:
protocolvariant=id,10,10
protocolend=cpe
group=1
channel = 1-15
channel = 17-31

wanpipe1.conf
FE_MEDIA= E1
FE_LCODE= HDB3
FE_FRAME= CRC4
FE_LINE = 1
TE_CLOCK= NORMAL
TE_REF_CLOCK= 0
TE_HIGHIMPEDANCE= NO
LBO = 120OH
TE_SIG_MODE = CAS
FE_TXTRISTATE   = NO
MTU = 1500
UDPPORT = 9000
TTL = 255
IGNORE_FRONT_END = NO
TDMV_SPAN   = 1
TDMV_DCHAN  = 16

[w1g1]
ACTIVE_CH   = ALL
TDMV_ECHO_OFF   = NO
TDMV_HWEC   = NO



Josué Conti wrote:

Hi Yusuf, how are you?
It orders in the list its configurations, so that let us can help.

Best Regards

Josue

2007/1/8, yusuf  [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]:

Hi all,

I have Asterisk 1.2.10, zaptel 1.2.7, spandsp-0.0.3pre22 compiled,
and a Sangoma A101, and when I
make a call I get this:


Jan  8 13:04:06 DEBUG[12252]: chan_unicall.c:2000 unicall_exception:
Exception on 19, channel 1
Jan  8 13:04:06 WARNING[12252]: chan_unicall.c:627 unicall_report:
MFC/R2 UniCall/1  - 1101
[1/  40/Seize /Idle ]
Jan  8 13:04:06 WARNING[12252]: chan_unicall.c:627 unicall_report:
MFC/R2 UniCall/1 0 on  -
[2/  40/Group I /Idle ]
Jan  8 13:04:11 WARNING[12252]: chan_unicall.c:627 unicall_report:
MFC/R2 UniCall/1 R2 prot. err.
[2/  40/Group I /DNIS ] cause 32769 - T1 timed out
Jan  8 13:04:11 WARNING[12252]: chan_unicall.c:627 unicall_report:
MFC/R2 UniCall/1 0 off -
[1/   1/Idle /Idle ]
Jan  8 13:04:11 WARNING[12252]: chan_unicall.c:627 unicall_report:
MFC/R2 UniCall/1 1001  -
[1/   1/Idle /Idle ]
Jan  8 13:04:11 WARNING[12252]: chan_unicall.c:2644 handle_uc_event:
Unicall/1 event Protocol failure
 -- Unicall/1 protocol error. Cause 32769
Jan  8 13:04:11 WARNING[12252]: chan_unicall.c:627 unicall_report:
MFC/R2 UniCall/1 Channel echo cancel
Jan  8 13:04:11 DEBUG[12252]: chan_unicall.c:955 unicall_disable_ec:
disabled echo cancellation on
channel 1

Jan  8 13:04:11 WARNING[12250]: chan_unicall.c:627 unicall_report:
MFC/R2 UniCall/1  - 1001
[1/   1/Idle /Idle ]
Jan  8 13:04:11 WARNING[12250]: chan_unicall.c:627 unicall_report:
MFC/R2 UniCall/1 1001  -
[1/   1/Idle /Idle ]
 -- Hungup 'UniCall/1-1'


What does - Unicall/1 protocol error. Cause 32769 mean, and can
anyone help me.

--



--
thanks,
Yusuf

--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.


--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

___
--Bandwidth and Colocation provided by Easynews.com --

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


[asterisk-users] MFC/R2 on chan_zap

2006-12-13 Thread Alejandro Rios Peña
Hello.

I'm trying to setup MFC/R2 signaling, but chan_unicall fails at loading
with this message:

---
Unable to load module chan_unicall.so
 Loaded /usr/lib/asterisk/modules/chan_unicall.so = (Unified call
processing (UniCall))
  == Parsing '/etc/asterisk/unicall.conf': Found
061213-075938 ERROR[11454]: chan_unicall.c:3361 mkintf: Unable to open
channel 1: Success
here = 0, tmp-channel = 0, channel = 1
061213-075938 ERROR[11454]: chan_unicall.c:4081 setup_unicall: Unable to
register channel '1-15'
061213-075938 WARNING[11454]: loader.c:414 __load_resource:
chan_unicall.so: load_module failed, returning -1
---


I saw there is some MFC/R2 code on chan_zap.c of asterisk version
1.2.13, has anyone tried it?

Thanks


signature.asc
Description: Esta parte del mensaje está firmada	digitalmente
___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [asterisk-users] MFC/R2 on chan_zap

2006-12-13 Thread Tzafrir Cohen
On Wed, Dec 13, 2006 at 09:12:13AM -0500, Alejandro Rios Peña wrote:
 Hello.
 
 I'm trying to setup MFC/R2 signaling, but chan_unicall fails at loading
 with this message:
 
 ---
 Unable to load module chan_unicall.so
  Loaded /usr/lib/asterisk/modules/chan_unicall.so = (Unified call
 processing (UniCall))
   == Parsing '/etc/asterisk/unicall.conf': Found
 061213-075938 ERROR[11454]: chan_unicall.c:3361 mkintf: Unable to open
 channel 1: Success
 here = 0, tmp-channel = 0, channel = 1
 061213-075938 ERROR[11454]: chan_unicall.c:4081 setup_unicall: Unable to
 register channel '1-15'
 061213-075938 WARNING[11454]: loader.c:414 __load_resource:
 chan_unicall.so: load_module failed, returning -1
 ---
 
 
 I saw there is some MFC/R2 code on chan_zap.c of asterisk version
 1.2.13, has anyone tried it?

It was removed for being non-functional.

-- 
   Tzafrir Cohen   
icq#16849755jabber:[EMAIL PROTECTED]
+972-50-7952406   mailto:[EMAIL PROTECTED]   
http://www.xorcom.com  iax:[EMAIL PROTECTED]/tzafrir
___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [asterisk-users] MFC/R2 on chan_zap

2006-12-13 Thread Moises Silva

And unicall is failing because have you read the error message?

it says fails to open a channel, so is highly probable that the
problem is your configuration, or zaptel driver module not properly
loaded.

regards

On 12/13/06, Tzafrir Cohen [EMAIL PROTECTED] wrote:

On Wed, Dec 13, 2006 at 09:12:13AM -0500, Alejandro Rios Peña wrote:
 Hello.

 I'm trying to setup MFC/R2 signaling, but chan_unicall fails at loading
 with this message:

 ---
 Unable to load module chan_unicall.so
  Loaded /usr/lib/asterisk/modules/chan_unicall.so = (Unified call
 processing (UniCall))
   == Parsing '/etc/asterisk/unicall.conf': Found
 061213-075938 ERROR[11454]: chan_unicall.c:3361 mkintf: Unable to open
 channel 1: Success
 here = 0, tmp-channel = 0, channel = 1
 061213-075938 ERROR[11454]: chan_unicall.c:4081 setup_unicall: Unable to
 register channel '1-15'
 061213-075938 WARNING[11454]: loader.c:414 __load_resource:
 chan_unicall.so: load_module failed, returning -1
 ---


 I saw there is some MFC/R2 code on chan_zap.c of asterisk version
 1.2.13, has anyone tried it?

It was removed for being non-functional.

--
   Tzafrir Cohen
icq#16849755jabber:[EMAIL PROTECTED]
+972-50-7952406   mailto:[EMAIL PROTECTED]
http://www.xorcom.com  iax:[EMAIL PROTECTED]/tzafrir
___
--Bandwidth and Colocation provided by Easynews.com --

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




--
Su nombre es GNU/Linux, no solamente Linux, mas info en http://www.gnu.org;
___
--Bandwidth and Colocation provided by Easynews.com --

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


[asterisk-users] MFC/R2 patch problems

2006-10-30 Thread Christian Jensen
I have looked on this list but may have missed it. I am having  
problems patching the makefile in the asterisk channels source tree.  
I keep getting:

--
patching file Makefile
Hunk #1 FAILED at 72.
Hunk #2 FAILED at 143.
Hunk #3 FAILED at 178.
--

Any ideas for solutions?

Thanks,
Christian Jensen

P.S. Sorry If i am repeating this question.
___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [asterisk-users] MFC/R2 patch problems

2006-10-30 Thread Moises Silva

Learn how a patchfile/Makefile works, and fix the patch. Actually the
Makefile patch never has applied cleanly in my experience, so always a
few fixes are needed.

On 10/30/06, Christian Jensen [EMAIL PROTECTED] wrote:

I have looked on this list but may have missed it. I am having
problems patching the makefile in the asterisk channels source tree.
I keep getting:
--
patching file Makefile
Hunk #1 FAILED at 72.
Hunk #2 FAILED at 143.
Hunk #3 FAILED at 178.
--

Any ideas for solutions?

Thanks,
Christian Jensen

P.S. Sorry If i am repeating this question.
___
--Bandwidth and Colocation provided by Easynews.com --

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




--
Su nombre es GNU/Linux, no solamente Linux, mas info en http://www.gnu.org;
___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [asterisk-users] MFC/R2 country and carrier specific protocol variants

2006-08-10 Thread Steve Underwood

Kanelbullar wrote:


Hi all,
 
Those of you who are using or who have used the Unicall channel for 
MFC/R2 may be familiar with 'protocolvariant' field, in the 
unicall.conf file. It changes from country to country and even in the 
same country it may change from carrier to carrier.
 
I googled around looking for a list of those protocol variants, but I 
only found scattered information, given by users who had been using 
Unicall in a specific country, sometimes without providing the carrier 
name.
 
I have added to the bottom of 
http://www.voip-info.org/wiki/view/Asterisk+MFC+R2 the list of 
protocol variants that I have gathered so far. I would kindly ask 
those of you who may have successfully used other variants to add them 
to the list, so that everyone can benefit from that information.


Well, I suppose you could have sent the info to the developer for 
inclusion in the information at soft-switch.org, instead of mingling it 
with the out of date junk at www.voip-info.org. No, that would be really 
silly, wouldn't it. :-)


Steve

___
--Bandwidth and Colocation provided by Easynews.com --

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


RE: [asterisk-users] MFC/R2 country and carrier specific protocol variants

2006-07-12 Thread Kanelbullar
Hi Dennis,Thank you for the information.  We haven't had that problem so far, in the tests that we have been making (we are not yet in production, but will likely be within a short time frame in several countries), so unfortunately I cannot help you in that specific problem.   I hope you can solve it quickly, though. Good luck.Best regards,  PauloDennis Nacino [EMAIL PROTECTED] skrev:  Hi Paulo,I'm from Philippines and here's the protocol variant line I use for our R2 provider (NextelPhilippines) protocolvariant=ph,12,18,1But it never reach production stage pending resolution of the problem I post in this list last May"[Asterisk-Users] Unicall MFC/R2 B3,B4 and clear back". Anyway, I presumed you've been
 usingUNICALL/R2 channel in production. May, I know how did you deal with that problem. Should Ipresumed that since R2 is so variant, somehow you've been spare.Regards,Dennis__Do You Yahoo!?Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com ___--Bandwidth and Colocation provided by Easynews.com --asterisk-users mailing listTo UNSUBSCRIBE or update options visit:http://lists.digium.com/mailman/listinfo/asterisk-users___
--Bandwidth and Colocation provided by Easynews.com --

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


[asterisk-users] MFC/R2 country and carrier specific protocol variants

2006-07-11 Thread Kanelbullar
Hi all,Those of you whoare using or who have used the Unicall channel for MFC/R2 may be familiar with 'protocolvariant' field, in the unicall.conf file. It changes from country to country and even in the same country it may change from carrier to carrier.I googled around looking for a list of those protocol variants, but I only found scattered information, given by users who had been using Unicall in a specific country, sometimes without providing the carrier name.I have added to the bottom of http://www.voip-info.org/wiki/view/Asterisk+MFC+R2the list of protocol variants that I have gathered so far. I would kindly ask those of you who may have successfullyused other variants to add them to the list, so that everyone can benefit from that information.Many
 thanks,  Paulo___
--Bandwidth and Colocation provided by Easynews.com --

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


[asterisk-users] MFC/R2 country and carrier specific protocol variants

2006-07-11 Thread Dennis Nacino
Hi Paulo,

I'm from Philippines and here's the protocol variant line I use for our R2 
provider (Nextel
Philippines) 

protocolvariant=ph,12,18,1

But it never reach production stage pending resolution of the problem I post in 
this list last May
[Asterisk-Users] Unicall MFC/R2 B3,B4 and clear back. Anyway, I presumed 
you've been using
UNICALL/R2 channel in production. May, I know how did you deal with that 
problem. Should I
presumed that since R2 is so variant, somehow you've been spare.


Regards,


Dennis
  


__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] MFC/R2 for Voice and Data

2006-06-01 Thread Carlos Chavez
On Wed, 2006-05-31 at 19:22 -0500, Moises Silva wrote:
 google  zaptel hdlc
 
So it makes no difference if you are using R2 instead of ISDN?

-- 
Carlos Chavez Prats
Director de Tecnología
Telecomunicaciones Abiertas de México S.A. de C.V.
Tel: +52-55-91169161 Ext 2001


signature.asc
Description: This is a digitally signed message part
___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] MFC/R2 for Voice and Data

2006-06-01 Thread Moises Silva

R2 does not limit in any way the use of other channels for other
purposes. R2  is embedded  for each time slot. Honestly I have not
needed such a thing (combine channels) but it shouldnt be a problem.
HDLC in zaptel make a gruoup of the channels you specify, and use them
as a single network device.

Regards and good look

On 6/1/06, Carlos Chavez [EMAIL PROTECTED] wrote:

On Wed, 2006-05-31 at 19:22 -0500, Moises Silva wrote:
 google  zaptel hdlc

So it makes no difference if you are using R2 instead of ISDN?

--
Carlos Chavez Prats
Director de Tecnología
Telecomunicaciones Abiertas de México S.A. de C.V.
Tel: +52-55-91169161 Ext 2001


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.3 (GNU/Linux)

iD8DBQBEfwUvVhw7eWImqUMRArMJAJ9UmaLYeudb1+2TNLDkzi6+lxBiMgCfULQs
3OJHntNXO9091lcLB2NHV6Y=
=tGt3
-END PGP SIGNATURE-


___
--Bandwidth and Colocation provided by Easynews.com --

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






--
Su nombre es GNU/Linux, no solamente Linux, mas info en http://www.gnu.org;
___
--Bandwidth and Colocation provided by Easynews.com --

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


[Asterisk-Users] MFC/R2 for Voice and Data

2006-05-31 Thread Carlos Chavez
I have a question for people who use R2.  I know it is possible to use
the same E1/T1 for voice and data when you use a TE110P with ISDN.  Is
it possible to do the same when the link uses R2 for signaling?  I know
that you can use Unicall to handle R2 on voice, but how can you use data
from the R2 link?

-- 
Carlos Chavez Prats
Director de Tecnología
Telecomunicaciones Abiertas de México S.A. de C.V.
Tel: +52-55-91169161 Ext 2001


signature.asc
Description: This is a digitally signed message part
___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] MFC/R2 for Voice and Data

2006-05-31 Thread Moises Silva

google  zaptel hdlc

On 5/31/06, Carlos Chavez [EMAIL PROTECTED] wrote:

I have a question for people who use R2.  I know it is possible to use
the same E1/T1 for voice and data when you use a TE110P with ISDN.  Is
it possible to do the same when the link uses R2 for signaling?  I know
that you can use Unicall to handle R2 on voice, but how can you use data
from the R2 link?

--
Carlos Chavez Prats
Director de Tecnología
Telecomunicaciones Abiertas de México S.A. de C.V.
Tel: +52-55-91169161 Ext 2001


-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.3 (GNU/Linux)

iD8DBQBEfh8HVhw7eWImqUMRAkCmAJ9tSwnHw2eS7Z+hPFGjVZqEFD/OBQCfabgO
40oZJAZCnmoblaTUeABZuuk=
=On40
-END PGP SIGNATURE-


___
--Bandwidth and Colocation provided by Easynews.com --

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






--
Su nombre es GNU/Linux, no solamente Linux, mas info en http://www.gnu.org;
___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] MFC/R2 for Voice and Data

2006-05-31 Thread Steve Underwood

Carlos Chavez wrote:


I have a question for people who use R2.  I know it is possible to use
the same E1/T1 for voice and data when you use a TE110P with ISDN.  Is
it possible to do the same when the link uses R2 for signaling?  I know
that you can use Unicall to handle R2 on voice, but how can you use data
from the R2 link?
 

R2 signalling is allocated timeslot by timeslot. You could allocate just 
a few of the timeslots for R2 signalling, and the remainder can be 
something else, like HDLC data.


Steve

___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] MFC/R2 in Brazil

2006-02-09 Thread Melcon Moraes

Can you send some *CLI output? BTW, which spandsp version are you using?

[]'s
MM

Darlon wrote:

I don´t know if the last message was with content. So, I sent again. I have
installed a Digium card TE210P and unicall for use MFC/R2. I think that it´s
all right but I can´t make and receive calls. I´m using asterisk 2.1 with
the patch made by José P. Leitão and the follow libs:

 libsupertone-0.0.2
 libunicall-0.0.3
 libmfcr2-0.0.3
 zaptel 2.1

My number is 34318300. The Telco send me only 8300. I see that I receive
from the Telco the first digit (8) and my asterisk answer 5, but the Telco
doesn´t receive my digit. My configs are below:
I tried to change the timer in mfcr2.c to 2. I tried a lot of
combinations in protocolvariant but, no sucess.
The Telco said me that the PBX is synchronized. Strange, no?

Please help me. Thanks a lot.


 *unicall.conf*

;call telephony channel driver
; Sample configuration file

[channels]
loglevel=255
language=br
context=default
usecallerid=yes
hidecallerid=no
restrictcid=no
callwaitingcallerid=yes
threewaycalling=yes
transfer=yes
cancallforward=no
callreturn=no
echocancel=yes
echocancelwhenbridged=yes
echotraining=yes
echotraining=800
relaxdtmf=yes
rxgain=0.0
txgain= 0.0
callgroup=1
pickupgroup=1
immediate=no
callerid=asreceived
amaflags=default
accountcode=line-E1
faxdetect=no
musiconhold=default
protocolclass=mfcr2
protocolvariant=br,10,4
protocolend=cpe
group=1
channel = 1-15
channel = 17-31


 *zaptel.conf*

 span=1,1,0,cas,hdb3
 cas=1-15:1101
 cas=17-31:1101
 loadzone = br
 defaultzone=br


;extensions.conf*

[general]
static=yes
writeprotect=no

[default]
exten = _,1,SetCallerID(Betha Sistemas,4834318300)
exten = _,2,Dial(Unicall/g1/${EXTEN},60,t)
exten = _3XXX,1,Macro(sipiax,IAX2/${EXTEN})?

exten=8300,1,Goto(telefonista,s,1) ;ligação cai na fila da telefonista
exten=8301,1,Macro(sipiax,IAX2/3001) ;ligação cai diretamente no ramal
desejado
exten=8302,1,Goto(suporte_tributos,s,1) ;ligação cai na fila do suporte
tributos
exten=8303,1,Goto(telefonista,s,1) ;ligação cai na fila da telefonista
exten=8304,1,Goto(telefonista,s,1) ;ligação cai na fila da telefonista

;Fila de Atendimento Telefonista
[telefonista]
exten=s,1,Answer(2)
exten=s,2,SetMusicOnHold(default)
exten=s,3,Queue(telefonista)

;Fila de Atendimento Suporte Tributos
[suporte_tributos]
exten=s,1,Answer()
exten=s,2,SetMusicOnHold(default)
exten=s,3,DigitTimeout,5
exten=s,4,ResponseTimeout,10
exten=s,5,SetVar(CALLFILENAME=i${CALLERIDNUM}-${TIMESTAMP})
;exten=s,5,Background(fila_de_atendimento)
exten=s,6,Queue(suporte-tributos)

;Login para a fila de atendimento
exten=801,1,Wait,1
exten=801,2,AgentLogin()

[macro-sipiax]
exten=s,1,SetLanguage(${LANG})
exten=s,2,SetCallerId(${CALLERID})
exten=s,3,Dial(${ARG1},20,Ttr)
exten=s,4,Goto(s-${DIALSTATUS},1)
exten=s-NOANSWER,1,Voicemail(u${MACRO_EXTEN})
exten=s-NOANSWER,2,Hangup()
exten=s-CHANUNAVAIL,1,Voicemail(u${MACRO_EXTEN}) ;O ramal está indisponível
exten=s-CHANUNAVAIL,2,Hangup()
exten=s-BUSY,1,Voicemail(b${MACRO_EXTEN});o ramal não está ocupadodo
exten=s-BUSY,2,Hangup()
exten=s-CONGESTION,1,Voicemail(b${MACRO_EXTEN});o ramal não está
´disponível
exten=s-CONGESTION,2,Hangup()


Darlon Ferreira Bortolini
Rede/Desenvolvimento
Betha Sistemas
Fone (48) 431-0750/Ramal 1000

___
--Bandwidth and Colocation provided by Easynews.com --

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



___
--Bandwidth and Colocation provided by Easynews.com --

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


[Asterisk-Users] MFC/R2 in Brazil

2006-02-07 Thread Darlon
I don´t know if the last message was with content. So, I sent again. I have
installed a Digium card TE210P and unicall for use MFC/R2. I think that it´s
all right but I can´t make and receive calls. I´m using asterisk 2.1 with
the patch made by José P. Leitão and the follow libs:

 libsupertone-0.0.2
 libunicall-0.0.3
 libmfcr2-0.0.3
 zaptel 2.1

My number is 34318300. The Telco send me only 8300. I see that I receive
from the Telco the first digit (8) and my asterisk answer 5, but the Telco
doesn´t receive my digit. My configs are below:
I tried to change the timer in mfcr2.c to 2. I tried a lot of
combinations in protocolvariant but, no sucess.
The Telco said me that the PBX is synchronized. Strange, no?

Please help me. Thanks a lot.


 *unicall.conf*

;call telephony channel driver
; Sample configuration file

[channels]
loglevel=255
language=br
context=default
usecallerid=yes
hidecallerid=no
restrictcid=no
callwaitingcallerid=yes
threewaycalling=yes
transfer=yes
cancallforward=no
callreturn=no
echocancel=yes
echocancelwhenbridged=yes
echotraining=yes
echotraining=800
relaxdtmf=yes
rxgain=0.0
txgain= 0.0
callgroup=1
pickupgroup=1
immediate=no
callerid=asreceived
amaflags=default
accountcode=line-E1
faxdetect=no
musiconhold=default
protocolclass=mfcr2
protocolvariant=br,10,4
protocolend=cpe
group=1
channel = 1-15
channel = 17-31


 *zaptel.conf*

 span=1,1,0,cas,hdb3
 cas=1-15:1101
 cas=17-31:1101
 loadzone = br
 defaultzone=br


;extensions.conf*

[general]
static=yes
writeprotect=no

[default]
exten = _,1,SetCallerID(Betha Sistemas,4834318300)
exten = _,2,Dial(Unicall/g1/${EXTEN},60,t)
exten = _3XXX,1,Macro(sipiax,IAX2/${EXTEN})?

exten=8300,1,Goto(telefonista,s,1) ;ligação cai na fila da telefonista
exten=8301,1,Macro(sipiax,IAX2/3001) ;ligação cai diretamente no ramal
desejado
exten=8302,1,Goto(suporte_tributos,s,1) ;ligação cai na fila do suporte
tributos
exten=8303,1,Goto(telefonista,s,1) ;ligação cai na fila da telefonista
exten=8304,1,Goto(telefonista,s,1) ;ligação cai na fila da telefonista

;Fila de Atendimento Telefonista
[telefonista]
exten=s,1,Answer(2)
exten=s,2,SetMusicOnHold(default)
exten=s,3,Queue(telefonista)

;Fila de Atendimento Suporte Tributos
[suporte_tributos]
exten=s,1,Answer()
exten=s,2,SetMusicOnHold(default)
exten=s,3,DigitTimeout,5
exten=s,4,ResponseTimeout,10
exten=s,5,SetVar(CALLFILENAME=i${CALLERIDNUM}-${TIMESTAMP})
;exten=s,5,Background(fila_de_atendimento)
exten=s,6,Queue(suporte-tributos)

;Login para a fila de atendimento
exten=801,1,Wait,1
exten=801,2,AgentLogin()

[macro-sipiax]
exten=s,1,SetLanguage(${LANG})
exten=s,2,SetCallerId(${CALLERID})
exten=s,3,Dial(${ARG1},20,Ttr)
exten=s,4,Goto(s-${DIALSTATUS},1)
exten=s-NOANSWER,1,Voicemail(u${MACRO_EXTEN})
exten=s-NOANSWER,2,Hangup()
exten=s-CHANUNAVAIL,1,Voicemail(u${MACRO_EXTEN}) ;O ramal está indisponível
exten=s-CHANUNAVAIL,2,Hangup()
exten=s-BUSY,1,Voicemail(b${MACRO_EXTEN});o ramal não está ocupadodo
exten=s-BUSY,2,Hangup()
exten=s-CONGESTION,1,Voicemail(b${MACRO_EXTEN});o ramal não está
´disponível
exten=s-CONGESTION,2,Hangup()


Darlon Ferreira Bortolini
Rede/Desenvolvimento
Betha Sistemas
Fone (48) 431-0750/Ramal 1000

___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] MFC/R2

2005-12-20 Thread Jorge Cisneros
Hi

 I have a few question about unicall


 What version of unicall is stable 0.0.2e or 0.0.3pre8

i am using 0.0.3pre8 but i have a litle problems

1.- I can't send or recived any fax. i put the faxdetect in the unicall.conf but your code ignore this.
2.- When the user dialsome numbers the ocurre a error 

Unicall/1 protocol error. Cause 32769
WARNING[17566]: MFC/R2 UniCall/1 R2 prot. err. [2/ 40/Group I /DNIS ] cause 32769 - T1 timed out

this error is always with the same numer. Othe numers work fine

3.- I can't make a data call for example a dialup, i think is the same problem that with the fax.

thanks for your time and your code.





On 11/11/05, Steve Underwood [EMAIL PROTECTED] wrote:
Bruno de Assumpção Loureiro wrote:Turn on full logging with loglevel=255 in unicall.conf
, and send me alog when a channel locks up.SteveThank you for your answer.In the below log, loglevel=255, the Unicall/2 is locked up, it stay in
Bad State. It starts work well, but at about 8:26:48 it's locked upuntil the next reload CLI command. It's only happing with the outboundcalls. I have verified that always have a Timed out waiting for grou B
before it locked up..It would have been better to send such a long log directly to me, ratherthan to the mailing list.That said, the log did the job. I found the problem. I just posted
another update to the MFC/R2 software - 0.0.2e and 0.0.3pre8Regards,Steve___--Bandwidth and Colocation sponsored by Easynews.com
 --Asterisk-Users mailing listAsterisk-Users@lists.digium.comhttp://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:http://lists.digium.com/mailman/listinfo/asterisk-users
___
--Bandwidth and Colocation provided by Easynews.com --

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


Re: [Asterisk-Users] MFC/R2

2005-11-12 Thread Bruno de Assumpção Loureiro
 It would have been better to send such a long log directly to me, rather
 than to the mailing list.

Ok .



 That said, the log did the job. I found the problem. I just posted
 another update to the MFC/R2 software - 0.0.2e and 0.0.3pre8

 Regards,
 Steve


I installed the new libmfcr2 today. After that, I did a test with it
and the result was very good, but I will only have a complete test,
with a continous load of calls,  next monday   so I could  send you
one more detailed result.

Thank you for your attention and for your hard work. I hope you
continue having success in yours projects.

Maybe, if you need any information about Brazil telephony standards I
could help you.

Best regards,
Loureiro.
___
--Bandwidth and Colocation sponsored by Easynews.com --

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


Re: [Asterisk-Users] MFC/R2

2005-11-11 Thread Bruno de Assumpção Loureiro
 Turn on full logging with loglevel=255 in unicall.conf, and send me a
 log when a channel locks up.

 Steve

Thank you for your answer.
In the below log, loglevel=255, the Unicall/2 is locked up, it stay in
Bad State. It starts work well, but at about 8:26:48 it's locked up
until the next reload CLI command. It's only happing with the outbound
calls. I have verified that always have a Timed out waiting for grou B
before it locked up..

Nov 11 08:24:16 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2 Call control(1)
Nov 11 08:24:16 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2 Make call
Nov 11 08:24:16 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2 Making
a new call with CRN 32769
Nov 11 08:24:16 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2 0001
-  [1/   1/Idle  /Idle ]
Nov 11 08:24:16 WARNING[13812] chan_unicall.c: Unicall/2 event Dialing
Nov 11 08:24:16 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2
- 1101  [1/  40/Seize /Idle ]
Nov 11 08:24:16 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2 9 on
-  [2/  40/Group I   /Idle ]
Nov 11 08:24:16 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2
- 1 on  [2/  40/Group I   /DNIS ]
Nov 11 08:24:16 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2 9 off
-  [2/  40/Group I   /DNIS ]
Nov 11 08:24:16 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2
- 1 off [2/  40/Group I   /DNIS ]
Nov 11 08:24:16 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2 1 on
-  [2/  40/Group I   /DNIS ]
Nov 11 08:24:16 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2
- 1 on  [2/  40/Group I   /DNIS ]
Nov 11 08:24:16 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2 1 off
-  [2/  40/Group I   /DNIS ]
Nov 11 08:24:17 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2
- 1 off [2/  40/Group I   /DNIS ]
Nov 11 08:24:17 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2 3 on
-  [2/  40/Group I   /DNIS ]
Nov 11 08:24:17 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2
- 1 on  [2/  40/Group I   /DNIS ]
Nov 11 08:24:17 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2 3 off
-  [2/  40/Group I   /DNIS ]
Nov 11 08:24:17 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2
- 1 off [2/  40/Group I   /DNIS ]
Nov 11 08:24:17 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2 3 on
-  [2/  40/Group I   /DNIS ]
Nov 11 08:24:17 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2
- 1 on  [2/  40/Group I   /DNIS ]
Nov 11 08:24:17 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2 3 off
-  [2/  40/Group I   /DNIS ]
Nov 11 08:24:17 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2
- 1 off [2/  40/Group I   /DNIS ]
Nov 11 08:24:17 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2 1 on
-  [2/  40/Group I   /DNIS ]
Nov 11 08:24:17 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2
- 1 on  [2/  40/Group I   /DNIS ]
Nov 11 08:24:17 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2 1 off
-  [2/  40/Group I   /DNIS ]
Nov 11 08:24:17 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2
- 1 off [2/  40/Group I   /DNIS ]
Nov 11 08:24:17 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2 7 on
-  [2/  40/Group I   /DNIS ]
Nov 11 08:24:17 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2
- 1 on  [2/  40/Group I   /DNIS ]
Nov 11 08:24:17 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2 7 off
-  [2/  40/Group I   /DNIS ]
Nov 11 08:24:17 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2
- 1 off [2/  40/Group I   /DNIS ]
Nov 11 08:24:17 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2 3 on
-  [2/  40/Group I   /DNIS ]
Nov 11 08:24:17 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2
- 1 on  [2/  40/Group I   /DNIS ]
Nov 11 08:24:17 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2 3 off
-  [2/  40/Group I   /DNIS ]
Nov 11 08:24:17 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2
- 1 off [2/  40/Group I   /DNIS ]
Nov 11 08:24:17 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2 7 on
-  [2/  40/Group I   /DNIS ]
Nov 11 08:24:17 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2
- 3 on  [2/  40/Group I   /DNIS ]
Nov 11 08:24:17 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2 7 off
-  [2/  40/Group I   /DNIS ]
Nov 11 08:24:17 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2
- 3 off [2/  40/Group I   /DNIS ]
Nov 11 08:24:17 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2 1 on
-  [2/  40/Group I   /DNIS ]
Nov 11 08:24:19 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2 Channel gains
Nov 11 08:24:19 WARNING[13812] chan_unicall.c: MFC/R2 UniCall/2
Channel switching
Nov 

Re: [Asterisk-Users] MFC/R2

2005-11-11 Thread Steve Underwood

Bruno de Assumpção Loureiro wrote:


Turn on full logging with loglevel=255 in unicall.conf, and send me a
log when a channel locks up.

Steve
   



Thank you for your answer.
In the below log, loglevel=255, the Unicall/2 is locked up, it stay in
Bad State. It starts work well, but at about 8:26:48 it's locked up
until the next reload CLI command. It's only happing with the outbound
calls. I have verified that always have a Timed out waiting for grou B
before it locked up..
 

It would have been better to send such a long log directly to me, rather 
than to the mailing list.


That said, the log did the job. I found the problem. I just posted 
another update to the MFC/R2 software - 0.0.2e and 0.0.3pre8


Regards,
Steve

___
--Bandwidth and Colocation sponsored by Easynews.com --

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


[Asterisk-Users] MFC/R2

2005-11-10 Thread Bruno de Assumpção Loureiro
Hi users,

how can I do a group of unicall channels to round? Is there something
like Dial(Unicall/R1/...) ??


Sometimes a outbound channel   is locking up. It isn't happening with
the incoming calls.
I'm using unicall-pre0.0.5.

Best Regards,
Loureiro.
--
Bruno de Assumpção Loureiro
msn: [EMAIL PROTECTED]
___
--Bandwidth and Colocation sponsored by Easynews.com --

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


Re: [Asterisk-Users] MFC/R2

2005-11-10 Thread Jesus Mogollon
in unicall.conf set the amount of channels you need in a group and then call

Dial(Unicall/g1/${EXTEN})2005/11/10, Bruno de Assumpção Loureiro [EMAIL PROTECTED]:
Hi users,how can I do a group of unicall channels to round? Is there somethinglike Dial(Unicall/R1/...) ??Sometimes a outbound channel is locking up. It isn't happening withthe incoming calls.
I'm using unicall-pre0.0.5.Best Regards,Loureiro.--Bruno de Assumpção Loureiromsn: [EMAIL PROTECTED]___
--Bandwidth and Colocation sponsored by Easynews.com --Asterisk-Users mailing listAsterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-usersTo UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users

___
--Bandwidth and Colocation sponsored by Easynews.com --

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

Re: [Asterisk-Users] MFC/R2

2005-11-10 Thread Bruno de Assumpção Loureiro
I want something which specify a kind of methods like the Zap channel
module  use to select a non-busy channel from the channel group by
prefixing the group number with one of the letters g, G, r, or R

So, how can I choose one channel non-busy which don't start always by
the first less number idle?

Thanks a lot.
[]'s
Loureiro.

On 11/10/05, Jesus Mogollon [EMAIL PROTECTED] wrote:
 in unicall.conf set the amount of channels you need in a group and then call

  Dial(Unicall/g1/${EXTEN})

 2005/11/10, Bruno de Assumpção Loureiro [EMAIL PROTECTED]:
 
  Hi users,
 
  how can I do a group of unicall channels to round? Is there something
  like Dial(Unicall/R1/...) ??
 
 
  Sometimes a outbound channel   is locking up. It isn't happening with
  the incoming calls.
  I'm using unicall-pre0.0.5.
 
  Best Regards,
  Loureiro.
  --
  Bruno de Assumpção Loureiro
  msn: [EMAIL PROTECTED]
  ___
  --Bandwidth and Colocation sponsored by Easynews.com --
 
  Asterisk-Users mailing list
  Asterisk-Users@lists.digium.com
 
 http://lists.digium.com/mailman/listinfo/asterisk-users
  To UNSUBSCRIBE or update options visit:
 
 http://lists.digium.com/mailman/listinfo/asterisk-users
 


 ___
 --Bandwidth and Colocation sponsored by Easynews.com --

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

 http://lists.digium.com/mailman/listinfo/asterisk-users




--
Bruno de Assumpção Loureiro
msn: [EMAIL PROTECTED]
___
--Bandwidth and Colocation sponsored by Easynews.com --

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


Re: [Asterisk-Users] MFC/R2

2005-11-10 Thread Steve Underwood

Bruno de Assumpção Loureiro wrote:


Hi users,

how can I do a group of unicall channels to round? Is there something
like Dial(Unicall/R1/...) ??
 

That doesn't work with the unicall channels. Only 'g' works right now. I 
intend to add 'G' and 'R' features in a similar manner to chan_zap.



Sometimes a outbound channel   is locking up. It isn't happening with
the incoming calls.
I'm using unicall-pre0.0.5.
 

Turn on full logging with loglevel=255 in unicall.conf, and send me a 
log when a channel locks up.


Steve

___
--Bandwidth and Colocation sponsored by Easynews.com --

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


[Asterisk-Users] MFC/R2 - unicall

2005-11-04 Thread Bruno de Assumpção Loureiro
Hello users,

Somebody knows a  good flash operator that works fine with unicall
channels? I don't know any one that can support this :-(


And you Steve Underwood, could you give me a tip?

Best regards,

Loureiro.
--
Bruno de Assumpção Loureiro
msn: [EMAIL PROTECTED]
___
--Bandwidth and Colocation sponsored by Easynews.com --

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


[Asterisk-Users] MFC/R2 DTMF and digits * and #

2005-08-16 Thread Virmones Pereira T. Miranda



Hi all ,i can configure MFC/R2 but i can´t send "*" 
and "#" digits using DTMF .
but others digits works well i receive and make 
calls. 

thks for you attentions 
in annex this my conf files 



zaptel.conf
Description: Binary data


unicall.conf
Description: Binary data
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [Asterisk-Users] MFC/R2 Mexico Unicall Blocked

2005-08-06 Thread Athiel E. Criollo Merino
Hi Ariel.

I having working a Asterisk server with a digital Telmex Line.  (10 Lines )

this are my files configurations  i hope this can help you

zaptel.conf
span=1,1,0,cas,hdb3
cas=1-15:1101
dchan=16
cas=17-31:1101
loadzone = us
defaultzone=us


unicall.conf
loglevel=255
protocolclass=mfcr2
protocolvariant=mx,20,4
protocolend=cpe
group = 1
context=incoming
channel = 1-15
channel = 17-31

Asterisk UC show channels
Channel Extension  Context Status Language   MusicOnHold
  1incomingIdle   es default
  2incomingIdle   es default
  3incomingIdle   es default
  4incomingIdle   es default
  5incomingIdle   es default
  6incomingIdle   es default
  7incomingIdle   es default
  8incomingIdle   es default
  9incomingIdle   es default
 10incomingIdle   es default
 11incomingBlockedes default
 12incomingBlockedes default
 13incomingBlockedes default





2005/8/3, Ariel Molina R. [EMAIL PROTECTED]:
 I've been trying to configure an E1 in Mexico using unicall, i went
 into vozdigital, googled this list, and finally followed this
 instructions:
 http://voip-info.org/tiki-index.php?page=Asterisk+MFC+R2
 
 I have 10 PSTN numbers and 10 lines assigned, so i only have 10
 channels assigned from my telco.
 
 However when i try to simulate a call using this call file:
 call file--
 Channel: UniCall/g1/1
 Callerid: 4772140099
 MaxRetries: 0
 RetryTime: 600
 WaitTime: 600
 Context: principal_in
 Extension: 014433988789
 Priority: 1
 --
 
 I get this messages
 --
 Aug  4 11:46:06 WARNING[9420]: chan_unicall.c:1240 unicall_call:
Make Call failed - Blocked
 Aug  4 11:46:06 NOTICE[9420]: channel.c:1827 __ast_request_and_dial:
Unable to request channel UniCall/g1/1
 -- Hungup 'UniCall/11-1'
 Aug  4 11:46:06 NOTICE[9420]: pbx_spool.c:229 attempt_thread:
Call failed to go through, reason 0
 --
 
 So i can see Unicall channels are configured but blocked (as UC show
 channel). There is not much info about unicall so i require your
 advice, what can i do? Where do i look?
 
 Also i constantly receive messages
 Aug  4 11:54:07 WARNING[9402]: chan_unicall.c:2865 handle_uc_event:
 Unicall/14 event Protocol failure
 
 for each one of the 30  (31?) channels.
 
 I send you my configs and important command outputs:
 
 My zaptel.conf
 ---
 # MFC/R2 does not normally use CRC4
 span=1,1,0,cas,hdb3
 cas=1-15:1101
 cas=17-31:1101
 loadzone=mx
 defaultzone=us
 ---
 
 My unicall.conf
 ---
 [channels]
 context=incoming
 usecallerid=yes
 hidecallerid=no
 callwaitingcallerid=yes
 threewaycalling=yes
 transfer=yes
 cancallforward=yes
 callreturn=yes
 echocancel=yes
 echocancelwhenbridged=yes
 echotraining=yes
 rxgain=0.0
 txgain=0.0
 group=1
 callgroup=1
 pickupgroup=1
 immediate=no
 musiconhold=default
 
 protocolclass=mfcr2
 protocolvariant=mx,10,10
 protocolend=cpe
 group = 1
 channel = 1-15
 channel = 17-31
 ---
 
 ztcfg -vv outputs
 ---
 SPAN 1: CAS/HDB3 Build-out: 0 db (CSU)/0-133 feet (DSX-1)
 
 Channel map:
 
 Channel 01: CAS / User (Default) (Slaves: 01)
 Channel 02: CAS / User (Default) (Slaves: 02)
 (...)
 Channel 30: CAS / User (Default) (Slaves: 30)
 Channel 31: CAS / User (Default) (Slaves: 31)
 
 30 channels configured.
 ---
 
 
 UC show channels says
 ---
 Channel Extension  Context Status Language   MusicOnHold
   1incomingBlocked   default
   2incomingBlocked   default
   3incomingBlocked   default
   4incomingBlocked   default
   5incomingBlocked   default
   6incomingBlocked   default
   7incomingBlocked   default
   8incomingBlocked   default
   9incomingBlocked   default
  10incomingBlocked   default
  11incomingIdle  default
  12incomingIdle  default
 (...)
  31incomingIdle  default
 
 
 ---
 @-@
 ___
 Asterisk-Users mailing list
 Asterisk-Users@lists.digium.com
 

Re: [Asterisk-Users] MFC/R2 Mexico Unicall Blocked

2005-08-05 Thread Ariel Molina Rueda
My E1 has 10 lines from my telco, 10 lines are blocked and 20 are idle. 
I guess those 10 blocked are my lines(channels). Also reading this:

http://voip-info.org/tiki-index.php?page=Asterisk+MFC+R2

i come to this lines:
...
cas=110-124:1101


The 4 characters after the colon in the cas statements define the idle 
patternfor the signalling bits. For China and Thailand you should use 
 instead of 1101. 1101 should be correct for all other countries 
using MFC/R2. This pattern puts the trunk in the blocked state, so when 
no application software is using the trunk it behaves in a sensible way.


(...)
You should get a green light. If you make calls into the E1 you
find the E1 is blocked. This is the correct state before asterisk is 
started.


I use 1101, that should be correct, and it should be correct to have 10 
lines blocked, 1 to 10. It is also correct that those 10 lines are 
blocked _before_ asterisk is started. But the problem is that asterisk 
says those lines are still blocked when i try to simulate a call.


Using libunicall-0.0.2's testcall executable i get this output, and as 
you can see initialli y have 10 blocked lines :-(, errors from line 11 
to 31 (i only have 10 lines) and then messages of local end unblocked! 
for each of the 31 lines.


./testcall
2005/08/06 07:45:02 MFC/R2  Chan   1: call control(8)
2005/08/06 07:45:02 MFC/R2  Chan   1: unblock
2005/08/06 07:45:02 MFC/R2  Chan   1: 1001  -  [1/4000/Idle 
  /Idle ]

2005/08/06 07:45:02 MFC/R2  Chan   2: call control(8)
2005/08/06 07:45:02 MFC/R2  Chan   2: unblock
2005/08/06 07:45:02 MFC/R2  Chan   2: 1001  -  [1/4000/Idle 
  /Idle ]

(...snip...)
2005/08/06 07:45:02 MFC/R2  Chan  30: call control(8)
2005/08/06 07:45:02 MFC/R2  Chan  30: unblock
2005/08/06 07:45:02 MFC/R2  Chan  30: 1001  -  [1/4000/Idle 
  /Idle ]

2005/08/06 07:45:02 MFC/R2  Chan  31: call control(8)
2005/08/06 07:45:02 MFC/R2  Chan  31: unblock
2005/08/06 07:45:02 MFC/R2  Chan  31: 1001  -  [1/4000/Idle 
  /Idle ]

Chan   1: -- Far end blocked! :-(
Chan   2: -- Far end blocked! :-(
Chan   3: -- Far end blocked! :-(
Chan   4: -- Far end blocked! :-(
Chan   5: -- Far end blocked! :-(
Chan   6: -- Far end blocked! :-(
Chan   7: -- Far end blocked! :-(
Chan   8: -- Far end blocked! :-(
Chan   9: -- Far end blocked! :-(
Chan  10: -- Far end blocked! :-(
Chan  11: -- Protocol failure on channel 0, cause (32773) Unexpected CAS 
bit pattern
Chan  12: -- Protocol failure on channel 0, cause (32773) Unexpected CAS 
bit pattern

(...snip...)
Chan  31: -- Protocol failure on channel 0, cause (32773) Unexpected CAS 
bit pattern

2005/08/06 07:45:02 MFC/R2  Chan   1: local_unblocking_expired
Chan   1: -- Local end unblocked! :-)
2005/08/06 07:45:02 MFC/R2  Chan   2: local_unblocking_expired
Chan   2: -- Local end unblocked! :-)
2005/08/06 07:45:02 MFC/R2  Chan   3: local_unblocking_expired
Chan   3: -- Local end unblocked! :-)
(...snip...)
2005/08/06 07:45:02 MFC/R2  Chan  30: local_unblocking_expired
Chan  30: -- Local end unblocked! :-)
2005/08/06 07:45:02 MFC/R2  Chan  31: local_unblocking_expired
Chan  31: -- Local end unblocked! :-)

Athiel E. Criollo Merino wrote:

Seems like your carrier is assigning you  channels from 11 and up to
make calls, why dont test making a definition for group 1 from lines
11 to 20...

Regards
In spanish.

Ariel, parece que Telmex te está asignando los timeslots 11 al 20 para
tus lineas.
por que no pruebas con tu grupo 1, asignandole solamente desde la
linea o timeslot 11 hasta el 20.

No se mucho sobre señalizacion, pero tiene algo de logica lo que te
estoy diciendo.

Suerte.

Athiel Criollo


2005/8/3, Ariel Molina R. [EMAIL PROTECTED]:

I've been trying to configure an E1 in Mexico using unicall, i went
into vozdigital, googled this list, and finally followed this
instructions:
http://voip-info.org/tiki-index.php?page=Asterisk+MFC+R2

I have 10 PSTN numbers and 10 lines assigned, so i only have 10
channels assigned from my telco.

However when i try to simulate a call using this call file:
call file--
Channel: UniCall/g1/1
Callerid: 4772140099
MaxRetries: 0
RetryTime: 600
WaitTime: 600
Context: principal_in
Extension: 014433988789
Priority: 1
--

I get this messages
--
Aug  4 11:46:06 WARNING[9420]: chan_unicall.c:1240 unicall_call:
   Make Call failed - Blocked
Aug  4 11:46:06 NOTICE[9420]: channel.c:1827 __ast_request_and_dial:
   Unable to request channel UniCall/g1/1
-- Hungup 'UniCall/11-1'
Aug  4 11:46:06 NOTICE[9420]: pbx_spool.c:229 attempt_thread:
   Call failed to go through, reason 0
--

So i can see Unicall channels are configured but blocked (as UC show
channel). There is not much info about unicall so i require your
advice, what can i do? Where do i look?

Also i constantly receive messages
Aug  4 11:54:07 WARNING[9402]: 

Re: [Asterisk-Users] MFC/R2 Mexico Unicall Blocked (almost solved!)

2005-08-05 Thread Ariel Molina Rueda

By reading the Introduction to MFC R2 Signaling here:
http://www.sunrisetelecom.com/technotes/TEC-GEN-2B-MFCR2.pdf

and setting my unicall.conf to this
(...)
protocolclass=mfcr2
protocolvariant=mx,10,1
protocolend=cpe
group = 1
channel = 1-10

i got my UC show channels show my 10 lines in state idle as it is 
supposed to be. Previously they were blocked.


then i have an issue with ANI and DNI digits, i have 10 numbers 
reachable from the PSTN: from 477214 to 4772140009. And 10 channels 
in my E1.


So is the protocolvariant=mx,10,1 correct or what do ANI, DNI exactly 
mean?


Or maybe it is an error in the .call file i use for testing:

.call file---
Channel: UniCall/g1/1
Callerid: 477214
MaxRetries: 0
RetryTime: 600
WaitTime: 600
Context: default
Extension: 014433052573   -- desired PSTN number to be called
Priority: 1
---

Because i get (almost) the same errors:


-- Attempting call on UniCall/g1/1 for [EMAIL PROTECTED]:1 (Retry 1)
Aug  6 08:15:52 WARNING[31993]: chan_unicall.c:1240 unicall_call: Make 
Call failed - Blocked
Aug  6 08:15:52 NOTICE[31993]: channel.c:1827 __ast_request_and_dial: 
Unable to request channel UniCall/g1/1

-- Hungup 'UniCall/1-1'
Aug  6 08:15:52 NOTICE[31993]: pbx_spool.c:229 attempt_thread: Call 
failed to go through, reason 0

-- Attempting call on UniCall/g1/1 for [EMAIL PROTECTED]:1 (Retry 1)
Aug  6 08:15:52 WARNING[31993]: chan_unicall.c:1240 unicall_call: Make 
Call failed - Blocked
Aug  6 08:15:52 NOTICE[31993]: channel.c:1827 __ast_request_and_dial: 
Unable to request channel UniCall/g1/1

-- Hungup 'UniCall/1-1'
Aug  6 08:15:52 NOTICE[31993]: pbx_spool.c:229 attempt_thread: Call 
failed to go through, reason 0

GtoSkyCentral*CLI



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


Re: [Asterisk-Users] MFC/R2 Mexico Unicall Blocked

2005-08-04 Thread Athiel E. Criollo Merino
Seems like your carrier is assigning you  channels from 11 and up to
make calls, why dont test making a definition for group 1 from lines
11 to 20...

Regards
In spanish.

Ariel, parece que Telmex te está asignando los timeslots 11 al 20 para
tus lineas.
por que no pruebas con tu grupo 1, asignandole solamente desde la
linea o timeslot 11 hasta el 20.

No se mucho sobre señalizacion, pero tiene algo de logica lo que te
estoy diciendo.

Suerte.

Athiel Criollo


2005/8/3, Ariel Molina R. [EMAIL PROTECTED]:
 I've been trying to configure an E1 in Mexico using unicall, i went
 into vozdigital, googled this list, and finally followed this
 instructions:
 http://voip-info.org/tiki-index.php?page=Asterisk+MFC+R2
 
 I have 10 PSTN numbers and 10 lines assigned, so i only have 10
 channels assigned from my telco.
 
 However when i try to simulate a call using this call file:
 call file--
 Channel: UniCall/g1/1
 Callerid: 4772140099
 MaxRetries: 0
 RetryTime: 600
 WaitTime: 600
 Context: principal_in
 Extension: 014433988789
 Priority: 1
 --
 
 I get this messages
 --
 Aug  4 11:46:06 WARNING[9420]: chan_unicall.c:1240 unicall_call:
Make Call failed - Blocked
 Aug  4 11:46:06 NOTICE[9420]: channel.c:1827 __ast_request_and_dial:
Unable to request channel UniCall/g1/1
 -- Hungup 'UniCall/11-1'
 Aug  4 11:46:06 NOTICE[9420]: pbx_spool.c:229 attempt_thread:
Call failed to go through, reason 0
 --
 
 So i can see Unicall channels are configured but blocked (as UC show
 channel). There is not much info about unicall so i require your
 advice, what can i do? Where do i look?
 
 Also i constantly receive messages
 Aug  4 11:54:07 WARNING[9402]: chan_unicall.c:2865 handle_uc_event:
 Unicall/14 event Protocol failure
 
 for each one of the 30  (31?) channels.
 
 I send you my configs and important command outputs:
 
 My zaptel.conf
 ---
 # MFC/R2 does not normally use CRC4
 span=1,1,0,cas,hdb3
 cas=1-15:1101
 cas=17-31:1101
 loadzone=mx
 defaultzone=us
 ---
 
 My unicall.conf
 ---
 [channels]
 context=incoming
 usecallerid=yes
 hidecallerid=no
 callwaitingcallerid=yes
 threewaycalling=yes
 transfer=yes
 cancallforward=yes
 callreturn=yes
 echocancel=yes
 echocancelwhenbridged=yes
 echotraining=yes
 rxgain=0.0
 txgain=0.0
 group=1
 callgroup=1
 pickupgroup=1
 immediate=no
 musiconhold=default
 
 protocolclass=mfcr2
 protocolvariant=mx,10,10
 protocolend=cpe
 group = 1
 channel = 1-15
 channel = 17-31
 ---
 
 ztcfg -vv outputs
 ---
 SPAN 1: CAS/HDB3 Build-out: 0 db (CSU)/0-133 feet (DSX-1)
 
 Channel map:
 
 Channel 01: CAS / User (Default) (Slaves: 01)
 Channel 02: CAS / User (Default) (Slaves: 02)
 (...)
 Channel 30: CAS / User (Default) (Slaves: 30)
 Channel 31: CAS / User (Default) (Slaves: 31)
 
 30 channels configured.
 ---
 
 
 UC show channels says
 ---
 Channel Extension  Context Status Language   MusicOnHold
   1incomingBlocked   default
   2incomingBlocked   default
   3incomingBlocked   default
   4incomingBlocked   default
   5incomingBlocked   default
   6incomingBlocked   default
   7incomingBlocked   default
   8incomingBlocked   default
   9incomingBlocked   default
  10incomingBlocked   default
  11incomingIdle  default
  12incomingIdle  default
 (...)
  31incomingIdle  default
 
 
 ---
 @-@
 ___
 Asterisk-Users mailing list
 Asterisk-Users@lists.digium.com
 http://lists.digium.com/mailman/listinfo/asterisk-users
 To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users

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


[Asterisk-Users] MFC/R2 Mexico Unicall Blocked

2005-08-03 Thread Ariel Molina R.
I've been trying to configure an E1 in Mexico using unicall, i went
into vozdigital, googled this list, and finally followed this
instructions:
http://voip-info.org/tiki-index.php?page=Asterisk+MFC+R2

I have 10 PSTN numbers and 10 lines assigned, so i only have 10
channels assigned from my telco.

However when i try to simulate a call using this call file:
call file--
Channel: UniCall/g1/1
Callerid: 4772140099
MaxRetries: 0
RetryTime: 600
WaitTime: 600
Context: principal_in
Extension: 014433988789
Priority: 1
--

I get this messages
--
Aug  4 11:46:06 WARNING[9420]: chan_unicall.c:1240 unicall_call:
   Make Call failed - Blocked
Aug  4 11:46:06 NOTICE[9420]: channel.c:1827 __ast_request_and_dial:
   Unable to request channel UniCall/g1/1
-- Hungup 'UniCall/11-1'
Aug  4 11:46:06 NOTICE[9420]: pbx_spool.c:229 attempt_thread:
   Call failed to go through, reason 0
--

So i can see Unicall channels are configured but blocked (as UC show
channel). There is not much info about unicall so i require your
advice, what can i do? Where do i look?

Also i constantly receive messages
Aug  4 11:54:07 WARNING[9402]: chan_unicall.c:2865 handle_uc_event:
Unicall/14 event Protocol failure

for each one of the 30  (31?) channels.

I send you my configs and important command outputs:

My zaptel.conf
---
# MFC/R2 does not normally use CRC4
span=1,1,0,cas,hdb3
cas=1-15:1101
cas=17-31:1101
loadzone=mx
defaultzone=us
---

My unicall.conf
---
[channels]
context=incoming
usecallerid=yes
hidecallerid=no
callwaitingcallerid=yes
threewaycalling=yes
transfer=yes
cancallforward=yes
callreturn=yes
echocancel=yes
echocancelwhenbridged=yes
echotraining=yes
rxgain=0.0
txgain=0.0
group=1
callgroup=1
pickupgroup=1
immediate=no
musiconhold=default

protocolclass=mfcr2
protocolvariant=mx,10,10
protocolend=cpe
group = 1
channel = 1-15
channel = 17-31
---

ztcfg -vv outputs
---
SPAN 1: CAS/HDB3 Build-out: 0 db (CSU)/0-133 feet (DSX-1)

Channel map:

Channel 01: CAS / User (Default) (Slaves: 01)
Channel 02: CAS / User (Default) (Slaves: 02)
(...)
Channel 30: CAS / User (Default) (Slaves: 30)
Channel 31: CAS / User (Default) (Slaves: 31)

30 channels configured.
---


UC show channels says
---
Channel Extension  Context Status Language   MusicOnHold
  1incomingBlocked   default
  2incomingBlocked   default
  3incomingBlocked   default
  4incomingBlocked   default
  5incomingBlocked   default
  6incomingBlocked   default
  7incomingBlocked   default
  8incomingBlocked   default
  9incomingBlocked   default
 10incomingBlocked   default
 11incomingIdle  default
 12incomingIdle  default
(...)
 31incomingIdle  default


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


[Asterisk-Users] MFC/R2

2005-08-01 Thread Virmones Pereira



i have a very problem , how to configure MFC/R2 
with asterisk, I'am install o module but while asterisk loaded is module is 
broken
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

RES: [Asterisk-Users] MFC R2 - Can this problem be solved??????????

2005-06-23 Thread j_amorim
Hello Steve, 

Wich will be the version I will need to install to solve this problem?? 

Is this version already finished 

Best Regards, 

Jônatas Amorim 
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [Asterisk-Users] MFC R2 - Can this problem be solved??????????

2005-06-23 Thread Matias G.
Take a look at the unicall.conf file, in the line with the 
protocolvariant=br,XX,YY be sure you're using the right amount of digits... 
XX should be the length of the ANI you're receiving and YY should be the 
length of the DNIS...


if it doesn't work please try a debug of the unicall (in unicall.conf - 
loglevel=1023)


hope this helps, please let me know if this solved the issue

bye,
M.
- Original Message - 
From: j_amorim [EMAIL PROTECTED]

To: asterisk-users@lists.digium.com
Cc: [EMAIL PROTECTED]
Sent: Tuesday, June 21, 2005 5:02 PM
Subject: [Asterisk-Users] MFC R2 - Can this problem be solved??



Ok Steve,

Wich will be the version I will need to install to solve this 
problem??



Best Regards,

OBS: I am really in Brazil and I am using a R2 E1 from Embratel( Telco
company here in Brazil).








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


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


[Asterisk-Users] MFC R2 - Can this be solved???

2005-06-21 Thread j_amorim
Hi, 

MFC R2 - UniCall implementation. 

The * is configured to send a 1101 Idle signal: 

zaptel.conf 


span=3,1,0,cas,hdb3 
# 
cas=9-23:1101 
cas=25-39:1101 


But is sending 1001 Idle signal 

Can anyone send me a tip?? 

Jun 20 19:06:56 WARNING[24118]: chan_unicall.c:704 unicall_report: MFC/R2 
UniCall/12 1001  -  [1/4000/Idle  /Idle ] 
Jun 20 19:06:56 WARNING[24118]: chan_unicall.c:704 unicall_report: MFC/R2 
UniCall/12  - 1011  [1/4000/Idle  /Idle ] 
Jun 20 19:06:56 WARNING[24118]: chan_unicall.c:704 unicall_report: MFC/R2 
UniCall/12 R2 prot. err. [1/4000/Idle  /Idle ] cause 
32773 
Jun 20 19:06:56 WARNING[24118]: chan_unicall.c:704 unicall_report: MFC/R2 
UniCall/12 1001  -  [1/4000/Idle  /Idle ] 
Jun 20 19:06:56 WARNING[24118]: chan_unicall.c:2865 handle_uc_event: 
Unicall/12 event Protocol failure 
-- Unicall/12 protocol error. Cause 32773 
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

[Asterisk-Users] MFC R2 - Can this problem be solved??????????

2005-06-21 Thread j_amorim
Hi, 

MFC R2 - UniCall implementation. 

The * is configured to send a 1101 Idle signal: 

zaptel.conf 


span=3,1,0,cas,hdb3 
# 
cas=9-23:1101 
cas=25-39:1101 


But is sending 1001 Idle signal 

Can anyone send me a tip?? 

Jun 20 19:06:56 WARNING[24118]: chan_unicall.c:704 unicall_report: MFC/R2 
UniCall/12 1001  -  [1/4000/Idle  /Idle ] 
Jun 20 19:06:56 WARNING[24118]: chan_unicall.c:704 unicall_report: MFC/R2 
UniCall/12  - 1011  [1/4000/Idle  /Idle ] 
Jun 20 19:06:56 WARNING[24118]: chan_unicall.c:704 unicall_report: MFC/R2 
UniCall/12 R2 prot. err. [1/4000/Idle  /Idle ] cause 
32773 
Jun 20 19:06:56 WARNING[24118]: chan_unicall.c:704 unicall_report: MFC/R2 
UniCall/12 1001  -  [1/4000/Idle  /Idle ] 
Jun 20 19:06:56 WARNING[24118]: chan_unicall.c:2865 handle_uc_event: 
Unicall/12 event Protocol failure 
-- Unicall/12 protocol error. Cause 32773 
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [Asterisk-Users] MFC R2 - Can this problem be solved??????????

2005-06-21 Thread Steve Underwood

j_amorim wrote:

Hi, 

MFC R2 - UniCall implementation. 

The * is configured to send a 1101 Idle signal: 

zaptel.conf 



span=3,1,0,cas,hdb3 
# 
cas=9-23:1101 
cas=25-39:1101



You seem to have configured 1101 as the blocking signal.



But is sending 1001 Idle signal 
 


1001 is the usual idle signal.

Can anyone send me a tip?? 

Jun 20 19:06:56 WARNING[24118]: chan_unicall.c:704 unicall_report: MFC/R2 
UniCall/12 1001  -  [1/4000/Idle  /Idle ] 
Jun 20 19:06:56 WARNING[24118]: chan_unicall.c:704 unicall_report: MFC/R2 
UniCall/12  - 1011  [1/4000/Idle  /Idle ] 
Jun 20 19:06:56 WARNING[24118]: chan_unicall.c:704 unicall_report: MFC/R2 
UniCall/12 R2 prot. err. [1/4000/Idle  /Idle ] cause 
32773 
Jun 20 19:06:56 WARNING[24118]: chan_unicall.c:704 unicall_report: MFC/R2 
UniCall/12 1001  -  [1/4000/Idle  /Idle ] 
Jun 20 19:06:56 WARNING[24118]: chan_unicall.c:2865 handle_uc_event: 
Unicall/12 event Protocol failure 
   -- Unicall/12 protocol error. Cause 32773 
 

The far ends seems to be acting like the China or Thailand protocols, 
but I guess from your email address you are in Brazil. A number of 
people use my R2 software Brazil, but this is the second time someone 
has reported this problem this week. Strange. I am currently changing 
the software to make it more flexible, and tolerate this kind of 
behaviour. It should be ready in a day or two.


Regards,
Steve

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


[Asterisk-Users] MFC R2 - Can this problem be solved??????????

2005-06-21 Thread j_amorim
Ok Steve, 

Wich will be the version I will need to install to solve this problem?? 


Best Regards, 

OBS: I am really in Brazil and I am using a R2 E1 from Embratel( Telco 
company here in Brazil). 
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [Asterisk-Users] MFC/R2

2005-06-17 Thread j_amorim
The libsupertone library installation happened because the libxml2 library 
was not installed. After it was installed the problem was solved. 

Now I am experiencing the problem following: 

Do you have any tip??? 

Thanks. 

[chan_unicall.so] = (Unified call processing (UniCall)) 
  == Parsing '/etc/asterisk/unicall.conf': Found 
Loading protocol mfcr2 
Country 5 
-- Registered channel 9, mfcr2 signalling 
Country 5 
-- Registered channel 10, mfcr2 signalling 
Country 5 
-- Registered channel 11, mfcr2 signalling 
Country 5 
-- Registered channel 12, mfcr2 signalling 
Country 5 
-- Registered channel 13, mfcr2 signalling 
Country 5 
-- Registered channel 14, mfcr2 signalling 
Country 5 
-- Registered channel 15, mfcr2 signalling 
Country 5 
-- Registered channel 16, mfcr2 signalling 
Country 5 
-- Registered channel 17, mfcr2 signalling 
Country 5 
-- Registered channel 18, mfcr2 signalling 
Country 5 
-- Registered channel 19, mfcr2 signalling 
Country 5 
-- Registered channel 20, mfcr2 signalling 
Country 5 
-- Registered channel 21, mfcr2 signalling 
Country 5 
-- Registered channel 22, mfcr2 signalling 
Country 5 
-- Registered channel 23, mfcr2 signalling 
Country 5 
-- Registered channel 25, mfcr2 signalling 
Country 5 
-- Registered channel 26, mfcr2 signalling 
Country 5 
-- Registered channel 27, mfcr2 signalling 
Country 5 
-- Registered channel 28, mfcr2 signalling 
Country 5 
-- Registered channel 29, mfcr2 signalling 
Country 5 
-- Registered channel 30, mfcr2 signalling 
Country 5 
-- Registered channel 31, mfcr2 signalling 
Country 5 
-- Registered channel 32, mfcr2 signalling 
Country 5 
-- Registered channel 33, mfcr2 signalling 
Country 5 
-- Registered channel 34, mfcr2 signalling 
Country 5 
-- Registered channel 35, mfcr2 signalling 
Country 5 
-- Registered channel 36, mfcr2 signalling 
Country 5 
-- Registered channel 37, mfcr2 signalling 
Country 5 
-- Registered channel 38, mfcr2 signalling 
Country 5 
-- Registered channel 39, mfcr2 signalling 
Country 5 
-- Registered channel 40, mfcr2 signalling 
Country 5 
-- Registered channel 41, mfcr2 signalling 
Country 5 
-- Registered channel 42, mfcr2 signalling 
Country 5 
-- Registered channel 43, mfcr2 signalling 
Country 5 
-- Registered channel 44, mfcr2 signalling 
Country 5 
-- Registered channel 45, mfcr2 signalling 
Country 5 
-- Registered channel 46, mfcr2 signalling 
Country 5 
-- Registered channel 47, mfcr2 signalling 
Country 5 
-- Registered channel 48, mfcr2 signalling 
Country 5 
-- Registered channel 49, mfcr2 signalling 
Country 5 
-- Registered channel 50, mfcr2 signalling 
Country 5 
-- Registered channel 51, mfcr2 signalling 
Country 5 
-- Registered channel 52, mfcr2 signalling 
Country 5 
-- Registered channel 53, mfcr2 signalling 
Country 5 
-- Registered channel 54, mfcr2 signalling 
Country 5 
-- Registered channel 56, mfcr2 signalling 
Country 5 
-- Registered channel 57, mfcr2 signalling 
Country 5 
-- Registered channel 58, mfcr2 signalling 
Country 5 
-- Registered channel 59, mfcr2 signalling 
Country 5 
-- Registered channel 60, mfcr2 signalling 
Country 5 
-- Registered channel 61, mfcr2 signalling 
Country 5 
-- Registered channel 62, mfcr2 signalling 
Country 5 
-- Registered channel 63, mfcr2 signalling 
Country 5 
-- Registered channel 64, mfcr2 signalling 
Country 5 
-- Registered channel 65, mfcr2 signalling 
Country 5 
-- Registered channel 66, mfcr2 signalling 
Country 5 
-- Registered channel 67, mfcr2 signalling 
Country 5 
-- Registered channel 68, mfcr2 signalling 
Country 5 
-- Registered channel 69, mfcr2 signalling 
Country 5 
-- Registered channel 70, mfcr2 signalling 
Parsing tone set 
Hit dial-tone 
Step - Frequency=350.00+440.00 [1.00%]Level=-13.00+-13.00 Recognition 
length=0.30 [10.00%] 
Detector element350440300  0 
Hit dial-tone 
Step - Cycles=3 
Step - Frequency=350.00+440.00 [1.00%]Level=-13.00+-13.00Length=0.10 
[10.00%] 
Detector element350440 60140 
Step - Length=0.10 [10.00%] 
Detector element  0  0 60140 
Step - Frequency=350.00+440.00 [1.00%]Level=-13.00+-13.00 Recognition 
length=0.30 [10.00%] 
Detector element350440300  0 
Hit ringback-tone 
Step - Cycles=0 
Step - Frequency=440.00+480.00 [1.00%]Level=-13.00+-13.00Length=0.40 
[10.00%] 
Detector element440480330470 
Step - Length=0.20 [10.00%] 
Detector element  0  0150250 
Step - Frequency=440.00+480.00 [1.00%]Level=-13.00+-13.00Length=0.40 
[10.00%] 
Detector element440480330470 
Step - Length=3.00 [10.00%] Recognition length=0.60 [10.00%] 
Detector element  

[Asterisk-Users] MFC/R2

2005-06-16 Thread j_amorim
Hello guys, 

I am having problems to installing libsupertone library. 

The ./configure --prefix=/usr does not create the Makefile. 

Any tip? 
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users

Re: [Asterisk-Users] MFC/R2

2005-06-16 Thread Steve Underwood

j_amorim wrote:

Hello guys, 

I am having problems to installing libsupertone library. 

The ./configure --prefix=/usr does not create the Makefile. 

Any tip? 
 

It has worked for everyone else. Lots of people have successfully 
employed this library.

Steve

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


[Asterisk-Users] MFC/R2 in the Philippines

2005-03-31 Thread Dido Sevilla
I've been struggling with getting the soft-switch.org Unicall/MFC-R2
implementation working. After wading through some misleading
instructions and a build process that leaves much to be desired in
terms of reliability and consistency (e.g., the order in which the
various libraries should be compiled is plain wrong: I believe it
should be spandsp, supertone, unicall, and mfcr2 in that order) , I've
finally managed to get a working chan_unicall.so module used by
Asterisk.  From searching through the mailing list archives, I see
that I seem to have gone a good deal of the way, up to the point where
I see the warnings about channels being unblocked on the near and
far ends when * starts. However, when I attempt to initiate an
outbound call with Asterisk, it suddenly fails with what I gather is a
congestion error. no one is available to answer at this time.

I am quite certain it is not a problem with the E1R2 we are using, as
it had previously been in use on a Nortel PBX and was working fine
there. I'm trying to use the Philippine R2 variant.

Does anyone have a sample configuration that works for the
Philippines? Any help on this is much appreciated.
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] MFC/R2 in the Philippines

2005-03-31 Thread Steve Underwood
Dido Sevilla wrote:
I've been struggling with getting the soft-switch.org Unicall/MFC-R2
implementation working. After wading through some misleading
instructions and a build process that leaves much to be desired in
terms of reliability and consistency (e.g., the order in which the
various libraries should be compiled is plain wrong: I believe it
should be spandsp, supertone, unicall, and mfcr2 in that order) , I've
finally managed to get a working chan_unicall.so module used by
Asterisk.  From searching through the mailing list archives, I see
that I seem to have gone a good deal of the way, up to the point where
I see the warnings about channels being unblocked on the near and
far ends when * starts. However, when I attempt to initiate an
outbound call with Asterisk, it suddenly fails with what I gather is a
congestion error. no one is available to answer at this time.
I am quite certain it is not a problem with the E1R2 we are using, as
it had previously been in use on a Nortel PBX and was working fine
there. I'm trying to use the Philippine R2 variant.
Does anyone have a sample configuration that works for the
Philippines? Any help on this is much appreciated.
 

You attitude in this message has just ensured you that if you have any 
problems you are entirely on your own.

Bye bye
Steve
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


[Asterisk-Users] MFC/R2 0.0.2 problems

2005-01-04 Thread Guillermo Freige
Steve:
I've problems with the new stack with outgoing calls and I need to revert to 
the 0.0.1d. Under heavy load, some times one outgoing channel appears as 
idle, but when I try to make a call, it returns a busy status, and keeps 
the idle state, so  the next try also is made in the same channel, and 
fails, so the overall result is the inhability to make further calls. The 
cycle is very short, around 0.1 sec. I've tried to switch from Unicall/g1 
(lowest channel idle) to Unicall/r1 (round-robin) but it seems it's only 
supported in Zap channels. This is true?

This is the log (Using UniCall/5-1):
Jan  3 16:38:45 VERBOSE[14700]: -- Executing 
.[1;36;40mWait.[0;37;40m(.[1;35;40mUniCall/44-1.[0;37;40m, .[1;35Jan  3 
16:38:45 VERBOSE[14702]: -- Executing 
.[1;36;40mGoto.[0;37;40m(.[1;35;40mUniCall/43-1.[0;37;40m, .[1;35Jan  3 
16:38:45 VERBOSE[14702]: -- Goto (operador,s,12)
Jan  3 16:38:45 VERBOSE[14702]: -- Executing 
.[1;36;40mDial.[0;37;40m(.[1;35;40mUniCall/43-1.[0;37;40m, .[1;35Jan  3 
16:38:45 WARNING[14702]: unicall_call called - 'g1/7200'
Jan  3 16:38:45 WARNING[14702]: Make Call() failed
Jan  3 16:38:45 VERBOSE[14702]: -- Couldn't call g1/7200
Jan  3 16:38:45 WARNING[14702]: unicall_hangup(UniCall/5-1)
Jan  3 16:38:45 VERBOSE[14702]: -- Hungup 'UniCall/5-1'
Jan  3 16:38:45 VERBOSE[14702]:   == Everyone is busy/congested at this time
Jan  3 16:38:45 VERBOSE[14702]: -- Executing 
.[1;36;40mWait.[0;37;40m(.[1;35;40mUniCall/43-1.[0;37;40m, .[1;35Jan  3 
16:38:45 WARNING[14326]: UC event Detected
Jan  3 16:38:45 VERBOSE[14733]: -- Executing 
.[1;36;40mGoto.[0;37;40m(.[1;35;40mUniCall/33-1.[0;37;40m, .[1;35Jan  3 
16:38:45 VERBOSE[14733]: -- Goto (operadorib,s,12)
Jan  3 16:38:45 VERBOSE[14733]: -- Executing 
.[1;36;40mDial.[0;37;40m(.[1;35;40mUniCall/33-1.[0;37;40m, .[1;35Jan  3 
16:38:45 WARNING[14733]: unicall_call called - 'g1/7530'
Jan  3 16:38:45 WARNING[14733]: Make Call() failed
Jan  3 16:38:45 VERBOSE[14733]: -- Couldn't call g1/7530
Jan  3 16:38:45 WARNING[14733]: unicall_hangup(UniCall/5-1)
Jan  3 16:38:45 VERBOSE[14733]: -- Hungup 'UniCall/5-1'
Jan  3 16:38:45 VERBOSE[14733]:   == Everyone is busy/congested at this time
Jan  3 16:38:45 VERBOSE[14733]: -- Executing 
.[1;36;40mWait.[0;37;40m(.[1;35;40mUniCall/33-1.[0;37;40m, .[1;35Jan  3 
16:38:45 VERBOSE[14738]: -- Executing 
.[1;36;40mGoto.[0;37;40m(.[1;35;40mUniCall/46-1.[0;37;40m, .[1;35Jan  3 
16:38:45 VERBOSE[14738]: -- Goto (operadorib,s,12)
Jan  3 16:38:45 VERBOSE[14738]: -- Executing 
.[1;36;40mDial.[0;37;40m(.[1;35;40mUniCall/46-1.[0;37;40m, .[1;35Jan  3 
16:38:45 WARNING[14738]: unicall_call called - 'g1/7530'
Jan  3 16:38:45 WARNING[14738]: Make Call() failed
Jan  3 16:38:45 VERBOSE[14738]: -- Couldn't call g1/7530
Jan  3 16:38:45 WARNING[14738]: unicall_hangup(UniCall/5-1)
Jan  3 16:38:45 VERBOSE[14738]: -- Hungup 'UniCall/5-1'
Jan  3 16:38:45 VERBOSE[14738]:   == Everyone is busy/congested at this time
Jan  3 16:38:45 VERBOSE[14738]: -- Executing 
.[1;36;40mWait.[0;37;40m(.[1;35;40mUniCall/46-1.[0;37;40m, .[1;35Jan  3 
16:38:45 VERBOSE[14743]: -- Executing 
.[1;36;40mGoto.[0;37;40m(.[1;35;40mUniCall/49-1.[0;37;40m, .[1;35Jan  3 
16:38:45 VERBOSE[14743]: -- Goto (operadorib,s,12)
Jan  3 16:38:45 VERBOSE[14743]: -- Executing 
.[1;36;40mDial.[0;37;40m(.[1;35;40mUniCall/49-1.[0;37;40m, .[1;35Jan  3 
16:38:45 WARNING[14743]: unicall_call called - 'g1/7530'
Jan  3 16:38:45 WARNING[14743]: Make Call() failed
Jan  3 16:38:45 VERBOSE[14743]: -- Couldn't call g1/7530
Jan  3 16:38:45 WARNING[14743]: unicall_hangup(UniCall/5-1)
Jan  3 16:38:45 VERBOSE[14743]: -- Hungup 'UniCall/5-1'


From: Steve Underwood [EMAIL PROTECTED]
Reply-To: Asterisk Users Mailing List - Non-Commercial Discussion 
asterisk-users@lists.digium.com
To: Asterisk Users Mailing List - Non-Commercial Discussion 
asterisk-users@lists.digium.com
Subject: [Asterisk-Users] MFC/R2
Date: Sun, 02 Jan 2005 22:03:49 +0800
MIME-Version: 1.0
Received: from lists.digium.com ([69.16.138.164]) by mc5-f30.hotmail.com 
with Microsoft SMTPSVC(6.0.3790.211); Sun, 2 Jan 2005 06:09:34 -0800
Received: from [69.16.138.164] (localhost [127.0.0.1])by lists.digium.com 
(Postfix) with ESMTPid 8A3832FDE46; Sun,  2 Jan 2005 08:07:13 -0600 (CST)
Received: from psmtp.com (exprod5mx31.postini.com [64.18.0.186])by 
lists.digium.com (Postfix) with SMTP id 2EF872FD6ABfor 
asterisk-users@lists.digium.com;Sun,  2 Jan 2005 08:07:10 -0600 (CST)
Received: from source ([202.76.92.172]) (using TLSv1) 
byexprod5mx31.postini.com ([64.18.4.10]) with SMTP; Sun, 02 Jan 2005 
06:07:10 PST
Received: from [192.168.2.50] ([192.168.2.50]) (authenticated bits=0)by 
main.coppice.org (8.12.11/8.12.8) with ESMTP id j02E3nHQ002538for 
asterisk-users@lists.digium.com; Sun, 2 Jan 2005 22:03:50 +0800
X-Message-Info: 820stLNiepT3P2twmoyNuB8sIvs+OSsfSi3zpTb/s/g=
X-Original-To: asterisk-users@lists.digium.com
Delivered-To: asterisk-users

[Asterisk-Users] MFC/R2

2005-01-02 Thread Steve Underwood
Hi all,
Some people are successfully using my MFC/R2 support for *, while a 
couple have reported that outgoing calls foul up, and they hear strange 
noises. unicall-0.0.2pre1 should fix this problem. You will need to 
replace all the unicall code, as the APIs between the libraries have 
changed. This means replacing chan_unicall.c in *, libunicall, and 
libmfcr2, and adding the new library libsupertone. They may be 
downloaded from ftp://ftp.opencall.org/pub/unicall

Regards,
Steve
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] MFC/R2 errors

2004-12-22 Thread telmo
Hello, 

Just out of curiosity, what E1 card are you using in Asterisk?

Best Regards,
-- 
   Telmo

On Mon Dec 20  8:19 , 'Guillermo Freige' [EMAIL PROTECTED] sent:

MFCR2 is hanging under heavy load in my configuration. It always segfaults 
in the same point. This is the coredump debug.
During segfaults, the call structure points to an invalid area.

(gdb) list
584 uc_log(uc, UC_LOG_FLOW, Far end disconnected - state 0x%X\n,
call-state);
585
586 /* Don't stop the tone detector here. */
587
588 if (call-chan = 0)
589 uc-chan[call-chan].state = UC_STATE_FAR_DISCONNECTED;
590 /*endif*/
591 call-state = UC_STATE_FAR_DISCONNECTED;
592
593 ev.fardisconnected.e = UC_EVENT_FARDISCONNECTED;
(gdb) bt
#0  0x4081c81d in start_far_disconnected (uc=0x8128058, call=0x81dd1f0) at
mfcr2.c:589
#1  0x405c91ad in uc_schedule_run (uc=0x8128058) at simplesched.c:124
#2  0x405b3378 in unicall_read (ast=0x40c05590) at chan_unicall.c:2081
#3  0x0805c26d in ast_read (chan=0x40c05590) at channel.c:1304
#4  0x405b8901 in unicall_bridge (c0=0x8202350, c1=0x40c05590, flags=0,
fo=0xbb5faaa4, rc=0xbb5faaa8)
at chan_unicall.c:1794
#5  0x0805fe16 in ast_channel_bridge (c0=0x8202350, c1=0x40c05590,
config=0xbb5fb334, fo=0xbb5faaa4, rc=0xbb5faaa8)
at channel.c:2611
#6  0x4038e775 in ast_bridge_call (chan=0x8202350, peer=0x40c05590,
config=0xbb5fb334) at res_features.c:348
#7  0x40892b24 in dial_exec (chan=0x8202350, data=0x50) at app_dial.c:1006
#8  0x0807476f in pbx_exec (c=0x8202350, app=0x40905e08, data=0xbb5fd864,
newstack=1) at pbx.c:469
#9  0x0807c803 in pbx_extension_helper (c=0x8202350, context=0x82024a8
operador, exten=0x820259c s, priority=11,
callerid=0x0, action=135093791) at pbx.c:1277
#10 0x080767d8 in ast_pbx_run (c=0x8202350) at pbx.c:1758
#11 0x0807ce31 in pbx_thread (data=0xc0436a10) at pbx.c:1981
#12 0x40024e51 in pthread_start_thread () from /lib/libpthread.so.0
#13 0x401ec6ca in clone () from /lib/libc.so.6

Also I'm having trouble with the MFC dialog. Under load, I have a lot of T1 
and T2 timeouts, mostly because I never hear the Rx off event in outgoing 
calls in the 3rd digit of a group of 4, and it generates a Protocol Error. 
After that the line keeps a Call flag rendering it unusable for further 
calls. When the number of blocked lines or the load makes the outgoing lines 
reach the incoming lines, so the same line is used for both incoming and 
outgoing calls, asterisk blocks the line and enters in a CPU intensive loop, 
locking the line.

Guillermo

_
MSN Amor: busca tu � naranja http://latam.msn.com/amor/

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



 
SeeqMail - the only email you'll ever need Starts Here
Sign up for FREE personalized email today: http://www.seeqmail.com

http://www.Grassroots.org/ - Make Change!
 
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] MFC/R2 errors

2004-12-20 Thread Steve Underwood
Hi Sam,
You can ignore that. Its just debug. The next version will make it 
configurable.

Steve
Sam Njenga wrote:
Hi all
I have MFCR2 successfully installed but seems to get warnings a s seen 
below when I start asterisk. Am running on Redhat 9.
 
Asterisk Ready.
*CLI Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 
unicall_error: UniCall: mfcr2 far_unblocking_expired
Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error: 
UniCall: mfcr2 local_unblocking_expired
Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error: 
UniCall: mfcr2 far_unblocking_expired
Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error: 
UniCall: mfcr2 local_unblocking_expired
Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error: 
UniCall: mfcr2 far_unblocking_expired
Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error: 
UniCall: mfcr2 local_unblocking_expired
Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error: 
UniCall: mfcr2 far_unblocking_expired
Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error: 
UniCall: mfcr2 local_unblocking_expired
Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error: 
UniCall: mfcr2 far_unblocking_expired
Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error: 
UniCall: mfcr2 local_unblocking_expired
Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error: 
UniCall: mfcr2 far_unblocking_expired
Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error: 
UniCall: mfcr2 local_unblocking_expired
Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error: 
UniCall: mfcr2 far_unblocking_expired
Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error: 
UniCall: mfcr2 local_unblocking_expired
Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error: 
UniCall: mfcr2 far_unblocking_expired
Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error: 
UniCall: mfcr2 local_unblocking_expired
Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error: 
UniCall: mfcr2 far_unblocking_expired
and so on
 
-- UC channel 1 far unblocked
Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:2548 
handle_uc_event: UC event Local end unblocked
-- UC channel 1 local unblocked
Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:2548 
handle_uc_event: UC event Far end unblocked
-- UC channel 2 far unblocked
Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:2548 
handle_uc_event: UC event Local end unblocked
-- UC channel 2 local unblocked
Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:2548 
handle_uc_event: UC event Far end unblocked
-- UC channel 3 far unblocked
Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:2548 
handle_uc_event: UC event Local end unblocked
-- UC channel 3 local unblocked
Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:2548 
handle_uc_event: UC event Far end unblocked
-- UC channel 4 far unblocked
Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:2548 
handle_uc_event: UC event Local end unblocked
-- UC channel 4 local unblocked
Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:2548 
handle_uc_event: UC event Far end unblocked
-- UC channel 5 far unblocked
Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:2548 
handle_uc_event: UC event Local end unblocked
-- UC channel 5 local unblocked
 


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


Re: [Asterisk-Users] MFC/R2 errors

2004-12-20 Thread Sam Njenga
Thanks Steve,
I still haven't had any success with it even after ignoring those warnings.
Does any one have a working one ? If so can he send me working samples of
zapata.conf
unicall.conf
extensions.conf
Am using Argentina valiant of R2


- Original Message - 
From: Steve Underwood [EMAIL PROTECTED]
To: Asterisk Users Mailing List - Non-Commercial Discussion
asterisk-users@lists.digium.com
Sent: Monday, December 20, 2004 4:33 PM
Subject: Re: [Asterisk-Users] MFC/R2 errors


 Hi Sam,

 You can ignore that. Its just debug. The next version will make it
 configurable.

 Steve


 Sam Njenga wrote:

  Hi all
  I have MFCR2 successfully installed but seems to get warnings a s seen
  below when I start asterisk. Am running on Redhat 9.
 
  Asterisk Ready.
  *CLI Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:634
  unicall_error: UniCall: mfcr2 far_unblocking_expired
  Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error:
  UniCall: mfcr2 local_unblocking_expired
  Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error:
  UniCall: mfcr2 far_unblocking_expired
  Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error:
  UniCall: mfcr2 local_unblocking_expired
  Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error:
  UniCall: mfcr2 far_unblocking_expired
  Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error:
  UniCall: mfcr2 local_unblocking_expired
  Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error:
  UniCall: mfcr2 far_unblocking_expired
  Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error:
  UniCall: mfcr2 local_unblocking_expired
  Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error:
  UniCall: mfcr2 far_unblocking_expired
  Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error:
  UniCall: mfcr2 local_unblocking_expired
  Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error:
  UniCall: mfcr2 far_unblocking_expired
  Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error:
  UniCall: mfcr2 local_unblocking_expired
  Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error:
  UniCall: mfcr2 far_unblocking_expired
  Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error:
  UniCall: mfcr2 local_unblocking_expired
  Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error:
  UniCall: mfcr2 far_unblocking_expired
  Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error:
  UniCall: mfcr2 local_unblocking_expired
  Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error:
  UniCall: mfcr2 far_unblocking_expired
  and so on
 
  -- UC channel 1 far unblocked
  Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:2548
  handle_uc_event: UC event Local end unblocked
  -- UC channel 1 local unblocked
  Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:2548
  handle_uc_event: UC event Far end unblocked
  -- UC channel 2 far unblocked
  Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:2548
  handle_uc_event: UC event Local end unblocked
  -- UC channel 2 local unblocked
  Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:2548
  handle_uc_event: UC event Far end unblocked
  -- UC channel 3 far unblocked
  Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:2548
  handle_uc_event: UC event Local end unblocked
  -- UC channel 3 local unblocked
  Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:2548
  handle_uc_event: UC event Far end unblocked
  -- UC channel 4 far unblocked
  Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:2548
  handle_uc_event: UC event Local end unblocked
  -- UC channel 4 local unblocked
  Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:2548
  handle_uc_event: UC event Far end unblocked
  -- UC channel 5 far unblocked
  Dec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:2548
  handle_uc_event: UC event Local end unblocked
  -- UC channel 5 local unblocked
 
 
 
 
 ___
 Asterisk-Users mailing list
 Asterisk-Users@lists.digium.com
 http://lists.digium.com/mailman/listinfo/asterisk-users
 To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/asterisk-users
 

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


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


Re: [Asterisk-Users] MFC/R2 errors

2004-12-20 Thread Steve Underwood
Hi Sam,
So what happens? Your logs shows a perfectly normal startup. The E1 
should then be waiting for an outgoing or incoming call attempt. You 
should see *something* happen in the log.

The example configuration information in the install instructions should 
be OK to get you started. extensions.conf just needs to send calls to 
trunk names like UniCall/1 for circuit number 1.

Regards,
Steve
Sam Njenga wrote:
Thanks Steve,
I still haven't had any success with it even after ignoring those warnings.
Does any one have a working one ? If so can he send me working samples of
zapata.conf
unicall.conf
extensions.conf
Am using Argentina valiant of R2
 

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


[Asterisk-Users] MFC/R2 errors

2004-12-20 Thread Guillermo Freige
MFCR2 is hanging under heavy load in my configuration. It always segfaults 
in the same point. This is the coredump debug.
During segfaults, the call structure points to an invalid area.

(gdb) list
584 uc_log(uc, UC_LOG_FLOW, Far end disconnected - state 0x%X\n,
call-state);
585
586 /* Don't stop the tone detector here. */
587
588 if (call-chan = 0)
589 uc-chan[call-chan].state = UC_STATE_FAR_DISCONNECTED;
590 /*endif*/
591 call-state = UC_STATE_FAR_DISCONNECTED;
592
593 ev.fardisconnected.e = UC_EVENT_FARDISCONNECTED;
(gdb) bt
#0  0x4081c81d in start_far_disconnected (uc=0x8128058, call=0x81dd1f0) at
mfcr2.c:589
#1  0x405c91ad in uc_schedule_run (uc=0x8128058) at simplesched.c:124
#2  0x405b3378 in unicall_read (ast=0x40c05590) at chan_unicall.c:2081
#3  0x0805c26d in ast_read (chan=0x40c05590) at channel.c:1304
#4  0x405b8901 in unicall_bridge (c0=0x8202350, c1=0x40c05590, flags=0,
fo=0xbb5faaa4, rc=0xbb5faaa8)
   at chan_unicall.c:1794
#5  0x0805fe16 in ast_channel_bridge (c0=0x8202350, c1=0x40c05590,
config=0xbb5fb334, fo=0xbb5faaa4, rc=0xbb5faaa8)
   at channel.c:2611
#6  0x4038e775 in ast_bridge_call (chan=0x8202350, peer=0x40c05590,
config=0xbb5fb334) at res_features.c:348
#7  0x40892b24 in dial_exec (chan=0x8202350, data=0x50) at app_dial.c:1006
#8  0x0807476f in pbx_exec (c=0x8202350, app=0x40905e08, data=0xbb5fd864,
newstack=1) at pbx.c:469
#9  0x0807c803 in pbx_extension_helper (c=0x8202350, context=0x82024a8
operador, exten=0x820259c s, priority=11,
   callerid=0x0, action=135093791) at pbx.c:1277
#10 0x080767d8 in ast_pbx_run (c=0x8202350) at pbx.c:1758
#11 0x0807ce31 in pbx_thread (data=0xc0436a10) at pbx.c:1981
#12 0x40024e51 in pthread_start_thread () from /lib/libpthread.so.0
#13 0x401ec6ca in clone () from /lib/libc.so.6
Also I'm having trouble with the MFC dialog. Under load, I have a lot of T1 
and T2 timeouts, mostly because I never hear the Rx off event in outgoing 
calls in the 3rd digit of a group of 4, and it generates a Protocol Error. 
After that the line keeps a Call flag rendering it unusable for further 
calls. When the number of blocked lines or the load makes the outgoing lines 
reach the incoming lines, so the same line is used for both incoming and 
outgoing calls, asterisk blocks the line and enters in a CPU intensive loop, 
locking the line.

Guillermo
_
MSN Amor: busca tu ½ naranja http://latam.msn.com/amor/
___
Asterisk-Users mailing list
Asterisk-Users@lists.digium.com
http://lists.digium.com/mailman/listinfo/asterisk-users
To UNSUBSCRIBE or update options visit:
  http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [Asterisk-Users] MFC/R2 errors

2004-12-20 Thread Sam Njenga
I can now see and accept incoming calls from MFR2. Thanks again. Am only
having a codec with my test software but that I will solve. (hopefully) But
outgoing calls have a problem. Here is my current (basic) extensions.conf

[general]
static=yes
writeprotect=no

[globals]
CONSOLE=Console/dsp ; Console interface for
TRUNK=UniCall/1; Trunk interface

[local]
include = default

[default]
exten = _.,1,Dial(UniCall/1/${EXTEN}



Problem is I can't dial out. Is that extensions file correct ?
Here is my error


*CLI Dec 20 20:08:05 WARNING[1160397504]: pbx.c:1279 pbx_extension_helper:
No application 'Dial(UniCall/1/{EXTEN}' for extension (default, 24, 1)
  == Spawn extension (default, 24, 1) exited non-zero on
'H323/ip$X.X.X:4396/18867'
Dec 20 20:08:05 WARNING[1160397504]: pbx.c:1279 pbx_extension_helper: No
application 'Dial(UniCall/1/{EXTEN}' for extension (default, h, 1)
  == Spawn extension (default, h, 1) exited non-zero on
'H323/ip$X.X.X.X:4396/18867'


As for the incoming here is the error that makes me rule that its a codec
issue. (Correct if am wrong )

Dec 20 20:15:56 WARNING[1149912000]: chan_unicall.c:2548 handle_uc_event: UC
event Answered
Detected dry run!


Dec 20 20:15:57 WARNING[1160397504]: chan_unicall.c:634 unicall_error:
UniCall: mfcr2 Call disconnected - state 0x800
-- Hungup 'UniCall/23-1'
Res is þ¿
Silent Level is
Pre-res is þ¿

I have prompts just for tests on asterisk and the amazing thing is that when
I connect through ip directly I don't get any errors and I can hear the
prompts
/Sam






- Original Message - 
From: Steve Underwood [EMAIL PROTECTED]
To: Asterisk Users Mailing List - Non-Commercial Discussion
asterisk-users@lists.digium.com
Sent: Monday, December 20, 2004 5:59 PM
Subject: Re: [Asterisk-Users] MFC/R2 errors


 Hi Sam,

 So what happens? Your logs shows a perfectly normal startup. The E1
 should then be waiting for an outgoing or incoming call attempt. You
 should see *something* happen in the log.

 The example configuration information in the install instructions should
 be OK to get you started. extensions.conf just needs to send calls to
 trunk names like UniCall/1 for circuit number 1.

 Regards,
 Steve


 Sam Njenga wrote:

 Thanks Steve,
 I still haven't had any success with it even after ignoring those
warnings.
 Does any one have a working one ? If so can he send me working samples of
 zapata.conf
 unicall.conf
 extensions.conf
 Am using Argentina valiant of R2
 
 

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


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


[Asterisk-Users] MFC/R2 errors

2004-12-19 Thread Sam Njenga



Hi all
I have MFCR2 successfully 
installed but seems to get warnings a s seen below when I start asterisk. Am 
running on Redhat 9.

Asterisk Ready.*CLI Dec 20 
08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error: UniCall: mfcr2 
far_unblocking_expiredDec 20 08:40:38 WARNING[1175077440]: 
chan_unicall.c:634 unicall_error: UniCall: mfcr2 local_unblocking_expiredDec 
20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error: UniCall: 
mfcr2 far_unblocking_expiredDec 20 08:40:38 WARNING[1175077440]: 
chan_unicall.c:634 unicall_error: UniCall: mfcr2 local_unblocking_expiredDec 
20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error: UniCall: 
mfcr2 far_unblocking_expiredDec 20 08:40:38 WARNING[1175077440]: 
chan_unicall.c:634 unicall_error: UniCall: mfcr2 local_unblocking_expiredDec 
20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error: UniCall: 
mfcr2 far_unblocking_expiredDec 20 08:40:38 WARNING[1175077440]: 
chan_unicall.c:634 unicall_error: UniCall: mfcr2 local_unblocking_expiredDec 
20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error: UniCall: 
mfcr2 far_unblocking_expiredDec 20 08:40:38 WARNING[1175077440]: 
chan_unicall.c:634 unicall_error: UniCall: mfcr2 local_unblocking_expiredDec 
20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error: UniCall: 
mfcr2 far_unblocking_expiredDec 20 08:40:38 WARNING[1175077440]: 
chan_unicall.c:634 unicall_error: UniCall: mfcr2 local_unblocking_expiredDec 
20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error: UniCall: 
mfcr2 far_unblocking_expiredDec 20 08:40:38 WARNING[1175077440]: 
chan_unicall.c:634 unicall_error: UniCall: mfcr2 local_unblocking_expiredDec 
20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error: UniCall: 
mfcr2 far_unblocking_expiredDec 20 08:40:38 WARNING[1175077440]: 
chan_unicall.c:634 unicall_error: UniCall: mfcr2 local_unblocking_expiredDec 
20 08:40:38 WARNING[1175077440]: chan_unicall.c:634 unicall_error: UniCall: 
mfcr2 far_unblocking_expired
and so on

 -- UC channel 1 
far unblockedDec 20 08:40:38 WARNING[1175077440]: chan_unicall.c:2548 
handle_uc_event: UC event Local end unblocked -- UC 
channel 1 local unblockedDec 20 08:40:38 WARNING[1175077440]: 
chan_unicall.c:2548 handle_uc_event: UC event Far end 
unblocked -- UC channel 2 far unblockedDec 20 08:40:38 
WARNING[1175077440]: chan_unicall.c:2548 handle_uc_event: UC event Local end 
unblocked -- UC channel 2 local unblockedDec 20 
08:40:38 WARNING[1175077440]: chan_unicall.c:2548 handle_uc_event: UC event Far 
end unblocked -- UC channel 3 far unblockedDec 20 
08:40:38 WARNING[1175077440]: chan_unicall.c:2548 handle_uc_event: UC event 
Local end unblocked -- UC channel 3 local unblockedDec 
20 08:40:38 WARNING[1175077440]: chan_unicall.c:2548 handle_uc_event: UC event 
Far end unblocked -- UC channel 4 far unblockedDec 20 
08:40:38 WARNING[1175077440]: chan_unicall.c:2548 handle_uc_event: UC event 
Local end unblocked -- UC channel 4 local unblockedDec 
20 08:40:38 WARNING[1175077440]: chan_unicall.c:2548 handle_uc_event: UC event 
Far end unblocked -- UC channel 5 far unblockedDec 20 
08:40:38 WARNING[1175077440]: chan_unicall.c:2548 handle_uc_event: UC event 
Local end unblocked -- UC channel 5 local 
unblocked

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

[Asterisk-Users] MFC/R2 Argentina variant ANI problems

2004-10-28 Thread Guillermo Freige
I'm trying to get ANI info without succes in the Unicall channel. Apparently 
(as told by the PBX technical support), Argentina R2 implementation of ANI 
request needs a different answer than the current UniCall support. When 
Asterisk receives a 0x5 (ANI request) it must answer with an 0x1 and then 
the individual digits of the actual extension number (601 in my case). 
Unicall only answers the extension number, generating a protocol error.
Also, when the call is established by asterisk, ANI request isn't generated 
at all.
Of course, I'll try to fix the mising 0x1 myself, at least if I find where 
to add the extra digit :) Any help appreciated.

Guillermo
_
Charla con tus amigos en línea mediante MSN Messenger: 
http://messenger.latam.msn.com/

___
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


Re: [Asterisk-Users] MFC/R2 Argentina variant ANI problems

2004-10-28 Thread Steve Underwood
Hi Guillermo,
The reason I don't send ANI when I get a 5 for .ar protocol is the 
information I have says something different :-) It says that when I get 
A5 I should respond with the calling party category, which I think I do. 
The current code seems to work OK against a Dialogic card in .ar mode.

R2 documentation is somewhat unreliable in various countries. I will try 
to sort this out at the weekend. I have an update I am trying to finish 
off, with various fixes in it.

Steve
Guillermo Freige wrote:
I'm trying to get ANI info without succes in the Unicall channel. 
Apparently (as told by the PBX technical support), Argentina R2 
implementation of ANI request needs a different answer than the 
current UniCall support. When Asterisk receives a 0x5 (ANI request) it 
must answer with an 0x1 and then the individual digits of the actual 
extension number (601 in my case). Unicall only answers the extension 
number, generating a protocol error.
Also, when the call is established by asterisk, ANI request isn't 
generated at all.
Of course, I'll try to fix the mising 0x1 myself, at least if I find 
where to add the extra digit :) Any help appreciated.

Guillermo

___
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


Re: [Asterisk-Users] MFC/R2 and Caller Id

2004-10-15 Thread Leonardo Gomes Figueira

I've an Asterisk connected to an Ericsson MD-110 PBX using MFC/R2. It's 
working fine but the caller id from the PBX to Asterisk is not set on 
the calls. From the debug i can see that the ANI is received but not set 
on the callerid field:

Oct  7 19:38:37 WARNING[18451]: Offered on channel 0 (ANI: 7931, DNIS: 
1931)
On version 0.0.1c of Unicall the caller id issue is fixed.
Bye,
   Leonardo
--
 Leonardo Gomes Figueira
 [EMAIL PROTECTED]
___
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


Re: [Asterisk-Users] MFC/R2

2004-09-25 Thread Leonardo Gomes Figueira
Hi,
Steve Underwood wrote:
Asterisk. I have been building and testing with the current * CVS code. 
I still need to work through the national variants, and get some of the 
them better tested. If you have the equipment ready to try MFC/R2 please 
tell me how you get on.
I might have an R2 line this week for testing in Brazil.
I would like to test it with 1.0.0 ? Any problem ? Does it have to be 
with CVS ?

Great job!
Thanks,
 Leonardo
--
 Leonardo Gomes Figueira
 [EMAIL PROTECTED]
___
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


Re: [Asterisk-Users] MFC/R2

2004-09-24 Thread Steve Underwood
Hi,
The instructions at http://www.opencall.org/installing-mfcr2.html and 
the code at ftp://ftp.opencall.org/pub now include interfacing to 
Asterisk. I have been building and testing with the current * CVS code. 
I still need to work through the national variants, and get some of the 
them better tested. If you have the equipment ready to try MFC/R2 please 
tell me how you get on.

Regards,
Steve
Steve Underwood wrote:
Hi all,
I have begun the release of my MFC/R2 protocol software. At 
http://www.opencall.org/installing-mfcr2.html there are instructions 
for installing what I have released so far. This is the MFC/R2 
protocol software, and a test program. The software to interface 
Asterisk to the MFC/R2 code will be released shortly. It used to work, 
but it hasn't been touched for a while, and Asterisk has changed 
somewhat. I need to realign my code with the way the current Asterisk 
CVS works.

In the meantime, if you have a working R2 line and Digium E1 card you 
can try the software with the test program. It is actually much easier 
debugging any compatibility issues between the software and the remote 
switch without Asterisk involved. So, if you want to be an early 
adopter, here is your chance. :-)

Regards,
Steve

___
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] MFC/R2

2004-09-23 Thread Steve Underwood
Hi all,
I have begun the release of my MFC/R2 protocol software. At 
http://www.opencall.org/installing-mfcr2.html there are instructions for 
installing what I have released so far. This is the MFC/R2 protocol 
software, and a test program. The software to interface Asterisk to the 
MFC/R2 code will be released shortly. It used to work, but it hasn't 
been touched for a while, and Asterisk has changed somewhat. I need to 
realign my code with the way the current Asterisk CVS works.

In the meantime, if you have a working R2 line and Digium E1 card you 
can try the software with the test program. It is actually much easier 
debugging any compatibility issues between the software and the remote 
switch without Asterisk involved. So, if you want to be an early 
adopter, here is your chance. :-)

Regards,
Steve
___
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