Wildcard: Difference between revisions
Jump to navigation
Jump to search
(phreak'n card) |
m (→modules) |
||
| (4 intermediate revisions by the same user not shown) | |||
| Line 7: | Line 7: | ||
== modules == | == modules == | ||
S110M Rev D FXS * 2 (station) | * S110M Rev D FXS * 2 (green/station) Connects to phones | ||
X100M Rev D FXO * 2 (line) | * X100M Rev D FXO * 2 (red/line) Connects to POTS phone lines | ||
== software == | |||
To see if the card is connected: | |||
# lspci -n | grep d161 | |||
Depencies required: | |||
* linux-headers | |||
# wget http://downloads.digium.com/pub/telephony/dahdi-linux-complete/dahdi-linux-complete-current.tar.gz | |||
# tar -zxvf dahdi-linux-complete-current.tar.gz | |||
# cd dahdi-linux-complete-X.X.X+X.X.X | |||
# make | |||
# make install | |||
# make config | |||
== config == | |||
<pre> | |||
/etc/dahdi | |||
$ cat system.conf | |||
# Autogenerated by /usr/sbin/dahdi_genconf on Sat Feb 18 21:03:56 2017 | |||
# If you edit this file and execute /usr/sbin/dahdi_genconf again, | |||
# your manual changes will be LOST. | |||
# Dahdi Configuration File | |||
# | |||
# This file is parsed by the Dahdi Configurator, dahdi_cfg | |||
# | |||
# Span 1: WCTDM/0 "Wildcard TDM410P" | |||
fxsks=1 | |||
echocanceller=oslec,1 | |||
fxsks=2 | |||
echocanceller=oslec,2 | |||
fxoks=3 | |||
echocanceller=oslec,3 | |||
fxoks=4 | |||
echocanceller=oslec,4 | |||
# Span 2: DAHDI_DUMMY/1 "DAHDI_DUMMY/1 (source: HRtimer) 1" (MASTER) | |||
# Global data | |||
loadzone = us | |||
defaultzone = us | |||
</pre> | |||
<pre> | |||
/etc/asterisk | |||
cat chan_dahdi.conf | |||
;General options | |||
usecallerid = yes | |||
hidecallerid = no | |||
callwaiting = yes | |||
threewaycalling = yes | |||
transfer = yes | |||
echocancel = yes | |||
echocancelwhenbridged = yes | |||
rxgain = 0.0 | |||
txgain = 0.0 | |||
;FXS Modules | |||
group = 1 | |||
signalling = fxo_ks | |||
context = Internal | |||
channel = 1-2 | |||
;FXO Modules | |||
group = 2 | |||
echocancel = yes | |||
signalling = fxs_ks | |||
context = Incoming | |||
channel = 3-4 | |||
</pre> | |||
https://www.digium.com/sites/digium/files/analog-telephony-card-4-port-user-manual.pdf | https://www.digium.com/sites/digium/files/analog-telephony-card-4-port-user-manual.pdf | ||
Latest revision as of 15:28, 2 April 2017
WILDCARD TDM410
4 Port TDM PCI
US: DIGTE01AX400M IC: 4771-X400M
modules[edit | edit source]
- S110M Rev D FXS * 2 (green/station) Connects to phones
- X100M Rev D FXO * 2 (red/line) Connects to POTS phone lines
software[edit | edit source]
To see if the card is connected:
- lspci -n | grep d161
Depencies required:
- linux-headers
- wget http://downloads.digium.com/pub/telephony/dahdi-linux-complete/dahdi-linux-complete-current.tar.gz
- tar -zxvf dahdi-linux-complete-current.tar.gz
- cd dahdi-linux-complete-X.X.X+X.X.X
- make
- make install
- make config
config[edit | edit source]
/etc/dahdi $ cat system.conf # Autogenerated by /usr/sbin/dahdi_genconf on Sat Feb 18 21:03:56 2017 # If you edit this file and execute /usr/sbin/dahdi_genconf again, # your manual changes will be LOST. # Dahdi Configuration File # # This file is parsed by the Dahdi Configurator, dahdi_cfg # # Span 1: WCTDM/0 "Wildcard TDM410P" fxsks=1 echocanceller=oslec,1 fxsks=2 echocanceller=oslec,2 fxoks=3 echocanceller=oslec,3 fxoks=4 echocanceller=oslec,4 # Span 2: DAHDI_DUMMY/1 "DAHDI_DUMMY/1 (source: HRtimer) 1" (MASTER) # Global data loadzone = us defaultzone = us
/etc/asterisk cat chan_dahdi.conf ;General options usecallerid = yes hidecallerid = no callwaiting = yes threewaycalling = yes transfer = yes echocancel = yes echocancelwhenbridged = yes rxgain = 0.0 txgain = 0.0 ;FXS Modules group = 1 signalling = fxo_ks context = Internal channel = 1-2 ;FXO Modules group = 2 echocancel = yes signalling = fxs_ks context = Incoming channel = 3-4
https://www.digium.com/sites/digium/files/analog-telephony-card-4-port-user-manual.pdf