Gateways, a.k.a. trunks, don't need to authenticate with Freeswitch, and are configured in conf/directory/default/

Size: px
Start display at page:

Download "Gateways, a.k.a. trunks, don't need to authenticate with Freeswitch, and are configured in conf/directory/default/"

Transcription

1 Overview About General Overview Click here to expand Table of Contents Overview Adapted, largely from [ fredshack.com] Building a telephony server with FreeSwitch Introduction Freeswitch is an alternative to Asterisk to build a telephony server. It is also open-source, was launched by a member of the Asterisk development teamp who wanted to rewrite the whole thing from scratch to cleanly separate the switching part from the PBX part (Asterisk mixes the two due to its monolithic architecture). Unlike Asterisk, Freeswitch was meant to be cross-platform from the the start, and is available for Windows in addition to *nix. OpenZAP supports direct access to Sangoma cards through the wanpipe interface, and indirect access to Digium-compatible cards through the Zaptel interface; Because of this, as of April 2009, Windows users can only use Sangoma cards, or rely on an external VoIP gateway. Edit March 2010: OpenZap has been replaced with FreeTDM. Here's a list of hardware that have been tested with Freeswitch. What can you do with Freeswitch? Here's a list. A web-based interface to the FS users mailing list is available here. And here's the reason why Freeswitch authors chose XML over eg. INI files. The big picture Freeswitch is configured through different XML files loaded through the main freeswitch.xml. At runtime when FreeSwitch parses all the files, the resultant file is located as log/freeswitch.xml.fsxml. Contexts are a set of extensions located in conf/dialplan/ (eg. Default, Public, etc.), and effectively define the dialplan. A call can go through different contexts over the length of the call, eg. an unauthenticated call from a VoIP provider first go through the Public context before before forwarded to an IVR context, and end up being connected to an internal extension. Profiles define User Agents ("end points of a phone call", says Wikipedia), and handles connections on a given IP and port number. This enables Freeswitch to support multiple companies on the same host while providing enhanced security. By default, Freeswitch comes with two profiles: Internal (private LAN), and External (Internet-accessible, public LAN.) In a dialplan, profiles make use of contexts (eg. <param name="context" value="public"/>). What users can do depends on whether they authenticated (eg. local users making internal and outgoing calls) or not (eg. incoming calls from remote VoIP provider.) For security reason, it's a good idea to have the Internal and External profiles use their own dialplan. Users (extensions) are configured through files in conf/directory/. Each extension maps to a context (<variable name="user_context" value="default"/>). If you need to perform more complex actions, use the dialplan to call external scripts. Gateways, a.k.a. trunks, don't need to authenticate with Freeswitch, and are configured in conf/directory/default/ conf/autoload_configs contains a lot of XML files, but only those listed in modules.conf.xml will actually be loaded automatically by Freeswitch. IVR sound files in English are located under sounds/en/us/callie/ivr/8000/ Voice mail is saved under storage = Using Freeswitch with a Digium FXO PCI card If you use a PCI telephony card, you must first install Asterisk's Dahdi/Zaptel interface, followed by Freeswitch's OpenZap which relies on Dahdi. Setting up Dahdi lspci -vv (Check that the hardware is detected) adduser asterisk; mkdir /etc/asterisk (to avoid errors during compile/install) cd /usr/src Download and unzip the latest Dahdi driver + tools from Asterisk make make install make config If you need to set options, eg. set the wctdm driver to work in France, vi /etc/modprobe.d/dahdi.conf: options wctdm opermode=france If you need to set eg. tones for France, vi /etc/dahdi/genconf_parameters: "lc_country fr" vi /etc/modprobe.d/dahdi.blacklist.conf: Comment out modules you do NOT want to blacklist Add "blacklist netjet" Reboot to get rid of the NetJet module that is loaded instead of the Wctdm module,

2 and run "lsmod" to check that netjet/isdn are gone Either run "dahdi_genconf modules", or edit /etc/dahdi/system.conf manually /etc/init.d/dahdi start, and check /var/log/messages For Freeswitch to be able to access the Dahdi devices, edit /etc/udev/rules.d/dahdi.rules, followed by "/etc/init.d/dahdi restart" In case of trouble, take a look at OpenVox's Troubleshooting of Analog cards Dahdi Configuration /etc/dahdi/ genconf_parameters: Parameters that affect the dahdi_genconf configuration generator, eg. "lc_country fr" so that dahdi_genconf uses France for tone generation init.conf: Settings for Dahdi initialization scripts. Replaces /etc/sysconfig/zaptel, /etc/defaults/zaptel modules: Created by dahdi_genconf; Controls which modules are loaded system.conf: Generated by dahdi_genconf, and read by dahdi_cfg /etc/modprobe.d/dahdi.blacklist.conf Used to disable loading modules causing trouble for Dahdi, eg. netjet /etc/modprobe.d/dahdi.conf This file sets module options. Dahdi tools in /usr/sbin/ To check hardware installed: dahdi_hardware To check hardware installed: dahdi_scan dahdi_genconf: Reads /etc/dahdi/genconf_parameters to generate /etc/dahdi/system.conf and/etc/asterisk/dahdi_channels.conf After editing /etc/dahdi/system.conf, run "dahdi_cfg -vv" To check timer: dahdi_test dahdi_speed dahdi_tool: Equivalent of zttool Setting up OpenZap cd /usr/src/freeswitch Edit modules.conf: Uncomment "../../libs/openzap/mod_openzap" Follow the instructions on how to compile Freeswitch vi /usr/local/freeswitch/conf/openzap.conf [span zt FXO] name => OpenZAP fxo-channel => 1 vi /usr/local/freeswitch/conf/autoload_configs/openzap.conf.xml <analog_spans> Run the Freeswitch console fs_cli, type "load mod_openzap", followed by "oz list" To have OpenZap be loaded automatically when Freeswitch starts, edit /usr/local/freeswitch/conf/autoload_configs/modules.conf.xml, and uncomment <load module ="mod_openzap"/> As OpenZap ignores the tones information from Dahdi and uses its own information, check that the tones information for your country are available in /usr/local/freeswitch/conf/tones.conf (examples) Testing If you experience echo, one thing to try is using the Open-source Line Echo Canceller (OSLEC). Connecting FXO port to dialplan to extensions Removing Dahdi In case you wish to remove Dahdi so you can downgrade to Zaptel: /etc/init.d/dahdi stop rm -f /etc/init.d/dahdi rm -Rf /etc/dahdi/ rm -f /etc/modprobe.d/dahdi.* rm -Rf /usr/share/dahdi/ rm -f /usr/sbin/dahdi_* cd /usr/src/dahdi-linux/linux ; make uninstall reboot to check Installing Zaptel NOTE: Seems like Zaptel isn't compatible with more recent version of Linux. And since Zaptel has been replaced with Dadhi... yum install kernel-devel kernel-headers yum install gcc newt-devel libusb-devel cd /usr/src wget el/zaptel-1.4-current.tar.gz cd /usr/src/zaptel /install_prereq test./configure make menuselect make make install make config Connecting to the PSTN A Freeswitch server can handle conversations over the analog phone network either by connecting out through ADSL to a VoIP provider on the Internet, or by connecting the server to a phone line on the premises through an SIP/PSTN gateway. In this latter case, there are two options: Either an external device like the Linksys SPA-3102, or a PCI card from Digium, Sangoma, OpenVox, Atcom, etc. Sangoma also offers a two-fxo USB device. Advantages Disadvantages External device OS-independent, so Freeswitch can run on any computer Cheaper than PCI cards Provides an FXS port to connect an analog handset More cables than a PCI card (power, Ethernet, PSTN) Possible echo issue with SIP/PSTN connections PCI card More compact (onlye one cable: From card to PSTN wall plug) More reliable than entry-level, external SIP/PSTN gateways Requires a desktop computer With one exception, only run under Linux Possible incompatibility with some motherboards Connecting Freeswitch to a PSTN line through the Linksys 3102 Here are few things to keep in mind: contexts = diaplans SIP profiles = for enhanced security, an extension must belong to a given profile extensions = belongs to an SIP profile and is set to use a given dialplan settings in XML files under autoload_configs/*.xml are loaded even if the relevant module is not loaded through modules.conf.xml (list of modules) (uses the 3102 independantly, without Freeswitch) Home VOIP system using FreeSwitch and a Linksys 3102 voice gateway (UK Guide) SPA3102 FreeSwitch HowTo Reset the unit by plugging a handset in the Phone plug, and dialing **** followed by 73738#, and confirm with 1 Since we won't use the 3102 as a router to connect two Ethernet networks, plug the 3102 to the LAN through its "Internet" connector, dial *** to enter the voice menu, followed by

3 110# to get its IP address, and 7932# followed by 1#, and 1 to enable the embedded web server Aim your browser at nced (where linksys-ip is the 3102 IP address) Router Wan Setup Connection Type = Static IP Static IP = Netmask = Gateway = Primary DNS = Secondary DNS = Primary NTP Server = 0.fr.pool.ntp.org Secondary NTP Server = 1.fr.pool.ntp.org Enable WAN Web Server = yes Lan Setup Networking service = Bridge (so we can connect to the 3102 through either its Internet or Ethernet port; The LAN IP address is ignored) Voice System Enable Web Admin Access = yes Syslog/debug server = SIP SIP TCP Port Min/Max = 5060 RTP Port Min/Max (Must be port-mapped on NAT router, or can 3102 punch holes itself?) "RTP Packet Size" should be changed from to to avoid problems ("When you make outbound call using analog phone attached to the FXS port and the person you call hears choppy voice") NAT Support Parameters : what is VIA? STUN Enable = yes STUN Test Enable =? STUN Server = stun.ekiga.net EXT IP? EXT RTP Port Min Regional (France) Dial Tone = 440@-10; 10(*/0/1) Second Dial Tone = 420@-19,520@-19;10(*/0/1+2) Busy Tone = 440@-10; 10(0.5/0.5/1) Ring Back Tone = 440@-10; 10(1.5/3.5/1) Time Zone = GTM +1 DST Rule = start=3/-1/7/2;end=10/-1/7/3;save=1 FXS Port Impedance = 600 Caller ID Method = ETSI FSK Caller ID FSK Standard = bell 202 Line 1 Line Enable = yes NAT Mapping Enable = no SIP Port = 5062 Proxy = FS server

4 User ID + Password = SIP account on FS server Register =? Make/Ans Call Without Reg =? Dial Plan =? PSTN Line Line Enable = yes NAT Mapping Enable = no SIP Port = 5061 Proxy = FS server User ID + Password Preferred Codec = G711U Dial Plan 1 = (S0<:9999>) //Incoming calls from POTS sent to extension 9999 on FS server VoIP-To-PSTN Gateway Enable =? Line 1 VoIP Caller DP = 1 PSTN-To-VoIP Gateway Enable =? PSTN Ring Thru Line 1 = no PSTN CID For VoIP CID = yes PSTN Caller Default DP = 1 VoIP Answer Delay = 0 PSTN Answer Delay = 0 PSTN Ring Thru Delay = 1 PSTN Ring Timeout = 5 Detect CPC = yes Detect Polarity Reversal = yes Detect Disconnect Tone = yes Disconnect Tone = 480@-30,620@-30;4(.25/.25/1+2) FXO Port Impedance = nF User 1 PSTN User Installing an X100P card from cd /usr/src wget tar xzvf./zaptel tar.gz cd zaptel /./configure make make install make config vim /etc/sysconfig/zaptel, and comment out modules you don't need (keep $MODULES wcfxo) cd /etc ; mv zaptel.conf zaptel.conf.orig vim /etc/zaptel.conf (for France): loadzone=fr defaultzone=fr fxsks=1 modprobe wctdm OR modprobe wcfxo? modprobe zaptel lsmod, and check that wcfxo, zaptel, and crc_ccitt are loaded ztcfg -vv (if it says "ZT_CHANCONFIG failed on channel 1: No such device or address (6)", it's a false alarm) Tried: /etc/zaptel.conf: fxsks=1 is last statement in file In BIOS, set PCI slot to use IRQ7 Booted grub with acpi=no Booted grub with noapic (Linux gets stuck) Flashed BIOS with F2 version Removed Zaptel , rebooted, downloaded and compiled Dahdi (no config/configure -> make all; make install; make config; dahdi_genconf modules) Rebooted: FXO PCI Master abort... Shutdown: Replaced with a SCSI card which worked fine, retried the X100P... which now shows up in demsg :-/ But... while lspci does return "Communication controller: Motorola SM56 PCI Modem", it's not listed in "cat /proc/interrupts" Also, when using the following for /etc/dahdi/system.conf... loadzone=fr defaultzone=fr fxsks=1... and running "/etc/init.d/dahdi restart": "Running dahdi_cfg: DAHDI_CHANCONFIG failed on channel 1: No such device or address (6)" dahdi_cfg -vv : "DAHDI_CHANCONFIG failed on channel 1: No such device or address (6)"

5 The problem is with high-speed USB ports. I kept getting Unknown DAA errors. Soon as I disabled the USB ports everything worked as it should. It was the same case with EVERY motherboard I tried. It was frustrating because everything worked fine in my old computer, but when I upgraded it was not. Zaptel Version: Echo Canceller: MG2 Configuration ========== Channel map: Channel 01: FXS Kewlstart (Default) (Slaves: 01) 1 channels to configure. ZT_CHANCONFIG failed on channel 1: No such device or address (6) If you have any zaptel hardware it is now recommended to edit /etc/sysconfig/zaptel and set there an optimal value for the variable MODULES. I think that the zaptel hardware you have on your system is: pci:0000:03:00.0 wcfxo- 1057:5608 Wildcard X100P /sbin/ztcfg Need to first install Zaptel/Dahdi? lspci -v to check that the card is recognized cat /proc/interrupts to check that the card was assigned an IRQ. If not listed here, If still NOK, "remove any unneeded peripheral from the PCi bus, toggle the plug-n-play option in your bios. If you have a "Reset Hardware Configuration" or something like that turn it on. Also try a different PCI slot. Systems running chipsets from SIS, nvidia and some VIA (so pretty much all AMD) dont handle those cards very well at all. acpi noaicp nosmp etc..etc echotraining =x " Does OpenZap work with Dadhi 2.x? Playing with Freeswitch Important commands Some important commands that you send through the bin/fs_cli command-line interface:

6 To check the different profiles: sofia status To check who is connected: sofia status profile internal To only watch SIP packets: "console loglevel 0", followed by "sofia profile internal siptrace on" To reload the whole set of XML files: reloadxml GUI for FreeSwitch wikipbx (instructions) Fusionpbx Configuring a Siemens 580IP Leave the handset on its cradle long enough to fully charge the battery, then connect the base station to the router so it gets an IP configuration through DHCP. To check what IP address was assigned and configure the handset from a web browser, open the Menu and navigate to "IP Address". By default, System PIN = 0000 Settings > Telephony > Connections > Configure "IP1" to connect the 580IP to Freeswitch Domain = IP address of Freeswitch server Registrar = IP address of Freeswitch server In case the 580IP is used to register with another SIP server besides Freeswitch, here's how to configure things so that the handset if you prefer to have it handle the dialplan instead of Freeswitch: If I want to use a different line manually, specify its number (eg #2 to use line #2) as listed in "Telephony > Connections". In case you want all outgoing calls to be handled by the Freeswitch server, ie. not make use of the 580IP dialplan feature, add the VoIP gateways to the Freeswitch server, and just create a single connection in the Siemens in "Telephony > Number Assignment". Issues What is the use of the "Telephony > Dialling Plans > Dialling Plans" section? When should I use "Telephony > Number Assignment > Call Manager"? What to try Common extensions for testing: 1000, 1001,..., Generic SIP extensions demo IVR (requires sounds and music files to be installed) five second delay echo test standard echo test music on hold (requires music files to be installed) Enable mod_python, and have Python scripts be called by the dialplan Configure SIP accounts, including voic and sending . IVR Connect a PSTN/VoIP gateway Investigating issues fs_cli> console loglevel [0-7] (where 1=EMERG and 7=DEBUG) fs_cli> sofia loglevel <all default tport iptsec nea nta nth_client nth_server nua soa sresolv stun> [0-9] fs_cli> sofia loglevel all 0 fs_cli > sofia profile <profilename> siptrace on off fs_cli > sofia tracelevel info #details in log/freeswitch.log file Configuration files Here's a diagram to get the big picture. By default, configuration files live in /usr/local/freeswitch/conf/. The XML files are either stand-alone or include references to other XML files. Note that an X-PRE-PROCESS line cannot be commented out, and must be removed entirely if not needed. Information is available in the Getting Started Guide, and the Freeswitch default configuration layout. Configuration data is stored in XML files under /usr/local/freeswitch/conf/. This layout is in no way required, you can minimize the configuration to just one file if needed. The main config file is called freeswitch.xml, you don't need to change it in any way, it just loads all other config files. freeswitch.xml FS doesn't need more than the hard-coded conf/freeswitch.xml, but it's a much better idea to have it load different XML files from sub-directories to handle SIP accounts, dialplans, etc. At runtime when FreeSwitch parses all the files, the resultant file is located as log/freeswitch.xml.fsxml. freeswitch.xml contains multiple sections, each used by a different component in FreeSwitch: "configuration", "diaplan", "directory", and "phrases" (to locate sound files). vars.xml Used to define global variables

7 conf/dialplan/ This is the directory where you'll customize your dialplan; Equivalent to Asterisk's extensions.conf Diaplans are located in conf/dialplan/. Everything in the public context is available to everyone, while everything in "default" context are only available to users that have registered with FreeSWITCH. Logically, this should be "internal", but I guess "default" is a legacy. You can define in the user profiles (in the directory) which context they belong to, and you can define the public context in the sofia configuration. Contexts are a logical grouping of extensions. You may have multiple extensions contained within a single context. dialplan: This is the place where you setup your dialplan. There are some examples of how to configure your dialplan included. (recipes); put your custom diaplan entries into the extensions subdirectory under conf/dialplan. You may create one or more XML files in this subdirectory, all of which will be included in the dialplan thanks to an "include" directive in the default.xml file. By keeping your customized extensions separate from default.xml you will be able to update default.xml without having to re-enter your custom extensions. conf/autoload_configs/ A list of modules that are automatically loaded when Freeswitch starts; modules.conf.xml tells Freeswitch which modules to load. There are certain modules required for operation so you should not edit this file unless you know that you wish to add or remove a specific module. The sofia.conf.xml file includes other xml files (conf/sip_profiles/*.xml) to define multiple "profiles" (ie. contexts; See below). Note that by default, all XML configuration files under autoload_configs/ are parsed, even if a module is commented out in modules.conf.xml, but Freeswitch will only actually use settings for modules that are explicitely listed in modules.conf.xml conf/directory/ A list of SIP extensions, one XML file per extensions. User authentication is available under conf/directory/. For instance, a connection to a remote VoIP gateway can be done through either the external profile or through information in directory/. directory: The directory contains all users that may register and use freeswitch as their pbx.; holds authentication credentials for other sip endpoints that will register to freeswitch (most commonly users). The directory configuration default is configured to process the glob $PREFIX/conf/directory/default/*.xml by the configuration included in freeswitch.xml $PREFIX/conf/directory/*.xml. conf/sip_profiles/ Tells FS how to talk sip. Each profile has its own port. Unlike other softswitches (like Asterisk), FreeSWITCH allows you to handle media (calls, video, etc.) differently based on where the equipment is attached to your network. This assists with security as well as providing added functionality. SIP Profiles allow you to define paths to devices or carriers that may live inside or outside your network. These paths can be of many different types, but must consist of a unique combination of port and IP pairs. You could have SIP profiles for your internal network, or multiple profiles for each subnet of your internal network, or even completely different protocols like IPv6 as profile definitions. This helps FreeSWITCH identify how to route different types of calls when necessary, and also gives you the flexibility to tailor your dialplans based on what path a call originates to/from. The default profiles are located in: $PREFIX/conf/sip_profiles/PROFILE_NAME.xml -- where PROFILE_NAME is the name of the profile. A list of contexts, eg. Internal, External, etc. This adds security and lets Freeswitch handle media that take different forms (voice, video, etc.). A profil consists in an IP address + Port number, and contains information that will be inherited by devices using this profile A profile is a SIP UA (an endpoint), which communicates with other SIP endpoints. An obvious reason for multiple profiles is to tell Sofia how to handle calls meant for remote SIP users behind the NAT router, and calls meant for local SIP users located on the same LAN as the originating caller. Each profile contains a complete description of a SIP UA. When FreeSWITCH starts, it reads sofia.conf.xml and starts up a separate UA for each profile in the configuration file. In FS, SIP equipments can have different profiles, and are located under SIP_Profiles/. By default, there is an internal profile (register by connecting to FS on UDP5060) and an external profile (Connect to FS on UDP5080; nat.xml is deprecated.) The default profiles are located in: $PREFIX/conf/sip_profiles/PROFILE_NAME.xml -- where PROFILE_NAME is the name of the profile.in order to secure your FreeSwitch it is wise to link your outbound (external) profile to a dialplan context other than 'default', which in the default configuration is the where authenticated users are placed. The default port for external connections is This also means if you are trying to connect a phone remotely to your FreeSWITCH box, you must set it to connect on port 5080, or change your ports around. Working with the XML files Type "reloadxml" in the FS console to apply changes made to XML files. Creating a new SIP account, and adding it to the Internal SIP profile/context cd conf/directory/default/ ; cp 1000.xml 1234.xml; vi 1234.xml Adding a new VoIP gateway conf/directory/default/ There are two ways to define VoIP gateways, depending if they're common to all SIP users, or user-specific. More information in Clarification: Gateways. A list of examples to connect to SIP providers is available here.

8 Create a new XML file in conf/sip_profiles/external For outbound calls, add a new file in conf/dialplan/default/. Important: Freeswitch uses the files in their alphanumerical order, so 00_ is called before 01_ For inbound calls, add a new files in conf/dialplan/public/ A fuller example: cd conf/sip_profiles/external; cp example.xml mygw.xml; vi mygw.xml: <include> <gateway name="outbound.mygw"> <param name="username" value="****yourusername"/> <param name="password" value="****yourpassword"/> <param name="proxy" value="****outboundurl"/> <param name="register" value="false"/> </gateway> <gateway name="inbound.mygw"> <param name="username" value="****yourusername"/> <param name="password" value="****yourpassword"/> <param name="extension" value="1000"/> <param name="proxy" value="****inboundurl"/> <param name="register-proxy" value="****inboundurl"/> </gateway> </include> Creating a new dialplan (including an IVR), and linking it to the new SIP account Note: Since filenames determine the order in which Freeswitch loads XML files depends on their filename, make sure existing files in the same folder aren't loaded before yours. Here's how to create an outbound dialplan: cd conf/dialplan/default; vi 00_outbound_mygw.xml <include> <extension name="dialmygw"> <condition field="destination_number" expression="^(\d{7,11})$"> <action application="set" data="effective_caller_id_number=${outbound_caller_id_number}"/> <action application="set" data="effective_caller_id_name=${outbound_caller_id_name}"/> <action application="bridge" data="sofia/gateway/outbound.mygw/$1"/> </condition> </extension> </include> Here's how to create an inbound dialplan: cd conf/dialplan/public; vi 00_inbound_mygw.xml <include> <extension name="public_did"> <condition field="destination_number" expression="^(.*)$"> <action application="set" data="domain_name=$${domain}"/> <action application="transfer" data="1000 XML default"/> </condition> </extension> </include> In order to secure your FreeSwitch it is wise to link your outbound profile to a dialplan context other than 'default', which in the default configuration is the where authenticated users are placed. Note: The nat.xml file (and profile) have been deprecated. Use the external profile and port Scripts can access Freeswitch through its Even Socket Library.

9 Diaplans For security reason, it is recommended to link the outbound profile ("External") to its own dialplan, different from the one used for internal calls ("Internal", previously known as "Default"). By default, note that the Internal profile listens for incoming connections on UDP5060 while the External profile listens on UDP Freeswitch and NAT firewalls Here are some ports that Freeswitch uses and will have to go through firewalls: UDP 3478: STUN service; Used for NAT traversal UDP 3479: STUN service; Used for NAT traversal UDP/TCP 5060: SIP UAS; Used for SIP signalling (Standard SIP Port, for default Internal Profile) UDP/TCP 5070: SIP UAS; Used for SIP signalling (For default "NAT" Profile) UDP/TCP 5080: SIP UAS; Used for SIP signalling (For default "External" Profile) UDP : RTP/ RTCP multimedia streaming; Used for audio/video data in SIP and other protocols General NAT example scenarios Securing Freeswitch This is especially important if the Freeswitch box is open to the Internet to let remote SIP users connect to FS, or access a web server running on the same box. Remove any unneeded applications Disable unneeded services Use a NAT firewall, especially one that can capture illegitimate login requests and block those IP addresses from getting into your system Configure SSH and Apache to listen to non-standard ports Create a user account specifically to be used with SSH, and configure SSH to only allow connections from this user (eg. useradd mysshuser; passwd mysshuser; vi /etc/ssh/sshd_config : AllowUsers mysshusers AND PermitRootLogin no AND Port 196; restart SSHd) SIP: Choose secure passwords for accounts, and double-check the SIP profiles that allow dialing out through the POTS Q&A In vars.xml, what is default_password used for? <X-PRE-PROCESS cmd="set" data="default_password=1234"/> It's the SIP default password if none given in user files under conf/directory/default/: 1. cat 1000.xml <include> <user id="1000" mailbox="1000"> <params> <param name="password" value="$${default_password}"/> <param name="vm-password" value="1000"/> </params> What are the options to connect a FS server to a POTS line? To act as a VoIP gateway, you can use external solutions like Sangoma's USB device, or Ethernet-based solutions like Linksys' SPA-3102 or GrandStream's HT503. If you'd rather use a PCI card: As of April 2009, FS' OpenZAP interface can talk to hardware either directly (only Sangoma cards are supported), or indirectly through the Zaptel interface (which isn't available for Windows). How to configure routers to allow remote IP clients to connect to Freeswitch and/or POTS VoIP gateway? SIP TCP/UDP RTP UDP ? What about the connection between VoIP gateway and a remote SIP client? How to install FS as a service in Windows? What is mod_spidermonkey? The Mozilla SpiderMonkey Javascript (ECMA Script) engine What is mod_sofia? "This module wraps the sofia SIP library from Nokia." How to check my voic ?

10 Dial 4000, followed by the extension # and password (with the test accounts, password=extension) Articles to read in the Freeswitch wiki DONE Docs/MainPage DONE Download DONE Install guide Installation DONE Configuring FreeSWITCH Getting Started DONE Default Configuration Admin documentation (Includes examples, debugging, JavaScript examples, etc.) User documentation n conf/freeswitch.xml conf/vars.xml conf/autoload_configs/modules.conf.xml conf/autoload_configs/sofia.conf.xml conf/directory/ (user configuration) conf/sip_profiles/ (internal, external) conf/dialplan/ (Dialplan_XML, recipes) From Asterisk to Freeswitch Freeswitch FAQ SPA3102 How-To Home VOIP system using FreeSwitch and a Linksys 3102 voice gateway (UK Guide) by Rob Smart How To Set Up a Linksys SPA3102 VOIP Router/ATA for BT UK Other stuff to read SIP and NAT firewalls local setup (FreeSwitch and SIP phones) remote setup (SIP phone + possible utility to check that the firewall is SIP-friendly) Options: STUN + port maping, UPnP or nat-pmp (to automate port mapping), IAX ATCOM IAX Hard phones (530P?) DIAX softphone (looks ugly) I've used both AT530 and AT530P ip phones, they have good voice quality and somehow resistent to harsh environment like offices ;), except the keypad which after a year or more just sometimes types two digits with one push on a button. The AG188N ATA is also a good choise and we have some installation which work without any problem yet. Pika Warp: their support and development enviroment sucks http:// What to Do With a $99 Wall Wart Linux Server GSM gateways: EdgePBX, PORTech MV-370, OpenVox G400P (+ at least one GSM module + SIM card)

Stack Num IP Username Password

Stack Num IP Username Password This document applies to OpenVox GSM Gateway WGW1002,VS-GW1202-4/8G and VS-GW1600 series. There are two RJ45 Network ports, ETH1 and ETH2. If you choose ETH1, you can access Board 1 only, and access other

More information

Product Guide Version: 1.0

Product Guide Version: 1.0 ATCOM Analog Card AX-1600P Product Guide Version: 1.0 The Installation of AX-1600P with Trixbox 2.8.0.3 Content CONTACT ATCOM... 2 CHAPTER 1 THE INTRODUCTION OF AX-1600P... 3 CHAPTER 2 HARDWARE INTRODUCTION...3

More information

ATCOM IPPBX IP01 Product Guide Version: VoIPon Tel: +44 (0) Fax: +44 (0)

ATCOM IPPBX IP01 Product Guide Version: VoIPon   Tel: +44 (0) Fax: +44 (0) Figure: ATCOM IPPBX IP01 ATCOM IPPBX IP01 Product Guide Version: 1.0 2010-05-10 Content CONTACT ATCOM... 3 CHAPTER 1 THE INTRODUCTION OF IP01... 4 CHAPTER 2 ACCESS TO THE IP01... 6 2.1 WEB PAGE ACCESS

More information

DWG2008 Using With FreeSwitch

DWG2008 Using With FreeSwitch DWG2008 Using With FreeSwitch Dinstar Technologies Co., Ltd. Address: Floor 6, Guoxing Building, Changxing Road, Nanshan District, Shenzhen, China 518057 Telephone: +86 755 6130 2265 Fax: +86 755 2645

More information

Product Guide Version: 1.0

Product Guide Version: 1.0 ATCOM Analog Card AX-1600P Product Guide Version: 1.0 The Installation of AX-1600P with Ubuntu 8.10 Content CONTACT ATCOM...2 CHAPTER 1 THE INTRODUCTION OF AX-1600P...3 CHAPTER 2 HARDWARE INTRODUCTION...4

More information

Manual PBX IP Version: 1.0

Manual PBX IP Version: 1.0 Manual PBX IP 2008 Version: 1.0 Content CONTACT ATCOM... 3 CHAPTER 1 THE INTRODUCTION OF PBX-IP 2008... 4 CHAPTER 2 ACCESS TO THE PBX-IP 2008... 7 2.1 WEB PAGE ACCESS BY BROWSER... 7 2.2 SSH ACCESS BY

More information

800P Product Guide Version: 1.1

800P Product Guide Version: 1.1 ATCOM Analog Card AXE-800 800P Product Guide Version: 1.1 The Installation of AXE-800P with Centos 6.0 Content CONTACT ATCOM......2 CHAPTER 1 THE INTRODUCTION OF AXE-800P... 3 CHAPTER 2 HARDWARE INTRODUCTION...

More information

Analog Telephone Adapter Setup for Q-SYS Softphone

Analog Telephone Adapter Setup for Q-SYS Softphone Analog Telephone Adapter Setup for Q-SYS Softphone This document applies to this Cisco device: SPA232D Introduction This document covers the use of the SPA232D in the role of analog telephone adapter (ATA)

More information

Let s Install FreeSwitch

Let s Install FreeSwitch Let s Install FreeSwitch Created by: Mack Hendricks (mack@dopensource.com) Sponsored by Tip s for Running This Lab This lab material is provided for free by dopensource You will need a SIP Provider to

More information

Chapter 1 Introduction

Chapter 1 Introduction Etross-400E Manual Page 1 of 23 Version 1.0 Contents Chapter 1 Introduction... 3 Chapter 2 Hardware introduction... 6 Chapter 3 Intallation and configuration... 8 Chapter 4 Test example... 19 Chapter 5

More information

Sipura SPA 3000 How To. (c) Bicom Systems

Sipura SPA 3000 How To. (c) Bicom Systems Sipura SPA 3000 How To Sipura SPA 3000 How To All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording,

More information

Product Guide Version: 1.0

Product Guide Version: 1.0 ATCOM Analog Card AX-400P Product Guide Version: 1.0 The Installation of AX-400P with AsteriskNow 1.5.0 Content CONTACT ATCOM...2 CHAPTER 1 THE INTRODUCTION OF AX-400P... 3 CHAPTER 2 HARDWARE INTRODUCTION...4

More information

EP502/EP504 IP PBX 1.1 Overview

EP502/EP504 IP PBX 1.1 Overview 1.1 Overview The EP502/EP504 is an embedded Voice over IP (VoIP) Server with Session Initiation Protocol (SIP) to provide IP extension phone connection for global virtual office of small-to-medium business

More information

ANSEL FXS / 1 PSTN. VoIP Telephone Adaptor. User Manual V1.10

ANSEL FXS / 1 PSTN. VoIP Telephone Adaptor. User Manual V1.10 ANSEL 5518 1 FXS / 1 PSTN VoIP Telephone Adaptor User Manual V1.10 Quick Guide Step 1: Broadband (ADSL/Cable Modem) Connections for ANSEL 5518 A. Connect ANSEL 5518 WAN port to ADSL NAT Router as the following

More information

SPA400 Internet Telephony Gateway with 4 FXO Ports

SPA400 Internet Telephony Gateway with 4 FXO Ports SPA400 Internet Telephony Gateway with 4 FXO Ports Administration and Configuration Guide v1.0 Using the SPA400 The SPA400 features the ability to connect up to four (4) standard analog telephones lines

More information

Figure: ATCOM IPPBX IP04. ATCOM IPPBX IP04 Product Guide Version:

Figure: ATCOM IPPBX IP04. ATCOM IPPBX IP04 Product Guide Version: Figure: ATCOM IPPBX IP04 ATCOM IPPBX IP04 Product Guide Version: 1.0 2010-05-10 Content CONTACT ATCOM... 3 CHAPTER 1 THE INTRODUCTION OF IP04... 4 CHAPTER 2 ACCESS TO THE IP04... 7 2.1 WEB PAGE ACCESS

More information

Etross-1200P User s Manual

Etross-1200P User s Manual Etross-1200P User s Manual Page 1 of 31 Version 1.0 Contents Chapter 1 Introduction... 3 Chapter 2 Hardware introduction... 7 Chapter 3 Intallation and configuration... 9 Chapter 4 Test example... 26 Chapter

More information

A1610E/A1610P. OpenVox A1610E/A1610P/AE1610E/AE1610P User Manual. Date:05/26/2011. Version: 1.3. OpenVox-Best Cost Effective Asterisk Cards 深圳开源通信有限公司

A1610E/A1610P. OpenVox A1610E/A1610P/AE1610E/AE1610P User Manual. Date:05/26/2011. Version: 1.3. OpenVox-Best Cost Effective Asterisk Cards 深圳开源通信有限公司 深圳开源通信有限公司 OpenVox-Best Cost Effective Asterisk Cards OpenVox A1610E/A1610P/AE1610E/AE1610P User Manual A1610E/A1610P Date:05/26/2011 Version: 1.3 1 深圳开源通信有限公司 OpenVox-Best Cost Effective Asterisk Cards

More information

FreeSWITCH IP PBX with Twilio Elastic SIP Trunking

FreeSWITCH IP PBX with Twilio Elastic SIP Trunking FreeSWITCH IP PBX with Twilio Elastic SIP Trunking This guide shows how to configure FreeSWITCH to work with Twilio Elastic SIP trunking by walking you through how I got a test instance up and running.

More information

SoLink-Lite IP-PBX. Administrator Guide. (Version 1.0)

SoLink-Lite IP-PBX. Administrator Guide. (Version 1.0) SoLink-Lite IP-PBX Administrator Guide (Version 1.0) TABLE OF CONTENT 1.0 Introduction... 1 2.0 Setting Up the IP-PBX... 2 3.0 Logging On... 3 4.0 Configuring Network... 4 5.0 Configuring Hardware... 5

More information

WAN. System Networking Lab Table 1

WAN. System Networking Lab Table 1 System Networking Lab Table 1 In this diagram each system operates independently to supply network services to the phones on its LAN interface. The phones are powered by a Power over Ethernet switch. The

More information

Welltech WellGate User Manual

Welltech WellGate User Manual Welltech WellGate 2626 An Easy to Use PBX Gateway User Manual Copyright 2009 Welltech Computer Co., Ltd. All right reserved Table of Contents Introduction...2 WellGate 2626 - An Easy to Use PBX Gateway...2

More information

OpenVox A810E/AE810E Base on Elastix User Manual

OpenVox A810E/AE810E Base on Elastix User Manual 深圳开源通信有限公司 OpenVox A810E/AE810E Base on Elastix User Manual AE810E Date: 19/07/2011 Version: 1.2 OpenVox Communication Co. LTD. URL: www.openvox.cn 1 深圳开源通信有限公司 OpenVox-Best Cost Effective Asterisk Cards

More information

AX4B. ATCOM Digital Card AX4B/AX2B Product Guide 25/10/2011 Written by Robert.Ao

AX4B. ATCOM Digital Card AX4B/AX2B Product Guide 25/10/2011 Written by Robert.Ao AX4B ATCOM Digital Card AX4B/AX2B Product Guide 25/10/2011 Written by Robert.Ao Content CONTACT ATCOM... 2 CHAPTER 1 THE INTRODUCTION OF AX4B... 3 CHAPTER 2 HARDWARE INTRODUCTION... 4 CHAPTER 3 SOFTWARE

More information

Step by Step Guide. BRI Card Installation. (with Asterisk) Version 1.0

Step by Step Guide. BRI Card Installation. (with Asterisk) Version 1.0 Step by Step Guide BRI Card Installation (with Asterisk) Version 1.0 Table of Contents Hardware Setup... 1 Software Installation... 2 Installation of Pre-requisite packages... 2 Installation of Libpri

More information

OpenVox Communication Co.Ltd. OpenVox-Best Cost Effective Asterisk Cards

OpenVox Communication Co.Ltd. OpenVox-Best Cost Effective Asterisk Cards OpenVox Communication Co.Ltd OpenVox-Best Cost Effective Asterisk Cards Address:10/F, Building 6-A, Baoneng Science and Technology Industrial Park, Longhua New District, Shenzhen, Guangdong, China, 518109

More information

Configuring the Grandstream UCM6202 for use with TopView Voice Notification Updated August 2018

Configuring the Grandstream UCM6202 for use with TopView Voice Notification Updated August 2018 Configuring the Grandstream UCM6202 for use with TopView Voice Notification Updated August 2018 Contents Introduction... 2 Voice Notification in TopView... 2 Options for using VOIP in TopView... 2 How

More information

TT11 VoIP Router 1FXS/1FXO TA User Guide

TT11 VoIP Router 1FXS/1FXO TA User Guide TT11 VoIP Router 1FXS/1FXO TA User Guide Page 1 Table of Contents: 1.0 Introduction... 3 2.0 Package Contents... 3 3.0 Summary of LED & Connector Descriptions... 4 3.1 The Front LEDs... 4 3.2 The Rear

More information

FTA-102L. Free Roaming Gateway. User Manual

FTA-102L. Free Roaming Gateway. User Manual FTA102L Free Roaming Gateway User Manual FTA102L PORTech Communications Inc. Content 1. Introduction... 1 2. System Topology... 2 3. Function Description... 2 4. Parts list... 3 5. Dimension: 14*9*3 cm...

More information

FreeSWITCH IP PBX with Secure Twilio Elastic SIP Trunking

FreeSWITCH IP PBX with Secure Twilio Elastic SIP Trunking FreeSWITCH IP PBX with Secure Twilio Elastic SIP Trunking (Updated: 3/14/2017) Implementing security mechanisms in the Twilio Elastic SIP trunk provides secure and reliable data transfer between your SIP

More information

4 Port IP-PBX + SIP Gateway System

4 Port IP-PBX + SIP Gateway System 4 Port IP-PBX + SIP Gateway System The IPG-40XG is an embedded Voice over IP (VoIP) PBX Server with Session Initiation Protocol (SIP) to provide IP extension phone connections for global virtual office

More information

IP/PRI/FXS/BRI PBX. User Manual. Version 2.0

IP/PRI/FXS/BRI PBX. User Manual. Version 2.0 IP/PRI/FXS/BRI PBX User Manual Version 2.0 2 Table of Contents 1. Introduction... 6 1.1 Typical setup of IP/PRI/FXS/BRI PBX... 7 2. Getting Started With the IP/PRI/FXS/BRI PBX... 8 2.1 Hardware Setup...

More information

Basic FXO Gateway Configuration

Basic FXO Gateway Configuration Mediatrix units with FXO ports Revision 308 2015-06-25 Table of Contents Table of Contents Configuring the Mediatrix Unit 3 Getting Started 3 Logging On to the Mediatrix Unit Web Interface 3 Configuring

More information

Application Note 3Com VCX Connect with SIP Trunking - Configuration Guide

Application Note 3Com VCX Connect with SIP Trunking - Configuration Guide Application Note 3Com VCX Connect with SIP Trunking - Configuration Guide 28 May 2009 3Com VCX Connect Solution SIP Trunking Table of Contents 1 3COM VCX CONNECT AND INGATE... 1 1.1 SIP TRUNKING SUPPORT...

More information

Cisco Small Business SPA2102, SPA3102, SPA8000, SPA8800, PAP2T

Cisco Small Business SPA2102, SPA3102, SPA8000, SPA8800, PAP2T ADMINISTRATION GUIDE Cisco Small Business SPA2102, SPA3102, SPA8000, SPA8800, PAP2T Analog Telephone Adapters Cisco and the Cisco Logo are trademarks of Cisco Systems, Inc. and/or its affiliates in the

More information

Quick Installation Guide

Quick Installation Guide Quick Installation Guide IP/PRI/FXS/BRI PBX Version 2.1 Quick Installation Guide v2.1 www.cem-solutions.net 2 Table of Contents Initial Setup of IP/PRI/FXS/BRI PBX... 4 Notification LEDs (On the Front

More information

WellGate 2504 ( 4-FXS ) and WellGate 2540 (4-FXO gateway) in Peer to Peer mode with Hotline by port to port application.

WellGate 2504 ( 4-FXS ) and WellGate 2540 (4-FXO gateway) in Peer to Peer mode with Hotline by port to port application. WellGate 2504 ( 4-FXS ) and WellGate 2540 (4-FXO gateway) in Peer to Peer mode with Hotline by port to port application. Note : Please use Windows XP IE 6.0 web browser or above version to configure both

More information

RP-FSO522 2-Line FXO, 2-Line FXS SIP IP Gateway. Feature

RP-FSO522 2-Line FXO, 2-Line FXS SIP IP Gateway. Feature RP-FSO522 2-Line FXO, 2-Line FXS SIP IP Gateway RP-FSO522 is an 2-Line FXO plus 2-Line FXS gateway with SIP protocol IP device which allows to connect 2 Lines of analog PSTN telephone line and connect

More information

Version: epbxum_

Version: epbxum_ epbx-100a-128 User s Manual Version: epbxum_128.300 CH1. Overview 5 1.1 Specifications 5 1.2 Hardware Overview 7 1.2.1 Front Panel and LED Indication...7 1.2.2 Back Panel...8 CH2. Start to configure epbx-100a-128

More information

Release Note for N412

Release Note for N412 Yeastar Information Technology Co. Ltd. CONTENTS FIRMWARE VERSION 45.15.0.3... 3 FIRMWARE VERSION 45.15.0.1... 3 FIRMWARE VERSION 45.14.0.23... 5 FIRMWARE VERSION 45.14.0.22... 12 2/12 FIRMWARE VERSION

More information

User Manual NANO 2. Version 2.5

User Manual NANO 2. Version 2.5 Version 2.0 User Manual NANO 2 Version 2.5 Table of Contents 1. Introduction... 1 1.1. Typical setup of NanoPBX... 2 2. Getting Started With the NanoPBX... 3 2.1. Installation... 3 2.2. Accessing the GUI

More information

Step by Step Guide. BRI Card Installation. (with Trixbox ) Version 1.0

Step by Step Guide. BRI Card Installation. (with Trixbox ) Version 1.0 Step by Step Guide BRI Card Installation (with Trixbox-2.8.0.4) Version 1.0 Table of Contents Hardware Setup... 1 Software Installation... 2 Software Configuration... 3 Hardware Setup 1. Insert the BRI

More information

Grandstream Networks, Inc. UCM6200 Basic Configuration Guide

Grandstream Networks, Inc. UCM6200 Basic Configuration Guide Grandstream Networks, Inc. Table of Contents OVERVIEW... 4 SETUP GUIDE SCENARIO... 4 QUICK INSTALLATION... 5 Connecting the UCM6200... 5 Access UCM6200 series Web Interface... 5 CREATE USER EXTENSION...

More information

OpenVox A400P/A400E User Manual

OpenVox A400P/A400E User Manual 深圳开源通信有限公司 OpenVox-Best Cost Effective Asterisk Cards OpenVox A400P/A400E User Manual Written by: James.zhu Email:james.zhu@openvox.cn,zhulizhong@gmail.com Date: 30/12/2008 Version: 0.03 1 深圳开源通信有限公司 OpenVox-Best

More information

Version: SIPPBXUM.100

Version: SIPPBXUM.100 SIPPBX 6200A User s Manual Version: SIPPBXUM.100 CH1. Overview... - 5-1.1 Specifications... - 5-1.2 Hardware Overview... - 8-1.2.1 The Front Panel... - 8-1.2.2 The Back Panel... - 8 - CH2. Start to configure

More information

for VoIP Gateway Series

for VoIP Gateway Series Smart Web Manager for VoIP Gateway Series www.addpac.com AddPac Technology 2010, Sales and Marketing Contents Web Connection Main Page Layout System Configuration Language, WAN Setup, LAN Setup, NAT, NTP,

More information

New Rock Technologies, Inc. OM Series IP Telephony System. Administrator Manual OM20 OM50. Document Version:

New Rock Technologies, Inc. OM Series IP Telephony System. Administrator Manual OM20 OM50.   Document Version: OM Series IP Telephony System Administrator Manual OM20 OM50 http://www.newrocktech.com Document Version: 201511 Amendment Records Document Rev. 01 (December 26, 2015) Copyright 2015 All Rights Reserved.

More information

ADMINISTRATION GUIDE Cisco Small Business Pro SPA9000 Voice System Version 6.1

ADMINISTRATION GUIDE Cisco Small Business Pro SPA9000 Voice System Version 6.1 ADMINISTRATION GUIDE Cisco Small Business Pro SPA9000 Voice System Version 6.1 SPA9000 Voice System, SPA400 Internet Telephony Gateway with 4 FXO ports and SPA9XX IP Phones OL-17899-01 Contents About This

More information

FREUND SIP SW - V SIP-server setup

FREUND SIP SW - V SIP-server setup FREUND SIP SW - V1.7.13 SIP-server setup Content 1. Product Setup 4 2. Log in and Home 5 3. Menu 9 3.1 Tools 9 3.1.1 Dashboard 9 3.1.2 Extensions 10 3.1.3 Trunks 14 3.1.4 Groups 18 3.1.5 Ring groups 20

More information

OpenVox A400P/A400E User Manual

OpenVox A400P/A400E User Manual 深圳开源通信有限公司 OpenVox-Best Cost Effective Asterisk Cards OpenVox A400P/A400E User Manual Written by: James.zhu Email:james.zhu@openvox.cn,zhulizhong@gmail.com Date: 30/12/2008 Version: 0.03 OpenVox Communication

More information

Operafone IP Professional installation guide

Operafone IP Professional installation guide Operafone IP Professional installation guide 1 Specifications are subject to change without notice. Facilities described may or may not be supported by your network. Operafone is the registered trademark

More information

Grandstream Networks, Inc. Peering HT8XX with GXW410X

Grandstream Networks, Inc. Peering HT8XX with GXW410X Grandstream Networks, Inc. Peering HT8XX with GXW410X Table of Contents OVERVIEW... 3 SCENARIO 1: PEERING ONE HT8XX WITH GXW410X... 4 HT8XX Configuration... 4 GXW410X Configuration... 6 One-To-One mapping...

More information

Analog VoIP Gateway (AA50) Configuration Guide Ascom Freeset IP-DECT System

Analog VoIP Gateway (AA50) Configuration Guide Ascom Freeset IP-DECT System Analog VoIP Gateway (AA50) Configuration Guide Ascom Freeset IP-DECT System Introduction This document outlines the necessary steps and guidelines to optimally integrate the Ascom Freeset IP-DECT System

More information

Application Notes for TelStrat Engage Record Version 3.3 with Avaya Business Communication Manger Release 6.0 VoIP Recording Issue 1.

Application Notes for TelStrat Engage Record Version 3.3 with Avaya Business Communication Manger Release 6.0 VoIP Recording Issue 1. Avaya Solution & Interoperability Test Lab Application Notes for TelStrat Engage Record Version 3.3 with Avaya Business Communication Manger Release 6.0 VoIP Recording Issue 1.0 Abstract These Application

More information

Grandstream Networks, Inc. HT802 Analog Telephone Adaptor User Guide

Grandstream Networks, Inc. HT802 Analog Telephone Adaptor User Guide Grandstream Networks, Inc. HT802 Analog Telephone Adaptor User Guide COPYRIGHT 2016 Grandstream Networks, Inc. http://www.grandstream.com All rights reserved. Information in this document is subject to

More information

VG422R. User s Manual. Rev , 5

VG422R. User s Manual. Rev , 5 VG422R User s Manual Rev 1.0 2003, 5 CONGRATULATIONS ON YOUR PURCHASE OF VG422R... 1 THIS PACKAGE CONTAINS... 1 CONFIRM THAT YOU MEET INSTALLATION REQUIREMENTS... 1 1. INSTALLATION GUIDE... 2 1.1. HARDWARE

More information

AC1200M/MS. User Manual

AC1200M/MS. User Manual AC1200M/MS User Manual Table of Contents User Manual... 1 1 Preface... 1 2 LED Indicators and Connectors... 1 2.1 LED Indicators... 1 2.2 Hardware Installation... 2 3 Voice Prompt (AC1200MS)... 2 4 User

More information

EIP 7012 Essence VoIP Phone Administration Guide Version 1.0B

EIP 7012 Essence VoIP Phone Administration Guide Version 1.0B Essence Technology EIP 7012 Essence VoIP Phone Administration Guide Version 1.0B Table of Contents 1 Introduction... 1 1.1 Hardware Overview... 1 1.2 Software Overview... 1 2 Keypad interface for IP Phone

More information

Please follow the steps that are listed here to get started with your Berkshire 10K ippbx telephone system.

Please follow the steps that are listed here to get started with your Berkshire 10K ippbx telephone system. Please follow the steps that are listed here to get started with your Berkshire 10K ippbx telephone system. Step 1 Power-up and log into your PC. Unplug any existing ethernet cable from your PC. Step 2

More information

Reference. Application

Reference. Application This document will show one way of configuring the Vyatta router as an Internet firewall/gateway and will demonstrate the configuration for use with a cable modem. Furthermore, the LAN interfaces are (optionally)

More information

UIP1869V User Interface Guide

UIP1869V User Interface Guide UIP1869V User Interface Guide (Firmware version 0.1.8 and later) Table of Contents Opening the UIP1869V's Configuration Utility... 3 Connecting to Your Broadband Modem... 5 Setting up with DHCP... 5 Updating

More information

idor Mobile Setup idor Mobile : idor Mobile System Manual V1.1 1

idor Mobile Setup idor Mobile : idor Mobile System Manual V1.1 1 idor Mobile Setup Table of Contents Login into the Web-GUI... 3 Network Settings... 4 Set Static IP Address... 5 Apartments... 7 Add an Apartment... 7 Edit an Apartment... 9 Delete an Apartment... 9 SIP

More information

OneStream Programming Guide

OneStream Programming Guide OneStream Programming Guide Version 7 Document Control Date Document Version Change Oct 2006 Draft 1 First Draft Release of Document Jan 2007 Draft 2 Added Status web page May 2007 3 Added Flexible / Failover

More information

ScopTEL TM IP PBX Software. PSTN Interfaces and Gateways

ScopTEL TM IP PBX Software. PSTN Interfaces and Gateways ScopTEL TM IP PBX Software PSTN Interfaces and Gateways Gateways A VoIP gateway is as a bridge between: Interfaces: (T1/E1, FXO, FXS) Protocols: SIP, Cisco SCCP/Skinny, MGCP (legacy protocol), and H.323

More information

Release Notes for MyPBX SOHO V4&V5&V6. Version X. Yeastar Information Technology Co. Ltd.

Release Notes for MyPBX SOHO V4&V5&V6. Version X. Yeastar Information Technology Co. Ltd. Release Notes for MyPBX SOHO V4&V5&V6 Version 70.19.0.X Yeastar Information Technology Co. Ltd. ===Firmware Version: V70.19.0.47== Applicable Model: MyPBX SOHO V4&V5&V6 Release Date: September 14, 2015

More information

AddPac Technology. 2012, Sales and Marketing.

AddPac Technology. 2012, Sales and Marketing. SOHO GSM Gateway Solution AddPac Technology 2012, Sales and Marketing www.addpac.com Contents SOHO GSM Gateway Service Diagram SOHO GSM Gateway Series AP-GS501(1ch) AP-GS701(1ch) AP-GS702(2ch) AP-GS802(2ch)

More information

Release Note for N412

Release Note for N412 Version 45.14.0.X Yeastar Information Technology Co. Ltd. FIRMWARE VERSION 45.14.0.23 DATE October 8, 2016 CHANGES SINCE FIRMWARE RELEASE 45.14.0.22 NEW FEATURES 1. Added support for switching Follow Me

More information

SIP Proxy Server. Administrator Installation and Configuration Guide. 06SIPXM.SY1.00a.EN1

SIP Proxy Server. Administrator Installation and Configuration Guide. 06SIPXM.SY1.00a.EN1 SIP Proxy Server Administrator Installation and Configuration Guide 06SIPXM.SY1.00a.EN1 DSG, DSG logo, InterPBX, InterServer, Blaze Series, Savanna Series, VG5000, IP580, IP500, InterClient, NAT Proxy,

More information

ICE-008 IP PBX. 1 Product Information 1.1 New Mini PBX. 1.2 Features System Features Call Handling Features

ICE-008 IP PBX. 1 Product Information 1.1 New Mini PBX. 1.2 Features System Features Call Handling Features ICE-008 IP PBX 1 Product Information 1.1 New Mini PBX ICE008 is a new generation office communication equipment that delivers traditional PBX (private branch exchange) functions and more with advanced

More information

Version: V1.0. Yeastar Technology Co., Ltd. Date: 25 th, July, 2012

Version: V1.0. Yeastar Technology Co., Ltd. Date: 25 th, July, 2012 MyPBX U500 Installation Guide Version: V1.0 Yeastar Technology Co., Ltd Date: 25 th, July, 2012 http://www.yeastar.com 1/13 Contents MyPBX U500 Installation Guide 1. PREPARATION BEFORE INSTALLATION...

More information

EC-11 Ethernet Converter

EC-11 Ethernet Converter EC-11 Ethernet Converter PSTN Contact ID to TCP Converter Installation and Operations Manual Version 8.H3.MID 1 Table of Contents About EC-11 Ethernet Converter... 3 Circuit Board Layout and Wiring Diagram...

More information

New Rock Technologies, Inc. OM Series IP Telephony System. Administrator Manual OM20 OM50. Document Version:

New Rock Technologies, Inc. OM Series IP Telephony System. Administrator Manual OM20 OM50.   Document Version: OM Series IP Telephony System Administrator Manual OM20 OM50 http://www.newrocktech.com Document Version: 201511 Amendment Records Document Rev. 01 (December 26, 2015) Copyright 2016 All Rights Reserved.

More information

8-Port GSM VoIP Gateway Solution for

8-Port GSM VoIP Gateway Solution for 8-Port GSM VoIP Gateway Solution for Small & Medium Enterprise AddPac Technology Sales and Marketing www.addpac.com Contents Network Service Diagram Standard GSM VoIP Gateway Application GSM VoIP Gateway

More information

InSciTek Microsystems 635 Cross Keys Park Fairport, NY Guide to New Features Release 4.5

InSciTek Microsystems 635 Cross Keys Park Fairport, NY Guide to New Features Release 4.5 InSciTek Microsystems 635 Cross Keys Park Fairport, NY 14450 585-421-3850 Guide to New Features Release 4.5 Table of Contents Defining Resources...1 Adding an Outside Line...1 Adding Direct Inward Dialing...4

More information

Phone Adapter with Router

Phone Adapter with Router Voice User Guide Model No. SPA2102 Copyright and Trademarks Specifications are subject to change without notice. Linksys is a registered trademark or trademark of Cisco Systems, Inc. and/or its affiliates

More information

KTA1010 INSTALL GUIDE

KTA1010 INSTALL GUIDE KTA1010 INSTALL GUIDE Table of Contents 1 Check for Required Items... 2 2 Installation... 2 2.1 Installation View... 2 2.2 Connection Chart to determine cable types... 3 3 Ready to use... 3 3.1 Network

More information

OpenVox Communication Co. LTD.

OpenVox Communication Co. LTD. OpenVox Communication Co.Ltd A810E/AE810E on DAHDI User Manual Version: 2.2 OpenVox Communication Co. LTD. URL: www.openvox.cn OpenVox Communication Co.Ltd OpenVox-Best Cost Effective Asterisk Cards Address:

More information

OpenVox Communication Co. LTD.

OpenVox Communication Co. LTD. OpenVox Communication Co.Ltd A400P on DAHDI User Manual Version: 2.2 OpenVox Communication Co. LTD. URL: www.openvox.cn OpenVox Communication Co.Ltd OpenVox-Best Cost Effective Asterisk Cards Address:

More information

Application Note Asterisk BE with Remote Phones - Configuration Guide

Application Note Asterisk BE with Remote Phones - Configuration Guide Application Note Asterisk BE with Remote Phones - Configuration Guide 15 January 2009 Asterisk BE - Remote SIP Phones Table of Contents 1 ASTERISK BUSINESS EDITION AND INGATE... 1 1.1 REMOTE SIP PHONE

More information

Cisco SPA400 Voic System with 4-Port FXO Gateway Cisco Small Business Voice Systems

Cisco SPA400 Voic System with 4-Port FXO Gateway Cisco Small Business Voice Systems Cisco SPA400 Voicemail System with 4-Port FXO Gateway Cisco Small Business Voice Systems Voicemail System and Multiport PSTN Gateway Solution for the Cisco SPA9000 Highlights Integrated voicemail and PSTN

More information

VoIP ATA series (ATA171plus, ATA172plus, ATA-171, ATA-172, ATA-171M, ATA-171P)

VoIP ATA series (ATA171plus, ATA172plus, ATA-171, ATA-172, ATA-171M, ATA-171P) ATA Web User Guide VoIP ATA series (ATA171plus, ATA172plus, ATA-171, ATA-172, ATA-171M, ATA-171P) User Guide Released Date : January-2015 Firmware Version : V.303 1. Introduction... 4 2. Hardware Overview...

More information

PLEASE READ. This user manual is from the manufacturer Jive Communications may not support some features discussed in this document.

PLEASE READ. This user manual is from the manufacturer Jive Communications may not support some features discussed in this document. PLEASE READ This user manual is from the manufacturer Jive Communications may not support some features discussed in this document. Please see our online documentation or contact us for a complete list

More information

Release Notes. for Kerio Operator 1.2.1

Release Notes. for Kerio Operator 1.2.1 Release Notes for Kerio Operator 1.2.1 2012 Kerio Technologies s.r.o. All rights reserved. Date: March 12th, 2012 1 Welcome to the Kerio Operator 1.2.1 Kerio Operator is a PBX software for small and medium

More information

Setting Up a Serial (SMDI, MCI, or MD-110) PIMG Integration with Cisco Unity Connection

Setting Up a Serial (SMDI, MCI, or MD-110) PIMG Integration with Cisco Unity Connection CHAPTER 11 Setting Up a Serial (SMDI, MCI, or MD-110) PIMG Integration with Cisco Unity Connection For detailed instructions for setting up a serial (SMDI, MCI, or MD-110) PIMG integration with Cisco Unity

More information

Application Note Asterisk BE with SIP Trunking - Configuration Guide

Application Note Asterisk BE with SIP Trunking - Configuration Guide Application Note Asterisk BE with SIP Trunking - Configuration Guide 23 January 2009 Asterisk BE SIP Trunking Table of Contents 1 ASTERISK BUSINESS EDITION AND INGATE... 1 1.1 SIP TRUNKING SUPPORT... 2

More information

IPitomy IP PBX User Guide

IPitomy IP PBX User Guide IPitomy IP PBX User Guide Table of Contents Introduction... 1 About the IPitomy IP PBX... 1 Benefits of VoIP Technology... 1 How This Guide Works... 2 Web-based System Setup... 2 The Installation Worksheet...

More information

SIP Proxy Server. Administrator Installation and Configuration Guide. 08SIPXM.SY2.20a.EN2

SIP Proxy Server. Administrator Installation and Configuration Guide. 08SIPXM.SY2.20a.EN2 SIP Proxy Server Administrator Installation and Configuration Guide 08SIPXM.SY2.20a.EN2 DSG, DSG logo, InterPBX, InterServer, Blaze Series, Savanna, VG5000, VG6000, VG7000, IP590, IP580, IP500, IP510,

More information

IPPBX IP02 User Manual

IPPBX IP02 User Manual For Firmware Version: V4.0 2015-11-16 Contents Contents...1 1. Introduction... 3 2. Connection and Change IP Address of IPPBX...5 2.1 Connection... 5 2.2 WAN Settings...6 2.3 LAN Settings... 7 2.4 DHCP

More information

UCM6102/6104/6108/6116 Configuration

UCM6102/6104/6108/6116 Configuration UCM6102/6104/6108/6116 Configuration This document introduces manual configuration steps performed for interoperability testing between AccessLine and Grandstream UCM6102/6104/6108/6116. Configuration

More information

OpenVox B100P Install Manual for dahdi on opensuse

OpenVox B100P Install Manual for dahdi on opensuse OpenVox B100P Install Manual for dahdi on opensuse Thanks sipi very much! Written By: sipi Notice: The DAHDI version above 2.5.0.1 from OpenVox official website has included driver module of B100P, so

More information

Cisco Unified Communications UC320W Pre-Installation Site Information

Cisco Unified Communications UC320W Pre-Installation Site Information Cisco Unified Communications UC320W Pre-Installation Site Information Use this workbook to gather information from your customer before you install the Cisco Unified Communications UC320W at the site.

More information

DMP 128 Plus C V DMP 128 Plus C V AT

DMP 128 Plus C V DMP 128 Plus C V AT DMP 128 Plus C V DMP 128 Plus C V AT Interactive Intelligence Configuration Guide REVISION: 1.0.1 DATE: MARCH 7 TH 2018 Revision Log Date Version Notes Feb 9 th 2018 1.0 First Release: Applies to Firmware

More information

HT818 Firmware Release Note

HT818 Firmware Release Note HT818 Firmware Release Note Table of Content FIRMWARE VERSION 1.0.10.6... 3 PRODUCT NAME... 3 DATE... 3 FIRMWARE FILE INFORMATION... 3 ENHANCEMENT... 3 BUG FIX... 3 NEW FEATURES OVERVIEW... 4 VISUAL MWI

More information

ZyXEL V120 Support Notes. ZyXEL V120. (V120 IP Attendant 1 Runtime License) Support Notes

ZyXEL V120 Support Notes. ZyXEL V120. (V120 IP Attendant 1 Runtime License) Support Notes ZyXEL V120 (V120 IP Attendant 1 Runtime License) Support Notes Version 1.00 April 2009 1 Contents Overview 1. Overview of V120 IP Attendant...3 2. Setting up the V120...4 3. Auto Provision...7 4. V120

More information

Quick Installation Guide

Quick Installation Guide Quick Installation Guide BRI Gateway Version 2.1 Table of Contents Hardware Setup... 1 Accessing the WEB GUI... 2 Creating SIP Trunks... 3 Creating BRI Trunks... 4 Call Routing Rules... 4 Hardware Setup

More information

Configure the ATA 191

Configure the ATA 191 Telephony s, page 1 Product-Specific Configuration Parameters, page 7 Add Users to Cisco Unified page 12 Telephony s The following table lists the supported telephony features. Use Cisco Unified Communications

More information

Cisco 504 IP phone. An Administrator's Guide

Cisco 504 IP phone. An Administrator's Guide Cisco 504 IP phone An Administrator's Guide Contents Introduction to Horizon... 4 SETTING UP YOUR PHONE... 5 What you ll need... 5 Assembling the phone... 5 Connecting your router... 6 Connecting the service...

More information

3050 Integrated Communications Platform

3050 Integrated Communications Platform 3050 Integrated Communications Platform Network Configuration Guide Release 1 October 2002 Copyright 2002 Mitel Networks Corporation. This document is unpublished and the foregoing notice is affixed to

More information

Grandstream Networks, Inc. HT801/HT802 Analog Telephone Adaptors User Guide

Grandstream Networks, Inc. HT801/HT802 Analog Telephone Adaptors User Guide Grandstream Networks, Inc. HT801/HT802 Analog Telephone Adaptors User Guide COPYRIGHT 2017 Grandstream Networks, Inc. http://www.grandstream.com All rights reserved. Information in this document is subject

More information

ScopTEL TM IP PBX Software. Basic Installation Hierarchy for Telephony Server

ScopTEL TM IP PBX Software. Basic Installation Hierarchy for Telephony Server ScopTEL TM IP PBX Software Basic Installation Hierarchy for Telephony Server Basic Installation Hierarchy for Telephony Server Therefore the purpose of this document is to provide a visual walkthrough

More information