<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Managing networks and stuff...</title>
	<atom:link href="http://sysbrain.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sysbrain.wordpress.com</link>
	<description>My Memory in the cloud :)</description>
	<lastBuildDate>Mon, 23 Nov 2009 08:36:09 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='sysbrain.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/0f7cd73c9031a47cf8889ee1e49f83b2?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Managing networks and stuff...</title>
		<link>http://sysbrain.wordpress.com</link>
	</image>
			<item>
		<title>Asterisk CDR in MySQL</title>
		<link>http://sysbrain.wordpress.com/2009/11/23/asterisk-cdr-in-mysql/</link>
		<comments>http://sysbrain.wordpress.com/2009/11/23/asterisk-cdr-in-mysql/#comments</comments>
		<pubDate>Mon, 23 Nov 2009 08:35:11 +0000</pubDate>
		<dc:creator>Jabi</dc:creator>
				<category><![CDATA[VoIP]]></category>
		<category><![CDATA[Asterisk]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://sysbrain.wordpress.com/?p=40</guid>
		<description><![CDATA[Install Mysql Server and MysqlClient
apt-get install php5-mysql mysql-client-5.0 mysql-client libmysqlclient15-de mysql-server mysql-common
Install Asterisk-Addons
cd /usr/src
wget http://downloads.asterisk.org/pub/telephony/asterisk/asterisk-addons-1.4.9.tar.gz
tar xvzf asterisk-addons-1.4.9.tar.gz
cd asterisk-addons*
./configure
make menuselect
select:
&#8211;&#62; 1. Applications
[*] 1. app_addon_sql_mysql
&#8211;&#62; 2. Call Detail Recording
[*] 1. cdr_addon_mysql
make &#38;&#38; make install
Create Database
mysql -u root -p
CREATE DATABASE asterisk;
GRANT INSERT
ON asterisk.*
TO asterisk@localhost
IDENTIFIED BY &#8217;yourpassword&#8217;;
USE asterisk;
CREATE TABLE `cdr` (
`calldate` datetime NOT NULL default &#8217;0000-00-00 00:00:00&#8242;,
`clid` varchar(80) NOT NULL default &#8221;,
`src` varchar(80) NOT NULL default &#8221;,
`dst` varchar(80) NOT NULL default &#8221;,
`dcontext` varchar(80) NOT NULL default &#8221;,
`channel` varchar(80) NOT NULL default &#8221;,
`dstchannel` varchar(80) NOT NULL default &#8221;,
`lastapp` varchar(80) NOT NULL default &#8221;,
`lastdata` varchar(80) NOT NULL default &#8221;,
`duration` int(11) NOT NULL default &#8217;0&#8242;,
`billsec` int(11) NOT NULL default &#8217;0&#8242;,
`disposition` varchar(45) NOT NULL default &#8221;,
`amaflags` int(11) NOT NULL default &#8217;0&#8242;,
`accountcode` varchar(20) NOT NULL default &#8221;,
`userfield` varchar(255) NOT NULL default &#8221;
);
ALTER TABLE `cdr` ADD `uniqueid` VARCHAR(32) NOT NULL default &#8221;;
ALTER TABLE `cdr` ADD INDEX ( `calldate` );
ALTER TABLE `cdr` ADD INDEX ( `dst` );
ALTER TABLE `cdr` ADD INDEX ( `accountcode` );
Configure Asterisk CDR Mysql
vim /etc/asterisk/cdr.conf
[general]
enabled=yes
vim /etc/asterisk/cdr_mysql.conf
[global]
hostname=localhost
dbname=asterisk
table=cdr
password=&#8221;yourpassword&#8221;
user=asterisk
port=3306
;sock=/tmp/mysql.sock
;userfield=1
vim /etc/asterisk/modules.conf
load =&#62; cdr_addon_mysql.so
Restarting Asterisk
asterisk -r
CLI&#62; restart when convenient
CLI &#62; asterisk -r
CLI &#62; cdr mysql [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysbrain.wordpress.com&blog=2464679&post=40&subd=sysbrain&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://sysbrain.wordpress.com/2009/11/23/asterisk-cdr-in-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/93a03cd6437bb030fd893437e9aa30cd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Jabi</media:title>
		</media:content>

		<media:content url="http://sysbrain.files.wordpress.com/2009/11/mysql-asterisk.jpg?w=150" medium="image">
			<media:title type="html">mysql-asterisk</media:title>
		</media:content>
	</item>
		<item>
		<title>Asterisk VoIP Security</title>
		<link>http://sysbrain.wordpress.com/2009/11/18/asterisk-voip-security/</link>
		<comments>http://sysbrain.wordpress.com/2009/11/18/asterisk-voip-security/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 11:30:33 +0000</pubDate>
		<dc:creator>Jabi</dc:creator>
				<category><![CDATA[Security]]></category>
		<category><![CDATA[VoIP]]></category>
		<category><![CDATA[Asterisk]]></category>

		<guid isPermaLink="false">http://sysbrain.wordpress.com/?p=35</guid>
		<description><![CDATA[I leave here a link to the webinar on security in asterisk that took place last Friday. The speakers were an FBI agent, an expert from VOIPSA and two employee of the company Digium.
very interesting ..

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysbrain.wordpress.com&blog=2464679&post=35&subd=sysbrain&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://sysbrain.wordpress.com/2009/11/18/asterisk-voip-security/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/93a03cd6437bb030fd893437e9aa30cd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Jabi</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/_vHK2EtQWWM/2.jpg" medium="image" />
	</item>
		<item>
		<title>Provisioning Linksys SPA922</title>
		<link>http://sysbrain.wordpress.com/2009/11/02/provisioning-linksys-spa922/</link>
		<comments>http://sysbrain.wordpress.com/2009/11/02/provisioning-linksys-spa922/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 19:44:27 +0000</pubDate>
		<dc:creator>Jabi</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[VoIP]]></category>
		<category><![CDATA[Asterisk]]></category>
		<category><![CDATA[Debian]]></category>

		<guid isPermaLink="false">http://sysbrain.wordpress.com/?p=18</guid>
		<description><![CDATA[When I started in the world of Asterisk, one of the important things to deploy a VoIP network is the segmentation of the network VLANs to separate voice and data. When I started two years ago,  only knew two options:
- Use different network but this implies duplicate the number of the switches (much money [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysbrain.wordpress.com&blog=2464679&post=18&subd=sysbrain&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://sysbrain.wordpress.com/2009/11/02/provisioning-linksys-spa922/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/93a03cd6437bb030fd893437e9aa30cd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Jabi</media:title>
		</media:content>
	</item>
		<item>
		<title>Network Link Redundancy</title>
		<link>http://sysbrain.wordpress.com/2008/02/14/network-link-redundancy/</link>
		<comments>http://sysbrain.wordpress.com/2008/02/14/network-link-redundancy/#comments</comments>
		<pubDate>Thu, 14 Feb 2008 10:56:07 +0000</pubDate>
		<dc:creator>Jabi</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Debian]]></category>

		<guid isPermaLink="false">http://sysbrain.wordpress.com/?p=4</guid>
		<description><![CDATA[Folow these steps to create a Link redundancy in a server with two ethernet cards in Debian 4.0Etch.
- 1. apt-get install ifenslave (ifenslave-2.6)
- 2. Create a file called aliases-bond in /etc/modprobe.d/ with the next content:
&#124;alias bond0 bonding&#124;
&#124;options bond0 mode=1 arp_internal=2000 arp_ip_target=&#8221;the gateway&#8221;&#124;
- 3. load bonding with this command -&#62; modprobe bonding
- 4. add &#8220;bonding&#8221; to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysbrain.wordpress.com&blog=2464679&post=4&subd=sysbrain&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://sysbrain.wordpress.com/2008/02/14/network-link-redundancy/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/93a03cd6437bb030fd893437e9aa30cd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Jabi</media:title>
		</media:content>

		<media:content url="http://micaminogeek.files.wordpress.com/2007/08/debian-logo-weiss.png" medium="image" />
	</item>
		<item>
		<title>OMA in Symbian OS</title>
		<link>http://sysbrain.wordpress.com/2008/01/07/oma-in-symbian-os/</link>
		<comments>http://sysbrain.wordpress.com/2008/01/07/oma-in-symbian-os/#comments</comments>
		<pubDate>Mon, 07 Jan 2008 10:19:18 +0000</pubDate>
		<dc:creator>Jabi</dc:creator>
				<category><![CDATA[Mail]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Symbian]]></category>

		<guid isPermaLink="false">http://sysbrain.wordpress.com/2008/01/07/oma-in-symbian-os/</guid>
		<description><![CDATA[This Howto is to use Symbian Mobiles with Microsoft Outlook Mobile Access (OMA)
We Suppose that OMA server is installed and configured.
First we have to convert the Exchange certificate from extension .cer to extension .der to works in symbian OS. (certificates with .cer extension doesn´t work in symbian OS)
Download and install OpenSSL Software:
http://www.slproweb.com/download/Win32OpenSSL-0_9_7m.exe
Execute this commands in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysbrain.wordpress.com&blog=2464679&post=3&subd=sysbrain&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://sysbrain.wordpress.com/2008/01/07/oma-in-symbian-os/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/93a03cd6437bb030fd893437e9aa30cd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Jabi</media:title>
		</media:content>

		<media:content url="http://sysbrain.files.wordpress.com/2008/01/686px-symbian_os_logosvg1.png?w=150" medium="image">
			<media:title type="html">686px-Symbian_OS_logosvg</media:title>
		</media:content>
	</item>
		<item>
		<title>Debian &#8220;Etch&#8221; + Asterisk + Asterisk-Addons + Zaptel + Libpri + mISDN + Asterisk-GUI</title>
		<link>http://sysbrain.wordpress.com/2008/01/07/hello-world/</link>
		<comments>http://sysbrain.wordpress.com/2008/01/07/hello-world/#comments</comments>
		<pubDate>Mon, 07 Jan 2008 09:48:03 +0000</pubDate>
		<dc:creator>Jabi</dc:creator>
				<category><![CDATA[VoIP]]></category>
		<category><![CDATA[Asterisk]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[This Howto is to install Asterisk on a fresh Debian “Etch” system.
After download a netinstall image of Debian 4.0r1 and configure localization, language, partitions and so on, in the final steps, debian should now be asking you what packages you want installed.
Choose base system only.
After finish installation and first reboot, login with root and:
aptitude update
aptitude [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sysbrain.wordpress.com&blog=2464679&post=1&subd=sysbrain&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://sysbrain.wordpress.com/2008/01/07/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/93a03cd6437bb030fd893437e9aa30cd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">Jabi</media:title>
		</media:content>
	</item>
	</channel>
</rss>