http://www.cyberdata.net Including Powered USB Technology
   VoIP Loudspeaker Amplifier Support Page


Downloads

Firmware & Drivers

Please read the Loudspeaker Amplifier Upgrade Compatibility Guide before installing any firmware.

Firmware 2.00
Firmware 3.00
Firmware 3.01

Documentation

Datasheet

010859 AC Powered
010859 Operation Manual (Firmware 1.00)
010859 Operation Manual (Firmware 2.00)

010859 Operation Manual (Firmware 3.00)
010859 Quick Reference

010860 Wireless
010860 Operation Manual (Firmware 1.00)
010860 Operation Manual
(Firmware 2.00)
010860 Operation Manual (Firmware 3.00)
010860 Quick Reference
Setting Up the Wireless Bridge

010861 PoE
010861 Operation Manual
(Firmware 1.00)
010861 Operation Manual
(Firmware 2.00)
010861 Operation Manual (Firmware 3.00)
010861 Quick Reference

Connecting to Compatible IP-PBX Servers

Genesta Overhead Paging White Paper

Discovery Utility Program

SolarWinds TFTP Server

 

   
 


Frequently Asked Questions

1. How do I update my firmware?
2. How many horns can be connected to an amplifier?
3. Are your speakers compliant with RFC 3261?
4. Do your speakers support other protocols?
5. Our IP-PBX server is RFC 3261 compliant in that it can register other SIP endpoints, so how do I create multiple paging zones using your speakers?
6. Which IP-PBX servers do your speakers interoperate with?
7. I hooked up your speakers using Asterisk and they play audio individually but why don’t they play in a paging group (zone)?
8. For additional support or answers to questions not covered on this page, who should I contact?
9. What are the Asterisk settings to set up our paging speakers?
10. How do I set up a page group in Asterisk?
11. Are you able to traverse the NAT with your IP paging products?
12. Is it possible with one loudspeaker amplifier to have multiple paging groups?

13. Are the speaker contacts potential-free?
14. What are the output levels of the speaker contacts?
15. What 8 ohm speakers are recommended for the Loudspeaker Amplifier?
16. My speakers are not loud enough. What should I do?
17. How do I configure Music-on-Hold (MOH) for Asterisk?
18. We would like to communicate directly to your products. Do you have any open source programs you can recommend to do this?



1. How do I update my firmware?

Check to see if your current firmware is the latest version before attempting to update. Download the latest version firmware which includes the Update Firmware Utility.

To upload the speaker firmware from your PC, see Section 2.4 of the VoIP Loudspeaker Amplifier Operation Guide.

 

2. How many horns can be connected to an amplifier?

CyberData's VoIP Loudspeaker Amplifier or VoIP Paging Amplifier supports the following outputs:

· One 8-ohm speaker: 8 watts

· One 8-ohm speaker with external PoE power injector (CyberData PN 010867): 10 watts

· Two 8-ohm speaker in parallel with external PoE power injector (CyberData PN 010867): 20 watts

The Loudspeaker Amplifier does not support three loudspeakers in parallel, since this would result in less than 4 ohms impedance and overdrive the output driver.

3. Are your speakers compliant with RFC 3261?

Yes, our speakers are compliant with RFC 3261, but not every SIP extension is fully supported such as extensions for certain phone features that our speakers do not require.

 

4. Do your speakers support other protocols?
Our speakers are SIP endpoints that use the SIP protocol in RFC 3261. Depending on the business case, we will consider custom applications using other protocols. Please contact sales@cyberdata.net for inquiries concerning other protocols.


5. Our IP-PBX server is RFC 3261 compliant in that it can register other SIP endpoints, so how do I create multiple paging zones using your speakers?
Our speakers do not create multiple zones as this is a feature (SIP extension) of the IP-PBX server. If your IP-PBX server does not support this SIP extension, you can use our Paging Server product to create multiple zones with our speaker.


6. Which IP-PBX servers do your speakers interoperate with?
Our speakers interoperate with the IP-PBX servers in the following link.


7. I hooked up your speakers using Asterisk and they play audio individually but why don’t they play in a paging group (zone)?
1)Make sure you have installed and loaded a timing source such as Zaptel’s “ztdummy” on your Asterisk server.

2) If you are using SIP phones in the same paging group as our speakers and auto-answer is activated for these phones, please upgrade to the latest paging group module in Asterisk, which is 1.2.3 or greater and put an “x” (this removes auto-answer commands our speakers do not use because they are hard-coded to auto-answer) after the extension number for the speakers in the paging group drop-down menu in FreePBX.

 

8. For additional support or answers to questions not covered on this page, who should I contact?

Contact support@cyberdata.net

 

9. What are the Asterisk settings to set up our paging speakers?

For both ceiling speaker and the Loudspeaker Amplifier, the settings are contained in the sip_additional.conf file in Asterisk. This file should read as follows in which "100" represents the username of our speaker and the password (secret) is ext100:

[100]
username=100
type=friend
secret=ext100
record_out=Adhoc
record_in=Adhoc
qualify=no
port=5060
nat=never
mailbox=100@device
host=dynamic
dtmfmode=rfc2833
context=from-internal
canreinvite=no
callerid=100 <100>

 

10. How do I set up a page group in Asterisk?

A: Page groups are found in the extensions_additional.conf file in Asterisk. The paging group portion of this file should read as follows in which "101 and 102" are the usernames and extensions of two speakers and "103" is the extension used to call the paging group of speakers 101 and 102, and "105" is the extension to call speakers 101,102, and 104:

[ext-paging]
include => ext-paging-custom
exten => PAGE102,1,GotoIf($[ ${CALLERID(number)} = 102 ]?skipself)
exten => PAGE102,n,Dial(SIP/102,5)
exten => PAGE102,n(skipself),Noop(Not paging originator)
exten => PAGE101,1,GotoIf($[ ${CALLERID(number)} = 101 ]?skipself)
exten => PAGE101,n,Dial(SIP/101,5)
exten => PAGE101,n(skipself),Noop(Not paging originator)
exten => PAGE104,1,GotoIf($[ ${CALLERID(number)} = 104 ]?skipself)
exten => PAGE104,n,Dial(SIP/104,5)
exten => PAGE104,n(skipself),Noop(Not paging originator)
exten => Debug,1,Noop(dialstr is LOCAL/PAGE102@ext-paging&LOCAL/PAGE101@ext-paging)
exten => Debug,n,Noop(dialstr is LOCAL/PAGE104@ext-paging&LOCAL/PAGE102@ext-paging&LOCAL/PAGE101@ext-paging)
exten => 103,1,Page(LOCAL/PAGE102@ext-paging&LOCAL/PAGE101@ext-paging)
exten => 105,1,Page(LOCAL/PAGE104@ext-paging&LOCAL/PAGE102@ext-paging&LOCAL/PAGE101@ext-paging)

; end of [ext-paging]

 

11. Are you able to traverse the NAT with your IP paging products?

Our IP paging products are programmed to traverse the NAT using Session Border Controllers (SBCs) of the VoIP hosting company or service provider. The SBCs act as an outbound proxy and manage the SIP traffic between the SIP server and the SIP endpoint behind the NAT. For more information on SBCs, go here.

 

12. Is it possible with one loudspeaker amplifier to have multiple paging groups?

Since the VoIP Loudspeaker Amplifier is a single SIP endpoint, it can not have multiple paging groups.

 

13. Are the speaker contacts potential-free?

Yes, our loudspeaker outputs are potential free. If no paging input occurs, the outputs is at or near zero voltage.

 

14. What are the output levels of the speaker contacts?

The output level is 15 Volt maximum.

 

15. What 8 ohm speakers are recommended for the Loudspeaker Amplifier?

  • Bogen SP308A
  • Moose MPI-39
  • Philmore WP20
  • Mode Electronics 70-703-1


16. My speakers are not loud enough. What should I do?

CyberData recommends good quality speaker wire that is 12 guage and a maximum length of 25 feet.

For maximum output, use two 8-Ohm speakers that are wired in parallel with the shortest possible cable length (total combined length should not exceed more than 25 feet).

By utilizing the high power jumper settings described in the manual in conjuction with CyberData's PoE Injector, you may achieve additional speaker volume by using either one 8-Ohm speaker or two
8-Ohm speakers in parallel.

 

17. How do I configure Music-on-Hold (MOH) for Asterisk?

Use the instructions at the following link to set up MOH for Asterisk:

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

 

18. We would like to communicate directly to your products. Do you have any open source programs you can recommend to do this?

Yes. Try the following links and also contact CyberData support for help Data format: RTP audio 8k G.711 a/u Law 30Ms packet time Open source programs:

MAST

http://www.aelius.com/njh/mast/

MAST can handle ulaw and alaw as well as streaming from a mic to a speaker.

Linphone:

http://www.linphone.org/index.php/eng

Linphone has a test application called rtpsend that streams data out as ulaw by default.
(It may be trivial to modify this to send in other formats).