<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:st1="urn:schemas-microsoft-com:office:smarttags" xmlns="http://www.w3.org/TR/REC-html40">

<head>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii">
<meta name=Generator content="Microsoft Word 11 (filtered medium)">
<!--[if !mso]>
<style>
v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
</style>
<![endif]--><o:SmartTagType
 namespaceuri="urn:schemas-microsoft-com:office:smarttags" name="PersonName"/>
<!--[if !mso]>
<style>
st1\:*{behavior:url(#default#ieooui) }
</style>
<![endif]-->
<style>
<!--
 /* Font Definitions */
 @font-face
        {font-family:Tahoma;
        panose-1:2 11 6 4 3 5 4 4 2 4;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Times New Roman";}
a:link, span.MsoHyperlink
        {color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {color:blue;
        text-decoration:underline;}
span.EmailStyle17
        {mso-style-type:personal-reply;
        font-family:Arial;
        color:navy;}
@page Section1
        {size:8.5in 11.0in;
        margin:1.0in 1.25in 1.0in 1.25in;}
div.Section1
        {page:Section1;}
-->
</style>

</head>

<body lang=EN-US link=blue vlink=blue>

<div class=Section1>

<p class=MsoNormal><font size=2 color=navy face=Arial><span style='font-size:
10.0pt;font-family:Arial;color:navy'>If no one has already done so I&#8217;ll
volunteer to get this wikified on the OpenZAP section of the wiki.<o:p></o:p></span></font></p>

<p class=MsoNormal><font size=2 color=navy face=Arial><span style='font-size:
10.0pt;font-family:Arial;color:navy'>-MC<o:p></o:p></span></font></p>

<p class=MsoNormal><font size=2 color=navy face=Arial><span style='font-size:
10.0pt;font-family:Arial;color:navy'><o:p>&nbsp;</o:p></span></font></p>

<div style='border:none;border-left:solid blue 1.5pt;padding:0in 0in 0in 4.0pt'>

<div>

<div class=MsoNormal align=center style='text-align:center'><font size=3
face="Times New Roman"><span style='font-size:12.0pt'>

<hr size=2 width="100%" align=center tabindex=-1>

</span></font></div>

<p class=MsoNormal><b><font size=2 face=Tahoma><span style='font-size:10.0pt;
font-family:Tahoma;font-weight:bold'>From:</span></font></b><font size=2
face=Tahoma><span style='font-size:10.0pt;font-family:Tahoma'>
freeswitch-users-bounces@lists.freeswitch.org
[mailto:freeswitch-users-bounces@lists.freeswitch.org] <b><span
style='font-weight:bold'>On Behalf Of </span></b>Anthony Minessale<br>
<b><span style='font-weight:bold'>Sent:</span></b> Monday, May 19, 2008 6:02 AM<br>
<b><span style='font-weight:bold'>To:</span></b> <st1:PersonName w:st="on">freeswitch-users@lists.freeswitch.org</st1:PersonName><br>
<b><span style='font-weight:bold'>Subject:</span></b> Re: [Freeswitch-users]
Need help with Openzap and Sangoma A200analog card</span></font><o:p></o:p></p>

</div>

<p class=MsoNormal><font size=3 face="Times New Roman"><span style='font-size:
12.0pt'><o:p>&nbsp;</o:p></span></font></p>

<p class=MsoNormal style='margin-bottom:12.0pt'><font size=3
face="Times New Roman"><span style='font-size:12.0pt'>You can use Sangoma cards
without the Zaptel Drivers if you wish.<br>
OpenZAP supports direct access to the Sangoma TDMAPI.<br>
<br>
<br>
-- Starting from the FS build root;<br>
-- Create the /etc/openzap directory and copy in the default files<br>
<br>
#cd libs/openzap<br>
#mkdir /etc/openzap<br>
#cp conf/* <br>
<br>
-- Edit openzap.conf and erase the entire contents and start with a blank file<br>
<br>
-- Here is an example FXS span using ports 1 and 2 of the card<br>
-- change the number to whatever default caller id you want the channel to use<br>
-- For FXS it's the extension this channel represents, for FXO it's the DID
associated with that line.<br>
-- The number field controls what the inbound extension will be on new calls in
FS.<br>
<br>
-- Assuming ports 1 and 2 are FXS (phones) and 3 and 4 are FXO (lines):<br>
<br>
[span wanpipe]<br>
name =&gt; OpenZAP<br>
number =&gt; 7001<br>
fxs-channel =&gt; 1:1<br>
number =&gt; 7002<br>
fxs-channel =&gt; 1:2<br>
<br>
-- Spans should always be of the same type so if you also have some FXO
channels you need 2 spans.<br>
<br>
[span wanpipe]<br>
name =&gt; OpenZAP<br>
number =&gt; 2121231234<br>
fxs-channel =&gt; 1:3<br>
number =&gt; 2121231235<br>
fxo-channel =&gt; 1:4<br>
<br>
<br>
To use it with zaptel it's almost the same setup but you use [span zt] instead
of wanpipe and the addressing of the channel defs are zaptel specific since
wanpipe channels use span:chan notation and zaptel only has chan<br>
<br>
<br>
<br>
[span zt]<br>
name =&gt; OpenZAP<br>
number =&gt; 7001<br>
fxs-channel =&gt; 1<br>
number =&gt; 7002<br>
fxs-channel =&gt; 2<br>
<br>
[span zt]<br>
name =&gt; OpenZAP<br>
number =&gt; 2121231234<br>
fxs-channel =&gt; 3<br>
number =&gt; 2121231235<br>
fxo-channel =&gt; 4<br>
<br>
<o:p></o:p></span></font></p>

<div>

<p class=MsoNormal><font size=3 face="Times New Roman"><span style='font-size:
12.0pt'>On Sat, May 17, 2008 at 11:07 PM, jeff sacksteder &lt;<a
href="mailto:jsacksteder@gmail.com">jsacksteder@gmail.com</a>&gt; wrote:<o:p></o:p></span></font></p>

<p class=MsoNormal><font size=3 face="Times New Roman"><span style='font-size:
12.0pt'>Start here -<br>
<br>
<a href="http://wiki.freeswitch.org/wiki/OpenZAP#Zaptel_Installation"
target="_blank">http://wiki.freeswitch.org/wiki/OpenZAP#Zaptel_Installation</a><br>
<a href="http://wiki.freeswitch.org/wiki/Openzap.conf_Examples" target="_blank">http://wiki.freeswitch.org/wiki/Openzap.conf_Examples</a><br>
<br>
Not sure if there's an appropriate example for your analog card - you<br>
should post yours into the wiki if you get it working. You might try<br>
asking on IRC, there's more activity there.<o:p></o:p></span></font></p>

<div>

<p class=MsoNormal><font size=3 face="Times New Roman"><span style='font-size:
12.0pt'><br>
&gt; I have a Sangoma A200 card with 2 FXS and 2 FXO interfaces.<o:p></o:p></span></font></p>

</div>

<div>

<p class=MsoNormal style='margin-bottom:12.0pt'><font size=3
face="Times New Roman"><span style='font-size:12.0pt'>&gt; However, I have no
idea how to configure OpenZap for my card. I can't find<br>
&gt; any examples.<o:p></o:p></span></font></p>

</div>

<p class=MsoNormal><font size=3 face="Times New Roman"><span style='font-size:
12.0pt'>_______________________________________________<br>
Freeswitch-users mailing list<br>
<a href="mailto:Freeswitch-users@lists.freeswitch.org">Freeswitch-users@lists.freeswitch.org</a><br>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users"
target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
UNSUBSCRIBE:<a
href="http://lists.freeswitch.org/mailman/options/freeswitch-users"
target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><o:p></o:p></span></font></p>

</div>

<p class=MsoNormal><font size=3 face="Times New Roman"><span style='font-size:
12.0pt'><br>
<br clear=all>
<br>
-- <br>
Anthony Minessale II<br>
<br>
FreeSWITCH <a href="http://www.freeswitch.org/">http://www.freeswitch.org/</a><br>
ClueCon <a href="http://www.cluecon.com/">http://www.cluecon.com/</a><br>
<br>
AIM: anthm<br>
<a href="mailto:MSN%3Aanthony_minessale@hotmail.com">MSN:anthony_minessale@hotmail.com</a><br>
GTALK/JABBER/<a href="mailto:PAYPAL%3Aanthony.minessale@gmail.com">PAYPAL:anthony.minessale@gmail.com</a><br>
IRC: <a href="http://irc.freenode.net">irc.freenode.net</a> #freeswitch<br>
<br>
FreeSWITCH Developer Conference<br>
<a href="mailto:sip%3A888@conference.freeswitch.org">sip:888@conference.freeswitch.org</a><br>
<a href="http://iax:guest@conference.freeswitch.org/888">iax:guest@conference.freeswitch.org/888</a><br>
<a href="mailto:googletalk%3Aconf%2B888@conference.freeswitch.org">googletalk:conf+888@conference.freeswitch.org</a><br>
pstn:213-799-1400 <o:p></o:p></span></font></p>

</div>

</div>

</body>

</html>