Vincent
2007-Oct-21 14:27 UTC
[asterisk-users] WARNING: chan_zap.c process_zap: Ignoring signalling
Hello
I've been googling for this message, but can't find why
Asterisk sends a warning. The configuration files look similar to
http://www.voip-info.org/wiki/index.php?page=Asterisk+config+zapata.conf.sample
It's a TDM card with just one FXO module on it, and I connected an
RJ11 cable to it from the wall plug:
# cat /etc/zaptel.conf
fxsks=1
loadzone=fr
defaultzone=fr
# ztcfg -vv
Zaptel Version: 1.4.5.1
Echo Canceller: MG2
Configuration
=====================
Channel map:
Channel 01: FXS Kewlstart (Default) (Slaves: 01)
1 channels configured.
# lsmod | grep zap
zaptel 189860 7 zttranscode,ztdummy,wctdm
crc_ccitt 3072 2 zaptel,hisax
# cat /etc/asterisk/zapata.conf
[channels]
context=my-phones
usecallerid=yes
hidecallerid=no
immediate=no
signalling=fxs_ks
echocancel=yes
channel => 1
ubuntu*CLI> reload chan_zap.so
-- Reloading module 'chan_zap.so' (Zapata Telephony)
== Parsing '/etc/asterisk/zapata.conf': Found
[Oct 21 16:22:37] WARNING[8240]: chan_zap.c:11120 process_zap:
Ignoring signalling
-- Reconfigured channel 1, FXS Kewlstart signalling
== Parsing '/etc/asterisk/users.conf': Found
ubuntu*CLI>
Any idea? Should I just ignore this warning?
Thank you.
C F
2007-Oct-21 14:59 UTC
[asterisk-users] WARNING: chan_zap.c process_zap: Ignoring signalling
I believe that by reloading without restarting asterisk doesnt reload the signalling part On 10/21/07, Vincent <vincent.delporte at bigfoot.com> wrote:> Hello > > I've been googling for this message, but can't find why > Asterisk sends a warning. The configuration files look similar to > http://www.voip-info.org/wiki/index.php?page=Asterisk+config+zapata.conf.sample > > It's a TDM card with just one FXO module on it, and I connected an > RJ11 cable to it from the wall plug: > > # cat /etc/zaptel.conf > fxsks=1 > loadzone=fr > defaultzone=fr > > # ztcfg -vv > Zaptel Version: 1.4.5.1 > Echo Canceller: MG2 > Configuration > =====================> > > Channel map: > > Channel 01: FXS Kewlstart (Default) (Slaves: 01) > > 1 channels configured. > > # lsmod | grep zap > zaptel 189860 7 zttranscode,ztdummy,wctdm > crc_ccitt 3072 2 zaptel,hisax > > # cat /etc/asterisk/zapata.conf > [channels] > context=my-phones > usecallerid=yes > hidecallerid=no > immediate=no > > signalling=fxs_ks > echocancel=yes > channel => 1 > > ubuntu*CLI> reload chan_zap.so > -- Reloading module 'chan_zap.so' (Zapata Telephony) > == Parsing '/etc/asterisk/zapata.conf': Found > [Oct 21 16:22:37] WARNING[8240]: chan_zap.c:11120 process_zap: > Ignoring signalling > -- Reconfigured channel 1, FXS Kewlstart signalling > == Parsing '/etc/asterisk/users.conf': Found > ubuntu*CLI> > > Any idea? Should I just ignore this warning? > > Thank you. > > > _______________________________________________ > --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 >
Tzafrir Cohen
2007-Oct-21 15:23 UTC
[asterisk-users] WARNING: chan_zap.c process_zap: Ignoring signalling
On Sun, Oct 21, 2007 at 04:27:17PM +0200, Vincent wrote:> ubuntu*CLI> reload chan_zap.so > -- Reloading module 'chan_zap.so' (Zapata Telephony) > == Parsing '/etc/asterisk/zapata.conf': Found > [Oct 21 16:22:37] WARNING[8240]: chan_zap.c:11120 process_zap: > Ignoring signallingchan_zap cannot change signalling of a channel on reload. So that parameter is ignored on reload. False warning... -- Tzafrir Cohen icq#16849755 jabber:tzafrir.cohen at xorcom.com +972-50-7952406 mailto:tzafrir.cohen at xorcom.com http://www.xorcom.com iax:guest at local.xorcom.com/tzafrir
Vincent
2007-Oct-21 15:38 UTC
[asterisk-users] WARNING: chan_zap.c process_zap: Ignoring signalling
On Sun, 21 Oct 2007 17:23:03 +0200, Tzafrir Cohen <tzafrir.cohen at xorcom.com> wrote:>chan_zap cannot change signalling of a channel on reload. So that >parameter is ignored on reload. > >False warning...OK. So to check that Zaptel is correctly configured, I can just type "zap show channels" in the CLI. Thanks.