Hi,
I have Asterisk instaled, but can’t recieve incoming calls. I think all configurations is ok, I can make a call inside between the phones (SIP configuraition is ok, think). The I/O card is Digium TDM400P with 4 FXO modules.
Here is my zaptel.conf:
loadzone=es
defaultzone=es
fxsks=1-4
Here is my zapata.conf:
[chanels]
group=1
;usecallerid=yes
;hidecallerid=no
;callwaiting=no
;threewaycalling=yes
;transfer=yes
;echocancel=yes
;echotraining=yes
context=incoming
signalling=fxs_ks
busydetect=no
answeronpolarityswitch=yes ;;; <estas son
hanguponpolarityswitch=yes ;;; <estas son
callprogress=no
progzone=es
channel => 1-4 ; <el canal ZAP que sea.
;channel => 3
Here is my extension.conf:
[general]
static=yes ; Estas dos lineas previenen que desde la linea de
writeprotect=yes ; comandos se pueda sobreescribir el archivo de configuracion
[default]
language=es
[incoming]
include=default
exten => s,1, Answer()
;exten => s,n, Dial(SIP/2000,10)
exten => s,n, Echo()
exten => 0,1,Goto(incoming,s,1) ; al final volvemos al principio
exten => 2000,1,Dial(SIP/2000,20)
exten => 2000,103,Hangup
exten => 2001,1,Dial(SIP/2001,20)
exten => 2001,103,Hangup
exten => 2002,1,Dial(SIP/2002,20)
exten => 2002,103,Hangup
exten => 2003,1, Dial(SIP/2003,20)
exten => 2003,n, HangUp
exten => 9001,1,Answer()
exten => 9001,2,Echo
exten => 9001,3,Hangup()
exten => 9000,1,Playback (demo-congrats)
exten => 9000,2,Goto(9000,1)
[root@localhost asterisk]# ztcfg -vvv
Zaptel Configuration
Channel map:
Channel 01: FXS Kewlstart (Default) (Slaves: 01)
Channel 02: FXS Kewlstart (Default) (Slaves: 02)
Channel 03: FXS Kewlstart (Default) (Slaves: 03)
Channel 04: FXS Kewlstart (Default) (Slaves: 04)
4 channels configured.
Result of zttol:
Zaptel Tool ©2002 Linux Support Services, Inc.
┌─────────────┤ Wildcard TDM400P REV I Board 1 ├─────────────┐
│ │ ──────────────┐
│ │ │
│ Current Alarms: No alarms. │ │
│ Sync Source: Internally clocked │ ▒ │
│ IRQ Misses: 0 │ ▒ │
│ Bipolar Viol: 0 │ ▒ │
│ Tx/Rx Levels: 0/ 0 │ ▒ │
│ Total/Conf/Act: 4/ 4/ 1 │ ▒ │
│ ┌──────┐ │ ▒ │
│ 1234 │ Back │ │ ▒ │
│ TxA ---- └──────┘ │ ▒ │
│ TxB ---- │ ▒ │
│ TxC ---- │ # │
│ TxD ---- │ │
│ ┌──────┐ │ │
│ RxA ---- │ Loop │ │ │
│ RxB ---- └──────┘ │ │
│ RxC ---- │ │
│ RxD ---- │ │
│ │ ──────────────┘
└────────────────────────────────────────────────────────────┘
Wildcard TDM400P REV I Board 1 F10=Back
When I calling in nothing ocurrs in asterisk CLI.
Thank you.