Re: [asterisk-users] Multiple Digium cards with one NFAS trunkgroup

2010-01-04 Thread lesly dorval
From reading the documentation that came with dahdi-tools I gathered that the 
second span should be span=2,2... designating it as a backup timing source 
in case your primary span=1,1... should die.  I am not sure that you can 
designate two primary timing sources and have seamless failover in a situation 
like the one you described.


  

___
-- 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] Multiple Digium cards with one NFAS trunkgroup

2009-12-28 Thread Ron McCarthy
Hi list,

Ive got a server with 6 ports on it (4+2 port card) we have a DS3 delivering
all voice DS1's to us. Carrier has a trunkgroup for the first 8 span (we
only have the first 6 plugged in right now). Everything works fine until we
fail the primary D channel (D's are on 24,48) the secondary then picks up
and outbound calls do not work, if we reboot Asterisk the D on 48 comes up
and it works fine, but we have to reboot, a reload chan_zap.so or no
interaction causes all outgoing calls to fail and no inbound audio.

Any ideal on what would cause this? I tried the latest Zaptel and then a
older version to, same issue.

Here is what the config files look like, any help would be great on this,
ive Googled and can't seem to find what else to try!

zaptel.conf
loadzone=us
defaultzone=us


span=1,1,0,esf,b8zs
bchan=1-23
dchan=24

span=2,1,0,esf,b8zs
bchan=25-47
dchan=48

span=3,1,0,esf,b8zs
bchan=49-72
#dchan=72

span=4,1,0,esf,b8zs
bchan=73-96
#dchan=96

span=5,1,0,esf,b8zs
bchan=97-120
#dchan=120

span=6,1,0,esf,b8zs
bchan=121-144
#dchan=144

zapata.conf
[trunkgroups]
trunkgroup = 1,24,48
spanmap = 1,1,0
spanmap = 2,1,1
spanmap = 3,1,2
spanmap = 4,1,3
spanmap = 5,1,6
spanmap = 6,1,7

[channels]
switchtype=4ess
signalling=pri_cpe
context=trunkinbound
group = 0
channel = 1-23
channel = 25-47
channel = 49-144
;,25-47,49-144
;,25-47,48-288

;channel = 1-23,25-47,49-144
;,49-71,73-95,97-119,121-143
___
-- 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] Multiple Digium cards with one NFAS trunkgroup

2009-12-28 Thread Steve Totaro
On Mon, Dec 28, 2009 at 12:45 PM, Ron McCarthy ronmc...@gmail.com wrote:

 Hi list,

 Ive got a server with 6 ports on it (4+2 port card) we have a DS3
 delivering all voice DS1's to us. Carrier has a trunkgroup for the first 8
 span (we only have the first 6 plugged in right now). Everything works fine
 until we fail the primary D channel (D's are on 24,48) the secondary then
 picks up and outbound calls do not work, if we reboot Asterisk the D on 48
 comes up and it works fine, but we have to reboot, a reload chan_zap.so or
 no interaction causes all outgoing calls to fail and no inbound audio.

 Any ideal on what would cause this? I tried the latest Zaptel and then a
 older version to, same issue.

 Here is what the config files look like, any help would be great on this,
 ive Googled and can't seem to find what else to try!

 zaptel.conf
 loadzone=us
 defaultzone=us


 span=1,1,0,esf,b8zs
 bchan=1-23
 dchan=24

 span=2,1,0,esf,b8zs
 bchan=25-47
 dchan=48

 span=3,1,0,esf,b8zs
 bchan=49-72
 #dchan=72

 span=4,1,0,esf,b8zs
 bchan=73-96
 #dchan=96

 span=5,1,0,esf,b8zs
 bchan=97-120
 #dchan=120

 span=6,1,0,esf,b8zs
 bchan=121-144
 #dchan=144

 zapata.conf
 [trunkgroups]
 trunkgroup = 1,24,48
 spanmap = 1,1,0
 spanmap = 2,1,1
 spanmap = 3,1,2
 spanmap = 4,1,3
 spanmap = 5,1,6
 spanmap = 6,1,7

 [channels]
 switchtype=4ess
 signalling=pri_cpe
 context=trunkinbound
 group = 0
 channel = 1-23
 channel = 25-47
 channel = 49-144
 ;,25-47,49-144
 ;,25-47,48-288

 ;channel = 1-23,25-47,49-144
 ;,49-71,73-95,97-119,121-143



I would call Digium but last I knew, NFAS only worked across one card.

Thanks,
Steve Totaro
___
-- 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] Multiple Digium cards with one NFAS trunkgroup

2009-12-28 Thread Kevin P. Fleming
Steve Totaro wrote:

 I would call Digium but last I knew, NFAS only worked across one card.

NFAS is implemented in libpri and Asterisk (chan_zap or chan_dahdi),
which means it has no concept of 'cards' at all. Cards are handled at
the Zaptel/DAHDI layer, and are presented as spans full of channels to
the userspace application... so there really can't be any such
restriction. NFAS should work fine across multiple cards.

-- 
Kevin P. Fleming
Digium, Inc. | Director of Software Technologies
445 Jan Davis Drive NW - Huntsville, AL 35806 - USA
skype: kpfleming | jabber: kpflem...@digium.com
Check us out at www.digium.com  www.asterisk.org

___
-- 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] Multiple Digium cards with one NFAS trunkgroup

2009-12-28 Thread Ron McCarthy
Ill try another mx of libPRI, it has to be something goofy.

Thanks for the input guys.


On Mon, Dec 28, 2009 at 11:00 AM, Kevin P. Fleming kpflem...@digium.comwrote:

 Steve Totaro wrote:

  I would call Digium but last I knew, NFAS only worked across one card.

 NFAS is implemented in libpri and Asterisk (chan_zap or chan_dahdi),
 which means it has no concept of 'cards' at all. Cards are handled at
 the Zaptel/DAHDI layer, and are presented as spans full of channels to
 the userspace application... so there really can't be any such
 restriction. NFAS should work fine across multiple cards.

 --
 Kevin P. Fleming
 Digium, Inc. | Director of Software Technologies
 445 Jan Davis Drive NW - Huntsville, AL 35806 - USA
 skype: kpfleming | jabber: kpflem...@digium.com
 Check us out at www.digium.com  www.asterisk.org

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