Re: [asterisk-users] Need to buy the Digium card, to confirm

2011-02-26 Thread Ryan Wagoner
On Sat, Feb 26, 2011 at 5:33 PM, bilal ghayyad  wrote:
> Hi All;
>
> My server and its slots written in it the following so I need to know which 
> card to order it (I need a card supporting 2 E1s):
>
> PCIE_G2_X4
> PCIE_G2_X8
>
> Actually I do not know what is meaning by G2.
>
> OK I tried to buy directly from the below link but I found it is mentioned 
> that it is x1 and not x4 or x8 so how can I get x4 or x8?
>
> The link:
>
> http://store.digium.com/productview.php?product_code=TE220B
>
> Description for the product:
> Two (2) span digital T1/E1/J1/PRI PCI-Express x1 card
>
> So please advise what do to?
> Regards
> Bilal

You can place 1x card in a 4x or 8x slot. The same goes for placing a
4x card in an 8x slot.

Ryan

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


[asterisk-users] Need to buy the Digium card, to confirm

2011-02-26 Thread bilal ghayyad
Hi All;

My server and its slots written in it the following so I need to know which 
card to order it (I need a card supporting 2 E1s):

PCIE_G2_X4
PCIE_G2_X8

Actually I do not know what is meaning by G2.

OK I tried to buy directly from the below link but I found it is mentioned that 
it is x1 and not x4 or x8 so how can I get x4 or x8?

The link:

http://store.digium.com/productview.php?product_code=TE220B

Description for the product:
Two (2) span digital T1/E1/J1/PRI PCI-Express x1 card 

So please advise what do to?
Regards
Bilal


  

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] SRTP Error Message

2011-02-26 Thread Terry Wilson
> Apologies in advance if this has come up a thousand times before but is there 
> any way to stop this error in 1.8 ? 
> [ Feb 26 15:09:09] ERROR[6678] chan_sip.c: No SRTP module loaded, can't setup 
> SRTP session. 

Sounds like your hone is sending an SRTP offer, but you don't have res_srtp 
loaded. This could be because you are limiting which modules you have loaded in 
modules.conf, or more likely because you have not compiled Asterisk with SRTP 
support. To do this, you will need to install libsrtp development libraries and 
re-run configure and 'make menuselect'.

If you are running 64-bit, be aware that some packaged versions of libsrtp are 
compiled without the -fPIC flag and will fail. If that is the case, you will 
need to download and compile libsrtp manually passing in the -fPIC option. You 
do this by configuring libsrtp with "./configure CFLAGS=-fPIC --prefix=/usr" 
for most setups. We try to detect this case in the configure script and provide 
the instructions there if it is necessary.
--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] Detect DTMF tone during call?

2011-02-26 Thread Dan Saul
That works perfectly!

Just for anyone else who stumbles upon this the exact things I did were:

features.conf
testfeature => *,peer,System,/bin/touch /tmp/buzzthemin

extension.ael
Set(__DYNAMIC_FEATURES=testfeature);

Thanks again!

On Sat, Feb 26, 2011 at 3:54 AM, Roger Burton West  wrote:
> On Sat, Feb 26, 2011 at 03:08:02AM -0600, Dan Saul wrote:
>>I am attempting to create a intercom buzzer system using asterisk as a
>>back end. Most is figured out except the actual action of buzzing the
>>door. I need to detect whether a DTMF key was pressed by the the
>>called party (the resident). Is this possible to do using just a
>>dialplan? I can't see any options on the Dial command that would lead
>>to this, am I looking in the wrong place? I looked briefly through the
>>archive and I heard mentions of AGI, is this what must be used to
>>accomplish this?
>
> If you want it to be detected within a call, which is what I'd assume,
> you'll probably be looking at the applicationmap section within
> features.conf.
>
> http://www.voip-info.org/wiki/view/Asterisk+config+features.conf
>
> --
> _
> -- Bandwidth and Colocation Provided by http://www.api-digital.com --
> New to Asterisk? Join us for a live introductory webinar every Thurs:
>               http://www.asterisk.org/hello
>
> asterisk-users mailing list
> To UNSUBSCRIBE or update options visit:
>   http://lists.digium.com/mailman/listinfo/asterisk-users
>

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


[asterisk-users] SRTP Error Message

2011-02-26 Thread --[ UxBoD ]--
Apologies in advance if this has come up a thousand times before but is there 
any way to stop this error in 1.8 ? 


[ Feb 26 15:09:09] ERROR[6678] chan_sip.c: No SRTP module loaded, can't setup 
SRTP session. 

-- 
Thanks, Phil 

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


Re: [asterisk-users] Detect DTMF tone during call?

2011-02-26 Thread Roger Burton West
On Sat, Feb 26, 2011 at 03:08:02AM -0600, Dan Saul wrote:
>I am attempting to create a intercom buzzer system using asterisk as a
>back end. Most is figured out except the actual action of buzzing the
>door. I need to detect whether a DTMF key was pressed by the the
>called party (the resident). Is this possible to do using just a
>dialplan? I can't see any options on the Dial command that would lead
>to this, am I looking in the wrong place? I looked briefly through the
>archive and I heard mentions of AGI, is this what must be used to
>accomplish this?

If you want it to be detected within a call, which is what I'd assume,
you'll probably be looking at the applicationmap section within
features.conf.

http://www.voip-info.org/wiki/view/Asterisk+config+features.conf

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users


[asterisk-users] Detect DTMF tone during call?

2011-02-26 Thread Dan Saul
Hi,

I am attempting to create a intercom buzzer system using asterisk as a
back end. Most is figured out except the actual action of buzzing the
door. I need to detect whether a DTMF key was pressed by the the
called party (the resident). Is this possible to do using just a
dialplan? I can't see any options on the Dial command that would lead
to this, am I looking in the wrong place? I looked briefly through the
archive and I heard mentions of AGI, is this what must be used to
accomplish this?

Thanks,

Dan

--
_
-- Bandwidth and Colocation Provided by http://www.api-digital.com --
New to Asterisk? Join us for a live introductory webinar every Thurs:
   http://www.asterisk.org/hello

asterisk-users mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-users