Re: [asterisk-users] Problems with TE110P

2007-04-03 Thread Tzafrir Cohen
On Tue, Apr 03, 2007 at 10:18:56AM +1000, Klaverstyn, David C wrote:
 OK, 
 
 Found the problem.
 
 It looks like the configuration file is not correct.
 
 I added the following line to /etc/sysconfig/zaptel
 MODULES=$MODULES wcte12xp   # TE120P - Single Span T1 Card

Actually, make that:

MODULES=wcte12xp

a single line. Nothing more is needed.

 
 Once I did this all is now working.
 
 Editing the zaptel.sysconfig file in the zaptel source code will also do the 
 same.
 
 So I'm guessing anyone with a TE120P card will need to do the same until 
 Asterisk update the files for the TE120P

What? ship a modprobe file that probes for every card module even if you
just need ztdummy?

Fun indeed.

-- 
   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] Problems with TE110P

2007-04-02 Thread Tzafrir Cohen
On Mon, Apr 02, 2007 at 03:38:18PM +1000, Joel Hill wrote:
 Give this a try it fixes a problem we have had with a couple of Via
 boxes.
 
 modprobe wcte11xp
 modprobe wcte11xp
 ztfcg -vv
 zttool
 
 We found that probing the card twice before running ztcfg helped alot.

Are you sure that this is not an issue of timing? Specifically, I would
expect an error message of no such file or directory in such a case,
because udev files are not yet there.

What the current debian init.d script does is wait_for_zapctl before
running ztcfg.

wait_for_zapctl is a loop that checks if /dev/zap/ctl is there, and if
not, waits a second. 

It seems that once you have /dev/zap/ctl all the others are there as
well.

-- 
   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] Problems with TE110P

2007-04-02 Thread Klaverstyn, David C
Lspci does show:
03:02.0 Ethernet controller: Digium, Inc.: Unknown device 0120 (rev 11)

dmesg | tail
ip_tables: (C) 2000-2002 Netfilter core team
ip_tables: (C) 2000-2002 Netfilter core team
tg3: eth0: Link is up at 100 Mbps, full duplex.
tg3: eth0: Flow control is on for TX and on for RX.
lp: driver loaded but no devices found
NET: Registered protocol family 10
Disabled Privacy Extensions on device c0344160(lo)
IPv6 over IPv4 tunneling driver
divert: not allocating divert_blk for non-ethernet device sit0
eth0: no IPv6 routers present


Using CentOS 4.4

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Tzafrir
Cohen
Sent: Monday, 2 April 2007 3:43 PM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [asterisk-users] Problems with TE110P

On Mon, Apr 02, 2007 at 02:56:30PM +1000, Klaverstyn, David C wrote:
 Type in cat /proc/zaptel/* displays
 
 Span 1: ZTDUMMY/1 ZTDUMMY/1 1

The driver has not picked up your card.

 
 
 But if I type in 
   lsmod | grep -i wct
 
 I get
 wcte11xp   26016  0
 wct4xxp   221120  0
 zaptel184996  3 ztdummy,wcte11xp,wct4xxp

Two things to do:

1. What is the output of:   lspci

2. What really happens when the module loads?

  rmmod wcte11xp
  modprobe wcte11xp
  dmesg | tail

What linux distribution is it?

-- 
   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
___
--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] Problems with TE110P

2007-04-02 Thread Tzafrir Cohen
On Mon, Apr 02, 2007 at 04:21:45PM +1000, Klaverstyn, David C wrote:
 Lspci does show:
 03:02.0 Ethernet controller: Digium, Inc.: Unknown device 0120 (rev 11)
 
 dmesg | tail
 ip_tables: (C) 2000-2002 Netfilter core team
 ip_tables: (C) 2000-2002 Netfilter core team
 tg3: eth0: Link is up at 100 Mbps, full duplex.
 tg3: eth0: Flow control is on for TX and on for RX.
 lp: driver loaded but no devices found
 NET: Registered protocol family 10
 Disabled Privacy Extensions on device c0344160(lo)
 IPv6 over IPv4 tunneling driver
 divert: not allocating divert_blk for non-ethernet device sit0
 eth0: no IPv6 routers present
 

But please run it immedietly after running: 

  rmmod wcte11xp; modprobe wcte11xp

as it shows the last messages fromt he kernel.

 Using CentOS 4.4

Alternatively, look in /var/log/messages .

-- 
   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] Problems with TE110P

2007-04-02 Thread Kevin P. Fleming
Klaverstyn, David C wrote:
 Lspci does show:
 03:02.0 Ethernet controller: Digium, Inc.: Unknown device 0120 (rev 11)

You have a TE120P, not a TE110P, so you are loading the wrong driver module.
___
--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] Problems with TE110P

2007-04-02 Thread Klaverstyn, David C
What is the driver for the TE120P

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Kevin P.
Fleming
Sent: Monday, 2 April 2007 10:59 PM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [asterisk-users] Problems with TE110P

Klaverstyn, David C wrote:
 Lspci does show:
 03:02.0 Ethernet controller: Digium, Inc.: Unknown device 0120 (rev
11)

You have a TE120P, not a TE110P, so you are loading the wrong driver
module.
___
--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] Problems with TE110P

2007-04-02 Thread Jason Parker
wcte12xp

- David C Klaverstyn [EMAIL PROTECTED] wrote:
 What is the driver for the TE120P
 
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Kevin
 P.
 Fleming
 Sent: Monday, 2 April 2007 10:59 PM
 To: Asterisk Users Mailing List - Non-Commercial Discussion
 Subject: Re: [asterisk-users] Problems with TE110P
 
 Klaverstyn, David C wrote:
  Lspci does show:
  03:02.0 Ethernet controller: Digium, Inc.: Unknown device 0120 (rev
 11)
 
 You have a TE120P, not a TE110P, so you are loading the wrong driver
 module.
 ___
 --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


-- 
Jason Parker
Digium

___
--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] Problems with TE110P

2007-04-02 Thread Eric \ManxPower\ Wieling
That information is listed in the README file that comes with the Zaptel 
source code.


Klaverstyn, David C wrote:

What is the driver for the TE120P

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Kevin P.
Fleming
Sent: Monday, 2 April 2007 10:59 PM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [asterisk-users] Problems with TE110P

Klaverstyn, David C wrote:

Lspci does show:
03:02.0 Ethernet controller: Digium, Inc.: Unknown device 0120 (rev

11)

You have a TE120P, not a TE110P, so you are loading the wrong driver
module.

___
--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] Problems with TE110P

2007-04-02 Thread Klaverstyn, David C
From what I can tell the Zaptel 1.2.16 does not have a driver for the
TE120P.  Is this correct and if so how do I get it?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Eric
ManxPower Wieling
Sent: Tuesday, 3 April 2007 9:11 AM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [asterisk-users] Problems with TE110P

That information is listed in the README file that comes with the Zaptel

source code.

Klaverstyn, David C wrote:
 What is the driver for the TE120P
 
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Kevin P.
 Fleming
 Sent: Monday, 2 April 2007 10:59 PM
 To: Asterisk Users Mailing List - Non-Commercial Discussion
 Subject: Re: [asterisk-users] Problems with TE110P
 
 Klaverstyn, David C wrote:
 Lspci does show:
 03:02.0 Ethernet controller: Digium, Inc.: Unknown device 0120 (rev
 11)
 
 You have a TE120P, not a TE110P, so you are loading the wrong driver
 module.
___
--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] Problems with TE110P

2007-04-02 Thread Klaverstyn, David C
OK I now have 

MODULES:=zaptel wcte12xp

In my makefile and the driver loads but the card still fails.


lsmod | grep -i wct
wcte12xp   39360  0
zaptel184996  1 wcte12xp



ztcfg -vv
Notice: Configuration file is /etc/zaptel.conf
line 0: Unable to open master device '/dev/zap/ctl'

1 error(s) detected


Not sure what this means.  Hopefully someone can shed some light.

cat /proc/zaptel/*
Span 1: WCT1/0 Wildcard TE12xP Card 0
IRQ misses: 34

   1 WCT1/0/1
   2 WCT1/0/2
   3 WCT1/0/3
   4 WCT1/0/4
   5 WCT1/0/5
   6 WCT1/0/6
   7 WCT1/0/7
   8 WCT1/0/8
   9 WCT1/0/9
  10 WCT1/0/10
  11 WCT1/0/11
  12 WCT1/0/12
  13 WCT1/0/13
  14 WCT1/0/14
  15 WCT1/0/15
  16 WCT1/0/16
  17 WCT1/0/17
  18 WCT1/0/18
  19 WCT1/0/19
  20 WCT1/0/20
  21 WCT1/0/21
  22 WCT1/0/22
  23 WCT1/0/23
  24 WCT1/0/24
  25 WCT1/0/25
  26 WCT1/0/26
  27 WCT1/0/27
  28 WCT1/0/28
  29 WCT1/0/29
  30 WCT1/0/30
  31 WCT1/0/31

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
Klaverstyn, David C
Sent: Tuesday, 3 April 2007 9:30 AM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: RE: [asterisk-users] Problems with TE110P

From what I can tell the Zaptel 1.2.16 does not have a driver for the
TE120P.  Is this correct and if so how do I get it?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Eric
ManxPower Wieling
Sent: Tuesday, 3 April 2007 9:11 AM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [asterisk-users] Problems with TE110P

That information is listed in the README file that comes with the Zaptel

source code.

Klaverstyn, David C wrote:
 What is the driver for the TE120P
 
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Kevin P.
 Fleming
 Sent: Monday, 2 April 2007 10:59 PM
 To: Asterisk Users Mailing List - Non-Commercial Discussion
 Subject: Re: [asterisk-users] Problems with TE110P
 
 Klaverstyn, David C wrote:
 Lspci does show:
 03:02.0 Ethernet controller: Digium, Inc.: Unknown device 0120 (rev
 11)
 
 You have a TE120P, not a TE110P, so you are loading the wrong driver
 module.
___
--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
___
--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] Problems with TE110P

2007-04-02 Thread Gustavo Cordeiro


 Permissions?

Sds,
Gustavo



From: Klaverstyn, David C [EMAIL PROTECTED]
Reply-To: Asterisk Users Mailing List - Non-Commercial 
Discussionasterisk-users@lists.digium.com
To: Asterisk Users Mailing List - Non-Commercial 
Discussionasterisk-users@lists.digium.com

Subject: RE: [asterisk-users] Problems with TE110P
Date: Tue, 3 Apr 2007 09:59:19 +1000

OK I now have

MODULES:=zaptel wcte12xp

In my makefile and the driver loads but the card still fails.


lsmod | grep -i wct
wcte12xp   39360  0
zaptel184996  1 wcte12xp



ztcfg -vv
Notice: Configuration file is /etc/zaptel.conf
line 0: Unable to open master device '/dev/zap/ctl'

1 error(s) detected


Not sure what this means.  Hopefully someone can shed some light.

cat /proc/zaptel/*
Span 1: WCT1/0 Wildcard TE12xP Card 0
IRQ misses: 34

   1 WCT1/0/1
   2 WCT1/0/2
   3 WCT1/0/3
   4 WCT1/0/4
   5 WCT1/0/5
   6 WCT1/0/6
   7 WCT1/0/7
   8 WCT1/0/8
   9 WCT1/0/9
  10 WCT1/0/10
  11 WCT1/0/11
  12 WCT1/0/12
  13 WCT1/0/13
  14 WCT1/0/14
  15 WCT1/0/15
  16 WCT1/0/16
  17 WCT1/0/17
  18 WCT1/0/18
  19 WCT1/0/19
  20 WCT1/0/20
  21 WCT1/0/21
  22 WCT1/0/22
  23 WCT1/0/23
  24 WCT1/0/24
  25 WCT1/0/25
  26 WCT1/0/26
  27 WCT1/0/27
  28 WCT1/0/28
  29 WCT1/0/29
  30 WCT1/0/30
  31 WCT1/0/31

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
Klaverstyn, David C
Sent: Tuesday, 3 April 2007 9:30 AM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: RE: [asterisk-users] Problems with TE110P

From what I can tell the Zaptel 1.2.16 does not have a driver for the
TE120P.  Is this correct and if so how do I get it?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Eric
ManxPower Wieling
Sent: Tuesday, 3 April 2007 9:11 AM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [asterisk-users] Problems with TE110P

That information is listed in the README file that comes with the Zaptel

source code.

Klaverstyn, David C wrote:
 What is the driver for the TE120P

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Kevin P.
 Fleming
 Sent: Monday, 2 April 2007 10:59 PM
 To: Asterisk Users Mailing List - Non-Commercial Discussion
 Subject: Re: [asterisk-users] Problems with TE110P

 Klaverstyn, David C wrote:
 Lspci does show:
 03:02.0 Ethernet controller: Digium, Inc.: Unknown device 0120 (rev
 11)

 You have a TE120P, not a TE110P, so you are loading the wrong driver
 module.
___
--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
___
--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


_
Verificador de Segurança do Windows Live OneCare: combata já vírus e outras 
ameaças! http://onecare.live.com/site/pt-br/default.htm


___
--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] Problems with TE110P

2007-04-02 Thread Klaverstyn, David C
OK, 

Found the problem.

It looks like the configuration file is not correct.

I added the following line to /etc/sysconfig/zaptel
MODULES=$MODULES wcte12xp # TE120P - Single Span T1 Card

Once I did this all is now working.

Editing the zaptel.sysconfig file in the zaptel source code will also do the 
same.

So I'm guessing anyone with a TE120P card will need to do the same until 
Asterisk update the files for the TE120P

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gustavo Cordeiro
Sent: Tuesday, 3 April 2007 10:11 AM
To: asterisk-users@lists.digium.com
Subject: RE: [asterisk-users] Problems with TE110P


  Permissions?

Sds,
Gustavo


From: Klaverstyn, David C [EMAIL PROTECTED]
Reply-To: Asterisk Users Mailing List - Non-Commercial 
Discussionasterisk-users@lists.digium.com
To: Asterisk Users Mailing List - Non-Commercial 
Discussionasterisk-users@lists.digium.com
Subject: RE: [asterisk-users] Problems with TE110P
Date: Tue, 3 Apr 2007 09:59:19 +1000

OK I now have

MODULES:=zaptel wcte12xp

In my makefile and the driver loads but the card still fails.


lsmod | grep -i wct
wcte12xp   39360  0
zaptel184996  1 wcte12xp



ztcfg -vv
Notice: Configuration file is /etc/zaptel.conf
line 0: Unable to open master device '/dev/zap/ctl'

1 error(s) detected


Not sure what this means.  Hopefully someone can shed some light.

cat /proc/zaptel/*
Span 1: WCT1/0 Wildcard TE12xP Card 0
 IRQ misses: 34

1 WCT1/0/1
2 WCT1/0/2
3 WCT1/0/3
4 WCT1/0/4
5 WCT1/0/5
6 WCT1/0/6
7 WCT1/0/7
8 WCT1/0/8
9 WCT1/0/9
   10 WCT1/0/10
   11 WCT1/0/11
   12 WCT1/0/12
   13 WCT1/0/13
   14 WCT1/0/14
   15 WCT1/0/15
   16 WCT1/0/16
   17 WCT1/0/17
   18 WCT1/0/18
   19 WCT1/0/19
   20 WCT1/0/20
   21 WCT1/0/21
   22 WCT1/0/22
   23 WCT1/0/23
   24 WCT1/0/24
   25 WCT1/0/25
   26 WCT1/0/26
   27 WCT1/0/27
   28 WCT1/0/28
   29 WCT1/0/29
   30 WCT1/0/30
   31 WCT1/0/31

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
Klaverstyn, David C
Sent: Tuesday, 3 April 2007 9:30 AM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: RE: [asterisk-users] Problems with TE110P

 From what I can tell the Zaptel 1.2.16 does not have a driver for the
TE120P.  Is this correct and if so how do I get it?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Eric
ManxPower Wieling
Sent: Tuesday, 3 April 2007 9:11 AM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [asterisk-users] Problems with TE110P

That information is listed in the README file that comes with the Zaptel

source code.

Klaverstyn, David C wrote:
  What is the driver for the TE120P
 
  -Original Message-
  From: [EMAIL PROTECTED]
  [mailto:[EMAIL PROTECTED] On Behalf Of Kevin P.
  Fleming
  Sent: Monday, 2 April 2007 10:59 PM
  To: Asterisk Users Mailing List - Non-Commercial Discussion
  Subject: Re: [asterisk-users] Problems with TE110P
 
  Klaverstyn, David C wrote:
  Lspci does show:
  03:02.0 Ethernet controller: Digium, Inc.: Unknown device 0120 (rev
  11)
 
  You have a TE120P, not a TE110P, so you are loading the wrong driver
  module.
___
--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
___
--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

_
Verificador de Segurança do Windows Live OneCare: combata já vírus e outras 
ameaças! http://onecare.live.com/site/pt-br/default.htm

___
--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] Problems with TE110P

2007-04-01 Thread Klaverstyn, David C
I have a new server using Zaptel 1.2.16

 

Issuing a ztcfg gives the following error:

ZT_CHANCONFIG failed on channel 1: No such device or address (6)

 

Issuing the command

lsmod | grep -i wct

 

results in:

wcte11xp   26016  0

wct4xxp   221120  0

zaptel184996  3 ztdummy,wcte11xp,wct4xxp

 

 

In my zaptel Makefile I have:

MODULES:=zaptel wcte11xp

 

Please help. 

 

___
--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] Problems with TE110P

2007-04-01 Thread Klaverstyn, David C
I forgot to mention that my /etc/zaptel.conf file contains:

 

loadzone=au

defaultzone=au

span=1,1,0,ccs,hdb3,crc4

bchan=1-10

unused=11-15,17-31

dchan=16

 

 

 

 

I have a new server using Zaptel 1.2.16

 

Issuing a ztcfg gives the following error:

ZT_CHANCONFIG failed on channel 1: No such device or address (6)

 

Issuing the command

lsmod | grep -i wct

 

results in:

wcte11xp   26016  0

wct4xxp   221120  0

zaptel184996  3 ztdummy,wcte11xp,wct4xxp

 

 

In my zaptel Makefile I have:

MODULES:=zaptel wcte11xp

 

Please help. 

 

___
--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] Problems with TE110P

2007-04-01 Thread C F

Looks like a UDEV problem

On 4/1/07, Klaverstyn, David C [EMAIL PROTECTED] wrote:

I have a new server using Zaptel 1.2.16



Issuing a ztcfg gives the following error:

ZT_CHANCONFIG failed on channel 1: No such device or address (6)



Issuing the command

lsmod | grep -i wct



results in:

wcte11xp   26016  0

wct4xxp   221120  0

zaptel184996  3 ztdummy,wcte11xp,wct4xxp





In my zaptel Makefile I have:

MODULES:=zaptel wcte11xp



Please help.





___
--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] Problems with TE110P

2007-04-01 Thread Tzafrir Cohen
On Sun, Apr 01, 2007 at 11:34:20PM -0400, C F wrote:
 
 On 4/1/07, Klaverstyn, David C [EMAIL PROTECTED] wrote:
 I have a new server using Zaptel 1.2.16
 
 
 
 Issuing a ztcfg gives the following error:
 
 ZT_CHANCONFIG failed on channel 1: No such device or address (6)

 Looks like a UDEV problem

No, it is not. If it were a uudev problem (that is: missing device file)
you would get the error no such file or directory from ztcfg.

-- 
   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] Problems with TE110P

2007-04-01 Thread Tzafrir Cohen
On Mon, Apr 02, 2007 at 12:50:18PM +1000, Klaverstyn, David C wrote:
 I have a new server using Zaptel 1.2.16
 
 Issuing a ztcfg gives the following error:
 
 ZT_CHANCONFIG failed on channel 1: No such device or address (6)
  
 
 loadzone=au
 
 defaultzone=au
 
 span=1,1,0,ccs,hdb3,crc4
 
 bchan=1-10
 
 unused=11-15,17-31
 
 dchan=16
 

Now what do you actually have loaded?

cat /proc/zaptel/*

-- 
   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] Problems with TE110P

2007-04-01 Thread Klaverstyn, David C
Type in cat /proc/zaptel/* displays

Span 1: ZTDUMMY/1 ZTDUMMY/1 1


But if I type in 
lsmod | grep -i wct

I get
wcte11xp   26016  0
wct4xxp   221120  0
zaptel184996  3 ztdummy,wcte11xp,wct4xxp

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Tzafrir
Cohen
Sent: Monday, 2 April 2007 2:22 PM
To: asterisk-users@lists.digium.com
Subject: Re: [asterisk-users] Problems with TE110P

On Mon, Apr 02, 2007 at 12:50:18PM +1000, Klaverstyn, David C wrote:
 I have a new server using Zaptel 1.2.16
 
 Issuing a ztcfg gives the following error:
 
 ZT_CHANCONFIG failed on channel 1: No such device or address (6)
  
 
 loadzone=au
 
 defaultzone=au
 
 span=1,1,0,ccs,hdb3,crc4
 
 bchan=1-10
 
 unused=11-15,17-31
 
 dchan=16
 

Now what do you actually have loaded?

cat /proc/zaptel/*

-- 
   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
___
--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] Problems with TE110P

2007-04-01 Thread Joel Hill
Give this a try it fixes a problem we have had with a couple of Via
boxes.

modprobe wcte11xp
modprobe wcte11xp
ztfcg -vv
zttool

We found that probing the card twice before running ztcfg helped alot.

Cheers,


Joel.



Joel Hill
Support Engineer
Asterisk IT
03 8320 8100

On Mon, 2007-04-02 at 14:56 +1000, Klaverstyn, David C wrote:
 Type in cat /proc/zaptel/* displays
 
 Span 1: ZTDUMMY/1 ZTDUMMY/1 1
 
 
 But if I type in 
   lsmod | grep -i wct
 
 I get
 wcte11xp   26016  0
 wct4xxp   221120  0
 zaptel184996  3 ztdummy,wcte11xp,wct4xxp
 
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Tzafrir
 Cohen
 Sent: Monday, 2 April 2007 2:22 PM
 To: asterisk-users@lists.digium.com
 Subject: Re: [asterisk-users] Problems with TE110P
 
 On Mon, Apr 02, 2007 at 12:50:18PM +1000, Klaverstyn, David C wrote:
  I have a new server using Zaptel 1.2.16
  
  Issuing a ztcfg gives the following error:
  
  ZT_CHANCONFIG failed on channel 1: No such device or address (6)
   
  
  loadzone=au
  
  defaultzone=au
  
  span=1,1,0,ccs,hdb3,crc4
  
  bchan=1-10
  
  unused=11-15,17-31
  
  dchan=16
  
 
 Now what do you actually have loaded?
 
 cat /proc/zaptel/*
 

___
--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] Problems with TE110P

2007-04-01 Thread Tzafrir Cohen
On Mon, Apr 02, 2007 at 02:56:30PM +1000, Klaverstyn, David C wrote:
 Type in cat /proc/zaptel/* displays
 
 Span 1: ZTDUMMY/1 ZTDUMMY/1 1

The driver has not picked up your card.

 
 
 But if I type in 
   lsmod | grep -i wct
 
 I get
 wcte11xp   26016  0
 wct4xxp   221120  0
 zaptel184996  3 ztdummy,wcte11xp,wct4xxp

Two things to do:

1. What is the output of:   lspci

2. What really happens when the module loads?

  rmmod wcte11xp
  modprobe wcte11xp
  dmesg | tail

What linux distribution is it?

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