Consigo utilizar real RealTime com sucesso. Porem estou
precisando utilizar o Real Time Estatico (para SIP.CONF) e estou
apanhando um pouco. Alguem pode me dizer os campos necessarios em
tabelas para carregar as configuracoes do SIP.CONF no Postgres (Static
Real time). <br>
No "<a href="http://voip-info.org/wiki/view/Asterisk+RealTime+Static">voip-info.org/wiki/view/Asterisk+RealTime+Static</a>" achei a seguinte conf de BD:<br>
<br>
CREATE TABLE `ast_config` (
<br>
<span style="font-family: monospace;"> `id` int(11) NOT NULL auto_increment,
</span><br>
<span style="font-family: monospace;"> `cat_metric` int(11) NOT NULL default '0',
</span><br>
<span style="font-family: monospace;"> `var_metric` int(11) NOT NULL default '0',
</span><br>
<span style="font-family: monospace;"> `commented` int(11) NOT NULL default '0',
</span><br>
<span style="font-family: monospace;"> `filename` varchar(128) NOT NULL default '',
</span><br>
<span style="font-family: monospace;"> `category` varchar(128) NOT NULL default 'default',
</span><br>
<span style="font-family: monospace;"> `var_name` varchar(128) NOT NULL default '',
</span><br>
<span style="font-family: monospace;"> `var_val` varchar(128) NOT NULL default '',
</span><br>
<span style="font-family: monospace;"> PRIMARY KEY (`id`),
</span><br>
<span style="font-family: monospace;"> KEY `filename_comment` (`filename`,`commented`)
</span><br>
) TYPE=MyISAM;<br>
<br>
utilizei os campos acima em conjunto com campos que preciso no
SIP.CONF. toda vez que starto (ou recarrego) o Asterisk, tenho a
mensagem:<br>
chan_sip.c:12780 reload_config: Section '' lacks type<br>
<br>
e, nada eh carregado em peers do SIP.<br>
<br>
OBS1) Com o SIP.CONF tudo eh normal.<br>
<br>
OBS2)Meu extconfig.conf:<br>
[settings]<br>
sip.conf => odbc,asterisk_dsn,tabelasip<br>
<br>
OBS3) Conexao com o BD(via unixodbc) OK<br>
VOIP*CLI> odbc show<br>
Name: asterisk_rt<br>
DSN: asterisk_dsn<br>
Connected: yes<br>
<br>
Qualquer ajuda ou comentario eh muito bem vindo<br>