I have problem with ENUM, below I am showing my DNS configuration (Bind
version 9):
$ORIGIN 1.2.3.3.e164.arpa.
* NAPTR 1 1 "u" "E2U+sip" "!(^.*$)!sip:\\1@server1.com!" .
$ORIGIN 8.8.5.2.1.2.3.3.e164.arpa.
* NAPTR 1 1 "u" "E2U+sip" "!(^.*$)!sip:\\1@server2.com!" .
When I use DIG "1.8.8.5.2.1.2.3.3.e164.arpa" or "
1.8.8.5.3.1.2.3.3.e164.arpa",
I don´t have problem. But When I try "1.8.8.3.2.1.2.3.3.e164.arpa" DIG don´t
obtain
resolution.
I see that I need to add in DNS the tree between 1.2.3.3 and 8.5.2.1.2.3.3:
$ORIGIN 2.1.2.3.3.e164.arpa.
* NAPTR 1 1 "u" "E2U+sip" "!(^.*$)!sip:\\1@server1.com!" .
$ORIGIN 5.2.1.2.3.3.e164.arpa.
* NAPTR 1 1 "u" "E2U+sip" "!(^.*$)!sip:\\1@server1.com!" .
$ORIGIN 8.5.2.1.2.3.3.e164.arpa.
* NAPTR 1 1 "u" "E2U+sip" "!(^.*$)!sip:\\1@server1.com!" .
I have a lot of servers and this is not scalable, then I can´t use the tree
between 1.2.3.3 and 8.5.2.1.2.3.3.
Is there another configuration that I don´t need to use the tree between
1.2.3.3 and 8.5.2.1.2.3.3?
Hi Users ,
Good Morning,
In local network openser is working fine......
In Behind the NAt the voice is also fine.... But problem is Not hung.
upping....
I think problem in Record router header....
Actually it should reply as " Record Router < sip: public.ip:...... > " ,
But for me it reply as " Record Router <sip:private.ip.... > "
That why i think Bye request is not reaching to openser server and its not
hung upping.... and my guess is router(firewall) causing this problem , But
voice is fine....
--
Thanks and Regards with cheers
Sunkara Ravi Prakash (Voip Developer)
Hyperion Technology
www.hyperion-tech.com
+91-9985077535
Hello!
Somebody using mediaproxy with t38?
Can you provide me some configuration examples?
Thank you.
--
Pavel D.Kuzin
System Administrator
Nodex ISP
St. Petersburg, Russia
pk(a)nodex.ru
http://nodex.ru
Hello, serusers.
I am newbie for SIP.
I installed ser, rtpproxy and read manual very many times :-), but...
Ser server and some clients in local network :
ser - 192.168.100.1
UA1 - 192.168.100.2
UA2 - 192.168.100.3
Some clients have public ip address, not behind firewall...
All work fine between local clients, but not work with external
clients. I think that local clients register with local ip in
Contact field from local network and cannot be fix with fix_nated_ function,
and so can't access from external...
Simple config or config for rtpproxy from gettingstart not help me...
Can anybody help me with simple config for this network configuration?
--
Rustam mailto:ru@aspec.ru
Hi
I am trying to setup SER with nathelper module and portaone proxy. All other messages are sent on the nated IP of both user agents, except final ACK. Which is sent on private IP of called party. Here is the sequence ....
I have also pasted my ser.cfg file
My ser is running on public IP and both user agents are behind firewall.
UA1 SER UA2
INVITE
===============>
INVITE
===============>
TRYING
<===============
Ringing
<===============
Ringing
<===============
OK
<===============
OK
<===============
ACK
===============>
ACK (sent on UA2's Private IP)
===============>
debug=7
fork=yes
log_stderror=yes
listen=some_public_ip
port=5060
check_via=no
dns=no
rev_dns=no
server_signature=no
sip_warning=no
fifo="/tmp/ser_fifo"
# ------------------ module loading ----------------------------------
loadmodule "/usr/local/lib/ser/modules/nathelper.so"
loadmodule "/usr/local/lib/ser/modules/sl.so"
loadmodule "/usr/local/lib/ser/modules/xlog.so"
loadmodule "/usr/local/lib/ser/modules/tm.so"
loadmodule "/usr/local/lib/ser/modules/rr.so"
loadmodule "/usr/local/lib/ser/modules/maxfwd.so"
loadmodule "/usr/local/lib/ser/modules/usrloc.so"
loadmodule "/usr/local/lib/ser/modules/registrar.so"
loadmodule "/usr/local/lib/ser/modules/auth.so"
loadmodule "/usr/local/lib/ser/modules/exec.so"
loadmodule "/usr/local/lib/ser/modules/print.so"
loadmodule "/usr/local/lib/ser/modules/textops.so"
loadmodule "/usr/local/lib/ser/modules/avpops.so"
# ----------------- setting module-specific parameters ---------------
modparam("usrloc", "db_mode", 0)
modparam("rr", "enable_full_lr", 1)
modparam("nathelper","rtpproxy_sock", "udp:some_public_ip:port")
modparam("registrar", "nat_flag", 6)
modparam("nathelper", "natping_interval", 30)
modparam("nathelper", "ping_nated_only", 0)
modparam("tm", "fr_timer", 12)
modparam("tm", "fr_inv_timer", 30)
modparam("tm", "fr_inv_timer_avp", "inv_timeout")
# ------------------------- request routing logic -------------------
# main routing logic
route
{
if(!mf_process_maxfwd_header("10"))
{
log(1, "too many hops\n");
sl_send_reply("483","Too Many Hops");
break;
};
if(msg:len >= max_len )
{
log(1, "message too big\n");
sl_send_reply("513", "Message too big");
break;
};
if(loose_route())
{
t_relay();
break;
};
if(uri==myself)
{
if(method=="REGISTER")
{
fix_nated_register();
force_rport();
if(!save("location"))
{
log(1, "* * * * * < < < could not save location > > > * * * * *\n");
sl_reply_error();
};
break;
};
if(method=="INVITE")
{
fix_nated_contact();
record_route();
if(!lookup("location"))
{
sl_send_reply("404", "subscriber is offline. Pls try later");
break;
}
force_rport();
force_rtp_proxy("l");
fix_nated_sdp("1");
}
};
if(!t_relay())
{
log(1, "relay error\n");
sl_reply_error();
break;
};
}
---------------------------------
Do you Yahoo!?
Get on board. You're invited to try the new Yahoo! Mail.
Ah!
Try:
http://www.ietf.org/rfc/rfc3556.txt?number=3556
for description of b-parameter in SDP.
g-)
M. Victoria Peláez wrote:
> Hi!
> I will re-try with nathelper, mediaproxy and mangle modules ...... But
> till now I haven't found anything about b parameter. About bandwidth
> types I also don't now what that mean, I have written it down because
> I have read it in some articles ...
>
> My problem is that I have one application that exchange a b parameter
> (b=CT 140) during INVITE and isn't able to work with any other SIP
> based application. And the only suitable explanation we have found is
> that the b parameter is disturbing our communication.
>
> So thank you very much! We'll try something else!
>
> Best regards,
> Victoria
>
> Greger V. Teigre escribió:
>> Victoria,
>> SIP and SER do not really look at the SDP payload (ideal world).
>> However, nathelper, mediaproxy and the mangle (have a look at it)
>> modules allow you to do tricks with SDP fooling the user agents
>> involved in the dialog in some way (for example by making both talk
>> to a rtp proxy server).
>> As for bandwidth types (not sure what you mean here?), maybe somebody
>> on the list knows of something, but it's slightly off topic on this
>> list.
>> g-)
>>
>> M. Victoria Peláez wrote:
>>> Hi!
>>>
>>> I am a beginner with SIP/SER systems. I have been having a look into
>>> ser.cfg, in order to modify some SDP parameters, for instance,
>>> fix_nated_sdp to change connection IP, and I have found enough
>>> information to do it. But, now, I am traying to change b parameter,
>>> but cannot find where to do it (Which module manage it?). I am also
>>> looking for a document with a description of all bandwidth types
>>> (CT, AS). Could you tell me something about this stuff, please?
>>>
>>> Thank you very much in advance for your help.
>>>
>>> I am very sorry if this is a very silly question!
>>>
>>> Best regards,
>>> Victoria
>>> _______________________________________________
>>> Serusers mailing list
>>> Serusers(a)lists.iptel.org
>>> http://lists.iptel.org/mailman/listinfo/serusers
>>>
>>>
>>
>
So... I followed the instructions on OnSip on how to set up RTPProxy.
However, I made a modification because I'm running it on a different
machine... changing the
modparam("nathelper", "rtpproxy_sock", "unix:/var/run/rtpptoxy.sock")
to
modparam("nathelper", "rtpproxy_sock", "udp:XX.XX.XX.XX:22222")
I've run RTPproxy on the remote machine as such:
./rtpproxy -f -l XX.XX.XX.XX -s udp:* 22222
And it's running.
I start the ser server, and I see a slew of commands hit the RTPProxy console:
received command "26742_0 V"
sending reply "26742_0 20040107
"
received command "26745_0 V"
sending reply "26745_0 20040107
"
received command "26791_0 V"
sending reply "26791_0 20040107
"
received command "26797_0 V"
sending reply "26797_0 20040107
"
received command "26748_0 V"
sending reply "26748_0 20040107
"
received command "26750_0 V"
sending reply "26750_0 20040107
"
received command "26751_0 V"
sending reply "26751_0 20040107
"
received command "26752_0 V"
sending reply "26752_0 20040107
"
received command "26784_0 V"
sending reply "26784_0 20040107
etc, etc ad infinitum
After a moment, the SER console spits back:
ug 30 14:07:48 death ser[26742]: ERROR: send_rtpp_command: timeout waiting
reply from a RTP proxy
Aug 30 14:07:48 death ser[26742]: WARNING: rtpp_test: can't get version of the
RTP proxy
Aug 30 14:07:48 death ser[26742]: WARNING: rtpp_test: support for RTP proxy
has been disabled temporarily
Aug 30 14:07:48 death ser[26745]: ERROR: send_rtpp_command: timeout waiting
reply from a RTP proxy
Aug 30 14:07:48 death ser[26745]: WARNING: rtpp_test: can't get version of the
RTP proxy
Aug 30 14:07:48 death ser[26745]: WARNING: rtpp_test: support for RTP proxy
has been disabled temporarily
Aug 30 14:07:49 death ser[26791]: ERROR: send_rtpp_command: timeout waiting
reply from a RTP proxy
Aug 30 14:07:49 death ser[26791]: WARNING: rtpp_test: can't get version of the
RTP proxy
Aug 30 14:07:49 death ser[26791]: WARNING: rtpp_test: support for RTP proxy
has been disabled temporarily
Aug 30 14:07:49 death ser[26797]: ERROR: send_rtpp_command: timeout waiting
reply from a RTP proxy
Aug 30 14:07:49 death ser[26797]: WARNING: rtpp_test: can't get version of the
RTP proxy
Aug 30 14:07:49 death ser[26797]: WARNING: rtpp_test: support for RTP proxy
has been disabled temporarily
Aug 30 14:07:49 death ser[26748]: ERROR: send_rtpp_command: timeout waiting
reply from a RTP proxy
Aug 30 14:07:49 death ser[26748]: WARNING: rtpp_test: can't get version of the
RTP proxy
Aug 30 14:07:49 death ser[26748]: WARNING: rtpp_test: support for RTP proxy
has been disabled temporarily
Aug 30 14:07:49 death ser[26750]: ERROR: send_rtpp_command: timeout waiting
reply from a RTP proxy
Aug 30 14:07:49 death ser[26751]: ERROR: send_rtpp_command: timeout waiting
reply from a RTP proxy
Aug 30 14:07:49 death ser[26752]: ERROR: send_rtpp_command: timeout waiting
reply from a RTP proxy
Aug 30 14:07:49 death ser[26784]: ERROR: send_rtpp_command: timeout waiting
reply from a RTP proxy
Aug 30 14:07:49 death ser[26789]: ERROR: send_rtpp_command: timeout waiting
reply from a RTP proxy
Aug 30 14:07:49 death ser[26792]: ERROR: send_rtpp_command: timeout waiting
reply from a RTP proxy
etc, etc, ad infinitum
I've done a search on this on Google and found a couple of people with the
same questions and NO people responding with answers.
Any ideas what's going on?
N.
Dear Nick,
Thank you very much for your kind-hearted to help me. Thank you.
Nick, If I can make a wish for some help to you, would you mind help me in these questions:
1. What do you mean by installing mysql? because when I run # rpm -qa|grep mysql, I got the version of mysql are :
mysql-3.23.54a-11
mysql-server-3.23.54a-11
php-mysql-4.2.2-17
Do I need install mysql again? If I have to, How? Please
2. Is there any configuration in websever? or I just have to restart the webserver by using "# /etc/rc.d/init.d/httpd restart"?
If I have to configure the webserver, Would you mind share the file..Please..
Please Help me Nick..Please...because my skill is too lack. Please...
I am so sorry for bothered and waste your time Nick. I am Sorry.
Thank you very much
Regards,
Ferianto
nick <nick(a)mobilia.it> wrote: Ferianto siregar wrote:
> Dear all,
>
> Thank you very much to all of you for your kind-hearted to reply my
> questions.
> Thank you very much.
>
> All, Now I try to build the openser admin in my openser server. I have
> tried to build it for many times, but never successfully. I know that my
> skill is too low. So I try to ask it to you. Please help me..Please.
>
> I have tried to build the openser admin packet by using README .But, I
> am confused. Maybe it is because of my lack skill to understand it.
> Here is the task that I have done:
> 1. I have download Ruby and Rails packet. The versions that I have got
> were rubygems-0.9.0.tar.gz and rails-1.1.6.tar.gz
>
> a. Untar the Rubygems packet
> # tar -zxvf rubygems-0.9.0.tar.gz
> # cd rubygems
> # ruby setup.rb
No errors on the install?
> b. Untar the Rails packet
> # tar -zxvf rails-1.1.6.tar.gz
> # cd rails
> # ruby script/server
If you have gems installed you can just
gem install rails --include-dependencies
>
> c. Untar the openseradmin packet
> # tar -xjvf openseradmin-0.3.tar.bz2
> # cd openseradmin-0.3
>
That's correct, but without rails installed it probably won't work..
>
> d.Logging into the database server
> #mysql -u root -p
> > Connect openser;
> > GRANT ALL ON openser.* TO 'openser'@'localhost' IDENTIFIED
> BY 'openserrw';
> > USE openser;
> > SOURCE /root/openseradmin-0.3/db/database_tables.sql;
> > EXIT
>
> Here is the confusing problem that I got :
> 1. When I try to run "gem install mysql", I got the error message. So, I
> can not execute it. What`s wrong?
Try gem install mysql --with-mysql-config=/path/to/mysql/lib
> 2. When I try to access it by using web browser by typing
> "http://localhost:3000", I get nothing. What`s wrong?
You need to start the web server, but without mysql, it won't work..
> 3. Would you mind tell me if all the task that I have done correct or
> not? I need some suggestion or adviseable. Please....
Install rails, then install mysql, then start the server, it should work
fine...
>
>
> I do hope anybody can help me. Please...
>
>
> Regards,
>
>
>
> Ferianto
>
> ------------------------------------------------------------------------
> Yahoo! Messenger with Voice. Make PC-to-Phone Calls
>
> to the US (and 30+ countries) for 2¢/min or less.
>
>
> ------------------------------------------------------------------------
>
> _______________________________________________
> Users mailing list
> Users(a)openser.org
> http://openser.org/cgi-bin/mailman/listinfo/users
---------------------------------
Stay in the know. Pulse on the new Yahoo.com. Check it out.
---------------------------------
How low will we go? Check out Yahoo! Messengers low PC-to-Phone call rates.
The mediagateway it is installed in a webfarm of BT (British Telecom) , while the sn2400 it is a sipgateway.
I do not succeed to carry out calls of the net outside, while I succeed to receive them. What I must make? thanks.
___________________________________________________________________
Prestiti da 15 istituti. Tan dal 5,90% per richieste entro il 31 Agosto. Servizio gratuito.
http://click.libero.it/mutuionline1