How do I forward a call using the SER to a SIP phone? Do I need the MySQL
database or Can I forward even without MySQL? If so, how do we do it? Please
let me know. Thank you
Sesha
Kevin,
>I checked the debug message from fcpd and I saw message like this one:
>>> fcpd[4541]: INTERPRET: succesfully reserved IP=16885952 Port=1122-1123
>for origin IP=1694607552 Port=42446-42447
That message tells that the fcpd deamon has reserved an IP address, but does not
necessarily say that iptables rules have been set.
>From that info, the fcp module gets the external address/port that the NAT will
use for the outgoing SIP message.
It usually came up when a "QUERYNAT" command was sent to the fcpd and it
answered positively.
To actually reserve the rules, you should see a "SET" command going from the fcp
module to the fcpd deamon.
If you have any ethereal traces, I might be able to help you further.
Jaime
*******************************************************************************
Important.
Confidentiality: This communication is intended for the above-named person and
may be confidential and/or legally privileged. Any opinions expressed in this
communication are not necessarily those of the company. If it has come to you
in error you must take no action based on it, nor must you copy or show it to
anyone; please delete/destroy and inform the sender immediately.
Monitoring/Viruses
Orange may monitor all incoming and outgoing emails in line with current
legislation. Although we have taken steps to ensure that this email and
attachments are free from any virus, we advise that in keeping with good
computing practice the recipient should ensure they are actually virus free.
Orange PCS Limited is a subsidiary of Orange SA and is registered in England No
2178917, with its address at St James Court, Great Park Road, Almondsbury Park,
Bradley Stoke, Bristol BS32 4QJ.
*******************************************************************************
Folks,
I've updated nathelper module in trunk. The following changes were made:
- Applied patch from Bogdan-Andrei IANCU <iancu(a)fokus.fraunhofer.de>,
which allows to use nathelper without usrloc module if natpinger isn't used;
- fixed natpinger for clients without explicit transport specified in
the Contact header field, which means that transport is UDP;
- fix_nated_contact() now ignores non-UDP contacts.
Please let me know if you will see any unusual problems with the module.
-Maxim
roughly like this:
if (uri=~"sip:972") {
sethostport("dfw.nationalgateways.com");
} else if (uri=~"sip:911") {
sethostport("emrgency.ngw.com");
} else {
sethostport("defaultgw.com");
};
t_relay();
That's it. No guarantee for positioning of semicolons and other
:$)"./... symbols.
-jiri
At 02:43 PM 9/25/2003, Wasik, Paul wrote:
>Hi all,
>
>Has anyone built a ser.cfg that can conditionally forward SIP calls to
>different SIP - PSTN gateways based on the outgoing calls area or exchange
>code. I'm sure it can be done but I'm not that good with syntax of the
>ser.cfg file. I know how to route to single SIP GW based on the dialed
>string but how do I make SER use multiple SIP gateways? Can anyone provide
>an example of this?
>
>Thanks,
>
>Paul
>
>_______________________________________________
>Serusers mailing list
>serusers(a)lists.iptel.org
>http://lists.iptel.org/mailman/listinfo/serusers
--
Jiri Kuthan http://iptel.org/~jiri/
Hi,
It's mentioned in the release notes of SER 0.8.11 that there is a
a new experimental features called fcp.
Is that module the implementation of fcp-client mentioned in this
discussion?
http://lists.iptel.org/pipermail/serusers/2003-January/000111.html
I can't find the fcp module from anywhere. May I know where I can find it
and
the latest status?
Thanks,
Kevin
Hi all,
Has anyone built a ser.cfg that can conditionally forward SIP calls to
different SIP - PSTN gateways based on the outgoing calls area or exchange
code. I'm sure it can be done but I'm not that good with syntax of the
ser.cfg file. I know how to route to single SIP GW based on the dialed
string but how do I make SER use multiple SIP gateways? Can anyone provide
an example of this?
Thanks,
Paul
Hello I am installing SER (my first time)= and I have a problem with the passwd when i can make the database in MySQL when:
/usr/sbin/ser_mysql.sh reinstall
Which is the password?
Best regards
Hello,
On 9/25/2003 11:43 AM, manu v wrote:
> Dear daniel,
>
> thank you for your response.
>
> do i need to configure the PSTN gateway details in ser.cfg or pstn.cfg.
> if it is pstn.cfg , whick directory should i keep it.
you need to copy&paste pieces of configuration from pstn.cfg to your ser.cfg
> also, could u guide me in routing calls with certain prefix via pstn
> gateway.
Shortly, if you want to forward all the requests having the username
part of URI starting with an optional '+' followed by one or many digits
to your PSTN gateway located at 192.168.0.10:5060 you need these piece
of configuration after your sanity checks.
if (uri=~"sip:\+?[0-9]+@.*") {
rewritehostport("192.168.0.10:5060");
# forward the request now
if (!t_relay()) {
sl_reply_error();
};
break;
};
The pstn.cfg.file is a more complete and complex example, showing how to
authenticate and authorize calls for PSTN.
Best regards,
Daniel
>
>
> regards,
> manu
>
>
>
> On Wed, 24 Sep 2003 Daniel-Constantin Mierla wrote :
>
>> Hello,
>> if you have the sources look into examples/pstn.cfg. Otherwise you
>> can browse online the CVS version at:
>> http://cvs.berlios.de/cgi-bin/viewcvs.cgi/ser/sip_router/examples/pstn.cfg?…
>>
>>
>> Best regards,
>> Daniel
>>
>> On 9/24/2003 2:58 PM, manu v wrote:
>>
>>> Dear all,
>>>
>>> Could any one help me routing SIP calls through my PSTN gateway.
>>> i am herewith attaching ser.cfg file for ur suggession.
>>> do i need load any other modules for pstn routing?
>>> please check and the syntax of ser.cfg.
>>>
>>> regards
>>> manu.
>>> ___________________________________________________
>>> Art meets Anesthesia; Shefali Weds Dr. Raman.
>>> Rediff Matchmaker strikes another interesting match !!
>>> Visit http://matchmaker.rediff.com?1
>>>
>>> _______________________________________________
>>> Serusers mailing list
>>> serusers(a)lists.iptel.org
>>> http://lists.iptel.org/mailman/listinfo/serusers
>>>
>>
>>
>
> ___________________________________________________
> Art meets Anesthesia; Shefali Weds Dr. Raman.
> Rediff Matchmaker strikes another interesting match !!
> Visit http://matchmaker.rediff.com?1
>
At 16.51 23/09/2003 +0200, you wrote:
>On 9/23/2003 4:37 PM, giAndrea wrote:
>
>>At 15.53 23/09/2003 +0200, you wrote:
>>
>>>[...]
>>>
>>>>
>>>>i have problems with mangler.so module. there are some modules not
>>>>included in make clean (ex. mangler), why?
>>>>I've compiled with make include_modules="mangler" modules;
>>>>when i use make prefix=/usr/local install why mangler.so not appear in
>>>>/usr/local/lib/ser/modules?
>>>
>>>
>>>try: make prefix=/usr/local include_modules="mangler" install
>>>
>>>Daniel
>>
>>
>>ok. But, when i include mangler.so on my ser.cfg with loadmodule
>>"/usr/lib/ser/modules/mangler.so" ser don't works. If i comment this row
>>ser works.
>Shouldn't it be in '/usr/local/lib/ser/modules' not in
>'/usr/lib/ser/modules'? The log messages would be very helpfully if the
>path to module is not the problem.
Sorry, the log message is
ERROR: no version info in module </usr/lib/ser/modules/mangler.so>:
/usr/sbin/ser: undefined symbol: module_version
Andrea