Hello. I have Asterisk running and have been able to connect internally with an IP phone, connect to the Digium server via IAX, etc. I’m now attempting to get an FXO port running on a TDM400P with no luck.
When I dial in it simply rings. Asterisk never answers. Asterisk doesn’t show anything on the screen. I think I have the configs correct and everything loaded, but am very much an Asterisk noob.
Here’s what I think you’ll be looking for:
zaptel.conf
fxsks=1
loadzone = us
defaultzone=us
zapata.conf
[code][trunkgroups]
;
[channels]
context=default
signalling=fxs_ks
usecallerid=no
echocancel=yes
callgroup=1
pickupgroup=1
immediate=no
callerid="* X400 POTS"<(123) 456-7890>
channel => 1[/code]
lsmod | grep zaptel
zaptel 212004 1 wctdm
crc_ccitt 6465 1 zaptel
/sbin/ztcfg -vv
[code]Zaptel Version: 1.4.0-beta2
Echo Canceller: MG2
Configuration
Channel map:
Channel 01: FXS Kewlstart (Default) (Slaves: 01)
1 channels configured.
[/code]
parts of extensions.conf
[code][demo]
;
; We start with what to do when a call first comes in.
;
exten => s,1,Wait(1) ; Wait a second, just for fun
exten => s,n,Answer ; Answer the line
exten => s,n,Set(TIMEOUT(digit)=5) ; Set Digit Timeout to 5 seconds
exten => s,n,Set(TIMEOUT(response)=10) ; Set Response Timeout to 10 seconds
exten => s,n(restart),BackGround(demo-congrats) ; Play a congratulatory message
exten => s,n(instruct),BackGround(demo-instruct) ; Play some instructions
exten => s,n,WaitExten ; Wait for an extension to be dialed.
[default]
;
; By default we include the demo. In a production system, you
; probably don’t want to have the demo there.
;
include => demo[/code]
zttool shows alarms OK. I get a light on the correct port of the TDM400P.
I’m sure I’ve overlooked something simple. Any help is greatly appreciated.
Thank you.