<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.linuxmce.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mduno</id>
	<title>LinuxMCE - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.linuxmce.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mduno"/>
	<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php/Special:Contributions/Mduno"/>
	<updated>2026-07-21T22:50:29Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.44.0</generator>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=User:Mduno&amp;diff=22919</id>
		<title>User:Mduno</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=User:Mduno&amp;diff=22919"/>
		<updated>2010-04-30T18:57:48Z</updated>

		<summary type="html">&lt;p&gt;Mduno: /* note from tschak */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=TELECOM SETUP=&lt;br /&gt;
==Setting up LinuxMCE to use Callcentric&#039;s VoIP Service(s)==&lt;br /&gt;
&lt;br /&gt;
Setting up LinuxMCE to use Callcentric&#039;s VoIP service(s) is fairly straightforward using the steps provided in &amp;quot;How to Properly Add Support for SIP Providers&amp;quot;:&lt;br /&gt;
&lt;br /&gt;
http://wiki.linuxmce.org/index.php/How_to_properly_add_support_for_SIP_providers&lt;br /&gt;
&lt;br /&gt;
as well as Callcentric&#039;s freepbx / trixbox configuration page:&lt;br /&gt;
&lt;br /&gt;
http://www.callcentric.com/support/device/trixbox&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Create the Callcentric Config File&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
1. In a terminal session, make yourself &amp;quot;sudo su&amp;quot; user.&lt;br /&gt;
&lt;br /&gt;
2. Since Callcentric provides VoIP based phone services using the SIP protocol, copy the Broadvoice config file as a template for editing with Callcentric&#039;s parameters:&lt;br /&gt;
 &amp;quot;cp /usr/pluto/bin/create_amp_broadvoice.pl /usr/pluto/bin/create_amp_callcentric.pl&amp;quot;&lt;br /&gt;
3. Edit the Callcentric config file:&lt;br /&gt;
 &amp;quot;nano /usr/pluto/bin/create_amp_callcentric.pl&amp;quot;&lt;br /&gt;
making the following changes:&lt;br /&gt;
&lt;br /&gt;
3.1 Phone Line declaration section; change the declared host to reflect callcentric.com&lt;br /&gt;
 my $DECLARED_HOST = &amp;quot;callcentric.com&amp;quot;;&lt;br /&gt;
3.2 Trunk section changes:&lt;br /&gt;
* &amp;lt;font&amp;gt;Change &amp;lt;/font&amp;gt;channelid&amp;lt;font&amp;gt; to &amp;lt;/font&amp;gt;callcentric&lt;br /&gt;
 $TRUNK_VARS{&#039;channelid&#039;}=&amp;quot;callcentric&amp;quot;;&lt;br /&gt;
* &amp;lt;font&amp;gt;Remove the following &#039;&amp;lt;/font&amp;gt;usercontext&amp;lt;font&amp;gt;&#039; and &#039;&amp;lt;/font&amp;gt;userconfig&amp;lt;font&amp;gt;&#039; lines:&amp;lt;/font&amp;gt;&lt;br /&gt;
 $TRUNK_VARS{&#039;usercontext&#039;}=&amp;quot;$DECLARED_HOST&amp;quot;;&lt;br /&gt;
 $TRUNK_VARS{&#039;userconfig&#039;} =&amp;quot;context=from-pstn\n&amp;quot;;&lt;br /&gt;
 $TRUNK_VARS{&#039;userconfig&#039;} .=&amp;quot;dtmf=inband\n&amp;quot;;&lt;br /&gt;
 $TRUNK_VARS{&#039;userconfig&#039;} .=&amp;quot;dtmfmode=inband\n&amp;quot;;&lt;br /&gt;
 $TRUNK_VARS{&#039;userconfig&#039;} .=&amp;quot;fromdomain=$DECLARED_HOST\n&amp;quot;;&lt;br /&gt;
 $TRUNK_VARS{&#039;userconfig&#039;} .=&amp;quot;host=$DECLARED_HOST\n&amp;quot;;&lt;br /&gt;
 $TRUNK_VARS{&#039;userconfig&#039;} .=&amp;quot;insecure=very\n&amp;quot;;&lt;br /&gt;
 $TRUNK_VARS{&#039;userconfig&#039;} .=&amp;quot;nat=yes\n&amp;quot;;&lt;br /&gt;
 $TRUNK_VARS{&#039;userconfig&#039;} .=&amp;quot;secret=$DECLARED_USERPASSWD\n&amp;quot;;&lt;br /&gt;
 $TRUNK_VARS{&#039;userconfig&#039;} .=&amp;quot;type=user\n&amp;quot;;&lt;br /&gt;
 $TRUNK_VARS{&#039;userconfig&#039;} .=&amp;quot;user=$DECLARED_USERNAME\n&amp;quot;;&lt;br /&gt;
 $TRUNK_VARS{&#039;userconfig&#039;} .=&amp;quot;username=$DECLARED_USERNAME\n&amp;quot;;&lt;br /&gt;
3.3 Setup Callcentric registration string.&lt;br /&gt;
 $TRUNK_VARS{&#039;register&#039;}=&amp;quot;$DECLARED_USERNAME:$DECLARED_USERPASSWD\@$DECLARED_HOST\/$DECLARED_USERNAME&amp;quot;;&lt;br /&gt;
3.4 Adjust &#039;routename&#039; in ADD OUTGOING ROUTING section to &amp;quot;to-callcentric&amp;quot;&lt;br /&gt;
 {&lt;br /&gt;
     chomp;&lt;br /&gt;
     if($_ =~ /[&amp;lt;]option value[=]\&amp;quot;([^\&amp;quot;]+)\&amp;quot;[&amp;gt;]SIP\/callcentric[&amp;lt;]\/option[&amp;gt;]/)&lt;br /&gt;
     {&lt;br /&gt;
         $OUT_ROUTE=$1;&lt;br /&gt;
     }&lt;br /&gt;
 }&lt;br /&gt;
4. Write changes (CNTRL+O) and exit (CNTRL+X)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Pulling Callcentric Config into the Web Admin&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
1. In a terminal session, make yourself &amp;quot;sudo su&amp;quot; user.&lt;br /&gt;
&lt;br /&gt;
2. Edit the provider list:&lt;br /&gt;
 &amp;quot;nano /etc/asterisk/provider_list.txt&amp;quot;&lt;br /&gt;
adding the following entry at the bottom of the list:&lt;br /&gt;
&lt;br /&gt;
 callcentric     http://www.callcentric.com      callcentric     SIP&lt;br /&gt;
Tab between entries.&lt;br /&gt;
&lt;br /&gt;
3. Write changes (CNTRL+O) and exit (CNTRL+X)&lt;br /&gt;
&lt;br /&gt;
== note from tschak ==&lt;br /&gt;
&lt;br /&gt;
could you please work with me to put this script into the distribution, once you&#039;re done with it? Thanks. --[[User:Tschak909|Tschak909]] 05:41, 29 April 2010 (CEST)&lt;br /&gt;
&lt;br /&gt;
I would be glad to work with you on getting the script into the distribution.  The script has been working for me for the last several weeks.  Presumably you need a copy.  How do you recommend proceeding?&lt;br /&gt;
--[[User:Mduno|Mduno]] 20:57, 30 April 2010 (CEST)&lt;/div&gt;</summary>
		<author><name>Mduno</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=User:Mduno&amp;diff=22899</id>
		<title>User:Mduno</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=User:Mduno&amp;diff=22899"/>
		<updated>2010-04-28T01:05:29Z</updated>

		<summary type="html">&lt;p&gt;Mduno: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=TELECOM SETUP=&lt;br /&gt;
==Setting up LinuxMCE to use Callcentric&#039;s VoIP Service(s)==&lt;br /&gt;
&lt;br /&gt;
Setting up LinuxMCE to use Callcentric&#039;s VoIP service(s) is fairly straightforward using the steps provided in &amp;quot;How to Properly Add Support for SIP Providers&amp;quot;:&lt;br /&gt;
&lt;br /&gt;
http://wiki.linuxmce.org/index.php/How_to_properly_add_support_for_SIP_providers&lt;br /&gt;
&lt;br /&gt;
as well as Callcentric&#039;s freepbx / trixbox configuration page:&lt;br /&gt;
&lt;br /&gt;
http://www.callcentric.com/support/device/trixbox&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Create the Callcentric Config File&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
1. In a terminal session, make yourself &amp;quot;sudo su&amp;quot; user.&lt;br /&gt;
&lt;br /&gt;
2. Since Callcentric provides VoIP based phone services using the SIP protocol, copy the Broadvoice config file as a template for editing with Callcentric&#039;s parameters:&lt;br /&gt;
 &amp;quot;cp /usr/pluto/bin/create_amp_broadvoice.pl /usr/pluto/bin/create_amp_callcentric.pl&amp;quot;&lt;br /&gt;
3. Edit the Callcentric config file:&lt;br /&gt;
 &amp;quot;nano /usr/pluto/bin/create_amp_callcentric.pl&amp;quot;&lt;br /&gt;
making the following changes:&lt;br /&gt;
&lt;br /&gt;
3.1 Phone Line declaration section; change the declared host to reflect callcentric.com&lt;br /&gt;
 my $DECLARED_HOST = &amp;quot;callcentric.com&amp;quot;;&lt;br /&gt;
3.2 Trunk section changes:&lt;br /&gt;
* &amp;lt;font&amp;gt;Change &amp;lt;/font&amp;gt;channelid&amp;lt;font&amp;gt; to &amp;lt;/font&amp;gt;callcentric&lt;br /&gt;
 $TRUNK_VARS{&#039;channelid&#039;}=&amp;quot;callcentric&amp;quot;;&lt;br /&gt;
* &amp;lt;font&amp;gt;Remove the following &#039;&amp;lt;/font&amp;gt;usercontext&amp;lt;font&amp;gt;&#039; and &#039;&amp;lt;/font&amp;gt;userconfig&amp;lt;font&amp;gt;&#039; lines:&amp;lt;/font&amp;gt;&lt;br /&gt;
 $TRUNK_VARS{&#039;usercontext&#039;}=&amp;quot;$DECLARED_HOST&amp;quot;;&lt;br /&gt;
 $TRUNK_VARS{&#039;userconfig&#039;} =&amp;quot;context=from-pstn\n&amp;quot;;&lt;br /&gt;
 $TRUNK_VARS{&#039;userconfig&#039;} .=&amp;quot;dtmf=inband\n&amp;quot;;&lt;br /&gt;
 $TRUNK_VARS{&#039;userconfig&#039;} .=&amp;quot;dtmfmode=inband\n&amp;quot;;&lt;br /&gt;
 $TRUNK_VARS{&#039;userconfig&#039;} .=&amp;quot;fromdomain=$DECLARED_HOST\n&amp;quot;;&lt;br /&gt;
 $TRUNK_VARS{&#039;userconfig&#039;} .=&amp;quot;host=$DECLARED_HOST\n&amp;quot;;&lt;br /&gt;
 $TRUNK_VARS{&#039;userconfig&#039;} .=&amp;quot;insecure=very\n&amp;quot;;&lt;br /&gt;
 $TRUNK_VARS{&#039;userconfig&#039;} .=&amp;quot;nat=yes\n&amp;quot;;&lt;br /&gt;
 $TRUNK_VARS{&#039;userconfig&#039;} .=&amp;quot;secret=$DECLARED_USERPASSWD\n&amp;quot;;&lt;br /&gt;
 $TRUNK_VARS{&#039;userconfig&#039;} .=&amp;quot;type=user\n&amp;quot;;&lt;br /&gt;
 $TRUNK_VARS{&#039;userconfig&#039;} .=&amp;quot;user=$DECLARED_USERNAME\n&amp;quot;;&lt;br /&gt;
 $TRUNK_VARS{&#039;userconfig&#039;} .=&amp;quot;username=$DECLARED_USERNAME\n&amp;quot;;&lt;br /&gt;
3.3 Setup Callcentric registration string.&lt;br /&gt;
 $TRUNK_VARS{&#039;register&#039;}=&amp;quot;$DECLARED_USERNAME:$DECLARED_USERPASSWD\@$DECLARED_HOST\/$DECLARED_USERNAME&amp;quot;;&lt;br /&gt;
3.4 Adjust &#039;routename&#039; in ADD OUTGOING ROUTING section to &amp;quot;to-callcentric&amp;quot;&lt;br /&gt;
 {&lt;br /&gt;
     chomp;&lt;br /&gt;
     if($_ =~ /[&amp;lt;]option value[=]\&amp;quot;([^\&amp;quot;]+)\&amp;quot;[&amp;gt;]SIP\/callcentric[&amp;lt;]\/option[&amp;gt;]/)&lt;br /&gt;
     {&lt;br /&gt;
         $OUT_ROUTE=$1;&lt;br /&gt;
     }&lt;br /&gt;
 }&lt;br /&gt;
4. Write changes (CNTRL+O) and exit (CNTRL+X)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Pulling Callcentric Config into the Web Admin&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
1. In a terminal session, make yourself &amp;quot;sudo su&amp;quot; user.&lt;br /&gt;
&lt;br /&gt;
2. Edit the provider list:&lt;br /&gt;
 &amp;quot;nano /etc/asterisk/provider_list.txt&amp;quot;&lt;br /&gt;
adding the following entry at the bottom of the list:&lt;br /&gt;
&lt;br /&gt;
 callcentric     http://www.callcentric.com      callcentric     SIP&lt;br /&gt;
Tab between entries.&lt;br /&gt;
&lt;br /&gt;
3. Write changes (CNTRL+O) and exit (CNTRL+X)&lt;/div&gt;</summary>
		<author><name>Mduno</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=User:Mduno&amp;diff=22898</id>
		<title>User:Mduno</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=User:Mduno&amp;diff=22898"/>
		<updated>2010-04-28T00:48:59Z</updated>

		<summary type="html">&lt;p&gt;Mduno: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=TELECOM SETUP=&lt;br /&gt;
==Setting up LinuxMCE to use Callcentric&#039;s VoIP Service(s)==&lt;br /&gt;
&lt;br /&gt;
Setting up LinuxMCE to use Callcentric&#039;s VoIP service(s) is fairly straightforward using the steps provided in &amp;quot;How to Properly Add Support for SIP Providers&amp;quot;:&lt;br /&gt;
&lt;br /&gt;
http://wiki.linuxmce.org/index.php/How_to_properly_add_support_for_SIP_providers&lt;br /&gt;
&lt;br /&gt;
as well as Callcentric&#039;s freepbx / trixbox configuration page:&lt;br /&gt;
&lt;br /&gt;
http://www.callcentric.com/support/device/trixbox&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Create the Callcentric Config File&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
1. In a terminal session, make yourself &amp;quot;sudo su&amp;quot; user.&lt;br /&gt;
&lt;br /&gt;
2. Since Callcentric provides VoIP based phone services using the SIP protocol, copy the Broadvoice config file as a template for editing with Callcentric&#039;s parameters:&lt;br /&gt;
 &amp;quot;cp /usr/pluto/bin/create_amp_broadvoice.pl /usr/pluto/bin/create_amp_callcentric.pl&amp;quot;&lt;br /&gt;
3. Edit the Callcentric config file:&lt;br /&gt;
 &amp;quot;nano /usr/pluto/bin/create_amp_callcentric.pl&amp;quot;&lt;br /&gt;
making the following changes:&lt;br /&gt;
&lt;br /&gt;
3.1 Phone Line declaration section; change the declared host to reflect callcentric.com&lt;br /&gt;
 my $DECLARED_HOST = &amp;quot;callcentric.com&amp;quot;;&lt;br /&gt;
3.2 Trunk section changes:&lt;br /&gt;
* &amp;lt;font&amp;gt;Change &amp;lt;/font&amp;gt;channelid&amp;lt;font&amp;gt; to &amp;lt;/font&amp;gt;callcentric&lt;br /&gt;
 $TRUNK_VARS{&#039;channelid&#039;}=&amp;quot;callcentric&amp;quot;;&lt;br /&gt;
* &amp;lt;font&amp;gt;Remove the following &#039;&amp;lt;/font&amp;gt;usercontext&amp;lt;font&amp;gt;&#039; and &#039;&amp;lt;/font&amp;gt;userconfig&amp;lt;font&amp;gt;&#039; lines:&amp;lt;/font&amp;gt;&lt;br /&gt;
 $TRUNK_VARS{&#039;usercontext&#039;}=&amp;quot;$DECLARED_HOST&amp;quot;;&lt;br /&gt;
 $TRUNK_VARS{&#039;userconfig&#039;} =&amp;quot;context=from-pstn\n&amp;quot;;&lt;br /&gt;
 $TRUNK_VARS{&#039;userconfig&#039;} .=&amp;quot;dtmf=inband\n&amp;quot;;&lt;br /&gt;
 $TRUNK_VARS{&#039;userconfig&#039;} .=&amp;quot;dtmfmode=inband\n&amp;quot;;&lt;br /&gt;
 $TRUNK_VARS{&#039;userconfig&#039;} .=&amp;quot;fromdomain=$DECLARED_HOST\n&amp;quot;;&lt;br /&gt;
 $TRUNK_VARS{&#039;userconfig&#039;} .=&amp;quot;host=$DECLARED_HOST\n&amp;quot;;&lt;br /&gt;
 $TRUNK_VARS{&#039;userconfig&#039;} .=&amp;quot;insecure=very\n&amp;quot;;&lt;br /&gt;
 $TRUNK_VARS{&#039;userconfig&#039;} .=&amp;quot;nat=yes\n&amp;quot;;&lt;br /&gt;
 $TRUNK_VARS{&#039;userconfig&#039;} .=&amp;quot;secret=$DECLARED_USERPASSWD\n&amp;quot;;&lt;br /&gt;
 $TRUNK_VARS{&#039;userconfig&#039;} .=&amp;quot;type=user\n&amp;quot;;&lt;br /&gt;
 $TRUNK_VARS{&#039;userconfig&#039;} .=&amp;quot;user=$DECLARED_USERNAME\n&amp;quot;;&lt;br /&gt;
 $TRUNK_VARS{&#039;userconfig&#039;} .=&amp;quot;username=$DECLARED_USERNAME\n&amp;quot;;&lt;/div&gt;</summary>
		<author><name>Mduno</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=User:Mduno&amp;diff=22897</id>
		<title>User:Mduno</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=User:Mduno&amp;diff=22897"/>
		<updated>2010-04-28T00:42:36Z</updated>

		<summary type="html">&lt;p&gt;Mduno: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=TELECOM SETUP=&lt;br /&gt;
==Setting up LinuxMCE to use Callcentric&#039;s VoIP Service(s)==&lt;br /&gt;
&lt;br /&gt;
Setting up LinuxMCE to use Callcentric&#039;s VoIP service(s) is fairly straightforward using the steps provided in &amp;quot;How to Properly Add Support for SIP Providers&amp;quot;:&lt;br /&gt;
&lt;br /&gt;
http://wiki.linuxmce.org/index.php/How_to_properly_add_support_for_SIP_providers&lt;br /&gt;
&lt;br /&gt;
as well as Callcentric&#039;s freepbx / trixbox configuration page:&lt;br /&gt;
&lt;br /&gt;
http://www.callcentric.com/support/device/trixbox&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Create the Callcentric Config File&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
1. In a terminal session, make yourself &amp;quot;sudo su&amp;quot; user.&lt;br /&gt;
&lt;br /&gt;
2. Since Callcentric provides VoIP based phone services using the SIP protocol, copy the Broadvoice config file as a template for editing with Callcentric&#039;s parameters:&lt;br /&gt;
 &amp;quot;cp /usr/pluto/bin/create_amp_broadvoice.pl /usr/pluto/bin/create_amp_callcentric.pl&amp;quot;&lt;br /&gt;
3. Edit the Callcentric config file:&lt;br /&gt;
 &amp;quot;nano /usr/pluto/bin/create_amp_callcentric.pl&amp;quot;&lt;br /&gt;
making the following changes:&lt;br /&gt;
&lt;br /&gt;
3.1 Phone Line declaration section; change the declared host to reflect callcentric.com&lt;br /&gt;
 my $DECLARED_HOST = &amp;quot;callcentric.com&amp;quot;;&lt;br /&gt;
3.2 Trunk section changes:&lt;br /&gt;
* &amp;lt;font&amp;gt;Change &amp;lt;/font&amp;gt;channelid&amp;lt;font&amp;gt; to &amp;lt;/font&amp;gt;callcentric&lt;/div&gt;</summary>
		<author><name>Mduno</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=User:Mduno&amp;diff=22896</id>
		<title>User:Mduno</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=User:Mduno&amp;diff=22896"/>
		<updated>2010-04-28T00:39:31Z</updated>

		<summary type="html">&lt;p&gt;Mduno: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=TELECOM SETUP=&lt;br /&gt;
==Setting up LinuxMCE to use Callcentric&#039;s VoIP Service(s)==&lt;br /&gt;
&lt;br /&gt;
Setting up LinuxMCE to use Callcentric&#039;s VoIP service(s) is fairly straightforward using the steps provided in &amp;quot;How to Properly Add Support for SIP Providers&amp;quot;:&lt;br /&gt;
&lt;br /&gt;
http://wiki.linuxmce.org/index.php/How_to_properly_add_support_for_SIP_providers&lt;br /&gt;
&lt;br /&gt;
as well as Callcentric&#039;s freepbx / trixbox configuration page:&lt;br /&gt;
&lt;br /&gt;
http://www.callcentric.com/support/device/trixbox&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Create the Callcentric Config File&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
1. In a terminal session, make yourself &amp;quot;sudo su&amp;quot; user.&lt;br /&gt;
&lt;br /&gt;
2. Since Callcentric provides VoIP based phone services using the SIP protocol, copy the Broadvoice config file as a template for editing with Callcentric&#039;s parameters:&lt;br /&gt;
 &amp;quot;cp /usr/pluto/bin/create_amp_broadvoice.pl /usr/pluto/bin/create_amp_callcentric.pl&amp;quot;&lt;br /&gt;
3. Edit the Callcentric config file:&lt;br /&gt;
 &amp;quot;nano /usr/pluto/bin/create_amp_callcentric.pl&amp;quot;&lt;br /&gt;
making the following changes:&lt;br /&gt;
3.1 Phone Line declaration section; change the declared host to reflect callcentric.com&lt;br /&gt;
 my $DECLARED_HOST = &amp;quot;callcentric.com&amp;quot;;&lt;/div&gt;</summary>
		<author><name>Mduno</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=User:Mduno&amp;diff=22895</id>
		<title>User:Mduno</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=User:Mduno&amp;diff=22895"/>
		<updated>2010-04-28T00:36:45Z</updated>

		<summary type="html">&lt;p&gt;Mduno: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Note ... This is a &amp;quot;work in progress.&amp;quot;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=TELECOM SETUP=&lt;br /&gt;
==Setting up LinuxMCE to use Callcentric&#039;s VoIP Service(s)==&lt;br /&gt;
&lt;br /&gt;
Setting up LinuxMCE to use Callcentric&#039;s VoIP service(s) is fairly straightforward using the steps provided in &amp;quot;How to Properly Add Support for SIP Providers&amp;quot;:&lt;br /&gt;
&lt;br /&gt;
http://wiki.linuxmce.org/index.php/How_to_properly_add_support_for_SIP_providers&lt;br /&gt;
&lt;br /&gt;
as well as Callcentric&#039;s freepbx / trixbox configuration page:&lt;br /&gt;
&lt;br /&gt;
http://www.callcentric.com/support/device/trixbox&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Create the Callcentric Config File&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
1. In a terminal session, make yourself &amp;quot;sudo su&amp;quot; user.&lt;br /&gt;
&lt;br /&gt;
2. Since Callcentric provides VoIP based phone services using the SIP protocol, copy the Broadvoice config file as a template for editing with Callcentric&#039;s parameters:&lt;br /&gt;
 &amp;quot;cp /usr/pluto/bin/create_amp_broadvoice.pl /usr/pluto/bin/create_amp_callcentric.pl&amp;quot;&lt;br /&gt;
3. Edit the Callcentric config file:&lt;br /&gt;
 &amp;quot;nano /usr/pluto/bin/create_amp_callcentric.pl&amp;quot;&lt;/div&gt;</summary>
		<author><name>Mduno</name></author>
	</entry>
	<entry>
		<id>http://wiki.linuxmce.org/index.php?title=User:Mduno&amp;diff=22894</id>
		<title>User:Mduno</title>
		<link rel="alternate" type="text/html" href="http://wiki.linuxmce.org/index.php?title=User:Mduno&amp;diff=22894"/>
		<updated>2010-04-28T00:26:59Z</updated>

		<summary type="html">&lt;p&gt;Mduno: New page: &amp;#039;&amp;#039;&amp;#039;Note ... This is a &amp;quot;work in progress.&amp;quot;&amp;#039;&amp;#039;&amp;#039;  =TELECOM SETUP= ==Setting up LinuxMCE to use Callcentric&amp;#039;s VoIP Service(s)==  Setting up LinuxMCE to use Callcentric&amp;#039;s VoIP service(s) is fair...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Note ... This is a &amp;quot;work in progress.&amp;quot;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=TELECOM SETUP=&lt;br /&gt;
==Setting up LinuxMCE to use Callcentric&#039;s VoIP Service(s)==&lt;br /&gt;
&lt;br /&gt;
Setting up LinuxMCE to use Callcentric&#039;s VoIP service(s) is fairly straightforward using the steps provided in &amp;quot;How to Properly Add Support for SIP Providers&amp;quot;:&lt;br /&gt;
&lt;br /&gt;
http://wiki.linuxmce.org/index.php/How_to_properly_add_support_for_SIP_providers&lt;br /&gt;
&lt;br /&gt;
as well as Callcentric&#039;s freepbx / trixbox configuration page:&lt;br /&gt;
&lt;br /&gt;
http://www.callcentric.com/support/device/trixbox&lt;br /&gt;
&lt;br /&gt;
&amp;lt;u&amp;gt;Create the Callcentric Config File&amp;lt;/u&amp;gt;&lt;br /&gt;
&lt;br /&gt;
#In a terminal session, make yourself &amp;quot;sudo su&amp;quot; user.&lt;br /&gt;
#Since Callcentric provides VoIP based phone services using the SIP protocol, copy the Broadvoice config file as a template for editing with Callcentric&#039;s parameters:&lt;/div&gt;</summary>
		<author><name>Mduno</name></author>
	</entry>
</feed>