login | register
Thu 07 of Aug, 2008 [23:48 UTC]

voip-info.org

Discuss [1] History

Asterisk setup success 1

Created by: oej,Last modification on Wed 05 of Nov, 2003 [07:33 UTC]

Hardware Configurations

Machine name phone:

  • SuperMicro 5011E
    • 1200 PIII
    • 256 megs memory
    • 40 gig IDE HD
    • Digium T400P
    • ADIT 600 Channelbank

Machine name pbx:

  • Generic system
    • 1100 Celeron
    • 256 megs memory
    • 80 gig IDE HD
    • Digium T100P
    • Zhone Zplex 10b Channelbank

Description of deployment.

  • 1 PRI from Telcove(formerly Adelphia) into phone located at our Colocation provider.
  • 1 point to point T1 from Telcove for data traffic from Colocation to our office.
  • The phone machine acts as a switch only, and has little local load.
  • phone splits off 1 DID to the local ADIT 600 for a legacy answering system.
  • phone sends the rest of our 19 DID lines to pbx via GSM compressed IAX2 protocol.
  • The machine named pbx does local extension work.
  • pbx is used as a development platform for our software to replace legacy answering system.
  • 23 incoming lines with 10-13 lines peak being used on the legacy system, and 2-4 lines peak being used as extensions.
  • Has been in nearly fault free operation since 05-2002.



Comments

Comments Filter
222

333Sample Adit 600 mgcp.conf / extensions.conf

by , Thursday 17 of February, 2005 [13:25:19 UTC]
This is NOT the configuration for the above example, just an example of how to get an Adit 600 channelbank and Asterisk to interoperate. Technically this is an Adit 600 sitting behind an Edgewater box, but the Edgewater box just passes MGCP through. We had some TCP/IP issues (inconsistant ping) with our Adit 600 so the Edgewater was thrown in to fix that and to get QOS and MOS scoreing.

; mgcp.conf
[general]]
port = 2427
bindaddr = 0.0.0.0

[00e0976b6625]] ;mac address of Adit
host = 65.76.240.222
context = default
canreinvite = no
threewaycalling = yes
cancallforward = yes
transfer = yes
callwaiting = yes
wcardep = *
slowsequence = yes
line => a001
line => a002
line => a003
line => a004
line => a005
line => a006
line => a007
line => a008
line => a009
line => a010
line => a011
line => a012
line => a013
line => a014
line => a015
line => a016
line => a017
line => a018
line => a019
line => a020
line => a021
line => a022
line => a023
line => a024
line => a025
line => a026
line => a027
line => a028
line => a029
line => a030
line => a031
line => a032


; extensions.conf excerpt
exten => 1000,1,Dial(MGCP/a001@00e0976b6625)

anders-asterisk at bandwidth.com