Anyone use the rtp proxy module yet? I am looking to proxy rtp of my
carrier who sends out calls to me, so if anyone has example configurations
that work i would appreciate it!
Hi all,
Is there a solution to solve this ?
ASTERISK 1.2.4
||
Internet===SER/OPENSER=====Nat==[private net]
|| sip agents
rtpproxy/mediaproxy
Sip agents use SER/OPENSER as an outbound sip proxy
and asterisk as a registar server, pbx functions, ...
SER/OPENSER look for domains in URI. if domains are
handled by SER/OPENSER so requests are forwarded to
ASTERISK.
If domain in URI is not handled by SER/OPENSER and/or
ASTERISK I wish the request is sent to Asterisk before
to send back it to SER/OPENSER. in other word i wish
to define SER/OPENSER server as oubound proxy for
Astersik.
Is it Possible ?
Harry
___________________________________________________________________________
Nouveau : téléphonez moins cher avec Yahoo! Messenger ! Découvez les tarifs exceptionnels pour appeler la France et l'international.
Téléchargez sur http://fr.messenger.yahoo.com
Dear all,
Please let me know what happen. Just create a new
database by ser_mysql.sh script.
# serctl add 200 200 200(a)test.com
MySql password:
error: 400; check if you use aliases in SER
Best Regard,
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
hi
does anyone have a source of documentation that can help me setting
up the following?
one SER box (with a potential additional box for failover) should
- Accept REGISTER and so on and just balance these over n asterisk
boxes in behind. No authentication should be done on the SER box.
- Accept INVITE and distribute this linearly to n asterisk boxes
behind, starting with box 1, allow up to n calls to each box (each
box having n PRI/E1s).
- Accept INVITE from the asterisk boxes and forward these to the
client
- All RTP traffic should be proxied locally
All help appreciated :)
roy
On Wed, March 1, 2006 5:01 pm, Ofer Zaarur said:
> I have problem getting classkit module to set serweb correctly using
> php5. it looks like this issue had been raise before. please let me know
> where I can get it.
You may find some problems running serweb with PHP5, much easier
to run PHP4 as it has classkit.
If you really want to try here is an example for building classkit at
/usr/local/src:
Get the source for php5 and untar to get: /usr/local/src/php5/php-5.1.2
Get the source for classkit from: http://pecl.php.net/package/classkit
cd /usr/local/src/php5/php-5.1.2/ext and untar the source from the pecl
web site for classkit in the directory above and rename the directory
from classkit-0.4 to classkit.
Then cd .. to the top level of the php-5.1.2 build system and run:
phpize && ./configure --with-classkit
cd to ext/classkit and you will now find a complete build tree
run configure and make and you will get classkit.dsp, classkit.la,
classkit.lo
When you type make install it will install classkit.so in
/usr/local/lib/php/20050922
The shared library version with the .so suffix is created in the
above step.
Hope this helps
-kim
--
w8hdkim(a)gmail.com
Hello,
I am struggling to make sense of acc logging when combined with forwarding a
call. My openser.cfg is below this in message.
Every time I place a call from a softphone that registeres to SER, I get 30+
records in acc, most of them INVITEs and some are ACKs and there are no
BYEs. I can't seem to find any documentation that would explain to me what I
am doing wrong. Someone, please put me on the right path.
route{
setflag(3);
if(method=="REGISTER") {
if (!www_authorize("domain.com", "subscriber")) {
www_challenge("richmedium.com", "0");
return;
};
save("location");
return;
}
if (loose_route()) {
# mark routing logic in request
append_hf("P-hint: rr-enforced\r\n");
return;
};
if(method=="INVITE") {
if (!www_authorize("richmedium.com", "subscriber")) {
www_challenge("richmedium.com", "0");
return;
};
}
if (uri=~"^sip:1[0-9]*{10}@192.168.1.10") {
forward(192.168.1.10,5061);
} else {
sl_send_reply("404", "Use prefix 1 to dial");
}
t_relay();
}
hi,
i have 3 servers in my setup, in which each server has a user registered. i need to route a call from one server to other. in first case i kept all servers in same domine and later i need to check with all servers in different domains.
can any one tell me is there any way to achive this.
with regards
vicky
vicky
Hi,
based on the original feature request from Thomas Gelf <thomas(a)gelf.net>
(see http://www.openser.org/pipermail/devel/2006-January/001701.html),
the UAC module from OpenSER head allows dynamic definition of
credentials to be used in UAC authentication via AVPs.
Three new module parameters allow the definitions of the AVPs to be used
as realm, username and password. See
http://openser.org/docs/modules/1.1.x/uac.html
How it works?
if the AVPs are defined (note you have to define none or all three of
them), when UAC auth is performed, the module will first look for the
AVPs to see if they are set or not. If all set and the realm from AVP
matches the realm from challenge, the credentials from AVPs will be use.
Otherwise the statically defined credentials (via module parameter) will
be tried.
Important Note: only the first found AVPs will be used!
regards,
bogdan