Kamailio 3.1 log is filled with lines like
Oct 29 03:32:46 west /usr/local/sbin/kamailio[632]: INFO: <script>: incoming
reply from udp:188.62.4.186:65333 SIP/2.0 404 Not Found Via: SIP/2.0/UDP
204.74.213.5:5060;branch=0 From: <sip:pinger@sip.callwithus.com>;tag=3993f0c
To: <sip:188.62.4.186:65333> Call-ID: aff32da5-89ef0136-71dc8c5(a)204.74.213.5
CSeq: 1 OPTIONS Content-Length: 0
Oct 29 03:32:46 west /usr/local/sbin/kamailio[632]: INFO: <core>
[forward.c:774]: broken reply to forward - no 2nd via
Shouldn't replies to NAT ping messages be silently dropped like in 1.4?
Hi folks,
I have a problem with setting billing party in my radius messages. My
accounting is done by CDRTool via radius messages to radius server. The
thing I don`t know is how to set billing party variable (by default
$avp(s:billing_party) with reliable value. I can try adding Diversion header
and fill the variable with it, but can I trust the Diversion header? When
UAC sets redirect(302) and Invite comes, he replies 302 and Kamailio passes
this message to origin. However is it possible to change Diversion header by
UAC? This could be way how to make free calls and bill it to someone else.
I was thinking of uac_redirect module. If I get it right this module saves
original number in memory and does not use message itself to store it. In
documentation there is written that accounting can by done by
setting modparam("uac_redirect", "acc_function", "acc_rad_request"). Even
when I use exported function set_accept_filter() the accounting itself isn't
done. I`d like to get original number from module uac_redirect and set it to
$avp(s:billing_party). This would solve the problem of billing forwarded
calls.
Am I getting it right? Is there anything else what can be passed to billing
party variable to make correct bililng?
I'm using kamailio 3.1.x and CDRTool v 8.0.6
Thanks,
Efelin
Can someone post an example of usage of tm.t_uac_start from the
command line using sercmd over a UNIX domain socket (e.g.
/tmp/ser_ctl)? I am quite unclear on how to pass minimally necessary
header values to it in this form and cannot seem to get the syntax right.
Thanks!
--
Alex Balashov - Principal
Evariste Systems LLC
1170 Peachtree Street
12th Floor, Suite 1200
Atlanta, GA 30309
Tel: +1-678-954-0670
Fax: +1-404-961-1892
Web: http://www.evaristesys.com/
Hi
I am trying to get siremis working with kamailio, butwhen i open the login page and enter the username and password nothing happens.
I have followed the instruction on the siremis home page.
Created mysql db called openser and inserted username admin& password admin.
mysql> use openser;
Reading table information for completion of table and columnnames
You can turn off this feature to get a quicker startup with-A
Database changed
mysql> select * from ob_users;
+-------+--------+----------+
| SYSID | USERID | PASSWORD |
+-------+--------+----------+
| 1 | admin |admin |
+-------+--------+----------+
1 row in set (0.00 sec)
mysql>
edited /var/www/html/siremis-1.0.1/siremis/metadata/Config.xml
<?xml version="1.0"standalone="no"?>
<Config>
<DataSource>
<DatabaseName="Default" Driver="Pdo_Mysql"Server="localhost" DBName="openser" User="admim"Password="admin" />
<DatabaseName="Seremis" Driver="Pdo_Mysql"Server="localhost" DBName="openser" User="admin"Password="admin" />
</DataSource>
</Config>
Ifsomeone could point out to me where i have gone wrong i would really appreciateit.
Regards,
Gerry Kernan
InfinityIT
Suite 17 The Mall,
Beacon court,
Sandyford,
Dublin 18.
p:+353-1-2930090
f:+353-1-2930137
Hello,
I am please to announce the launch of Kamailio Business Directory.
This is a web page hosted by the project site that will list companies
and individuals offering products, services or solutions based on
Kamailio or SER. It is an open directory that tries to enable more
visibility to the business market around the project and help finding
quickly the best service for specific market demands.
We invite everyone doing such business to apply to be listed, please
follow the instructions at:
http://www.kamailio.org/w/business-directory-rules/
We have already several companies listed, couple of them to still in
review process, therefore check it again soon, the directory is
available at:
http://www.kamailio.org/w/business-directory/
Cheers,
Daniel
--
Daniel-Constantin Mierla
http://www.asipto.com
Hi, how is the syntax of the "reply_code" column in 'carrierroute'
module? In the doc I some examples:
408
404
50.
Obviously "50." means any code starting by "50", but is it a typical
regular expression? For example, does it allow something like
"500|503" or "50[03]"?
Thanks.
--
Iñaki Baz Castillo
<ibc(a)aliax.net>
Dear All,
Can someone help me to connect my kamilio in order to make a PSTN call by
rewriting host tp PSTN gateway? I changed my config in a manner to do
that...The line is ringing but as soon as I open the line on other side the
call will hangup...Please find the piece of code
# RTPProxy control
route[RTPPROXY] {
#!ifdef WITH_NAT
if (is_method("BYE")) {
unforce_rtp_proxy();
} else if (is_method("INVITE")){
rewritehost("XX.XX.XX.XX");
force_rtp_proxy();
}
if (!has_totag()) add_rr_param(";nat=yes");
#!endif
return;
}
Regards
Hi,
I'm using radius server to do an accounting, but it does not store an
application type (audo/video). Audio/video calls has to be rated with
cdrtool, that is why I need this information. It is not even sent through
radius protocol, so the radius server cannot get it. My extra-params are:
modparam("acc", "radius_extra", "User-Name=$Au; \
Calling-Station-Id=$from; \
Called-Station-Id=$to; \
Sip-Translated-Request-URI=$avp(s:translated_uri); \
Sip-RPid=$avp(s:rpid); \
Source-IP=$si; \
Source-Port=$sp; \
Canonical-URI=$avp(s:can_uri); \
Billing-Party=$avp(s:billing_party); \
Divert-Reason=$avp(s:divert_reason); \
X-RTP-Stat=$hdr(X-RTP-Stat); \
Contact=$hdr(contact); \
Event=$hdr(event); \
SIP-Proxy-IP=$avp(s:sip_proxy_ip); \
ENUM-TLD=$avp(s:enum_tld)")
Suggestions? Thanks.