Hi all,
I am working in basic call. I got common cause that opposite side (callee)
lost connection and caller still hangging in the call. Is there any message
to server to caller in this case?
Thanks,
Nhan
Hello,
I have an issue when loading topos module on Kamailio 5.0.2 version.
root@proxy:/home/tcpdump# kamailio -V
version: kamailio 5.0.2 (x86_64/linux)
The call flow is: uac --> kamailio --> Asterisk
1) Invite from uac
2) Kamailio forward the invite to asterisk
3) asterisk send 200 OK to kamailio
4) kamailio send 200 OK to uac -> in the conctact header, i can see the IP
address of kamailio
5) uac send ACK to kamailio and kamailio forward the ACK to Asterisk
6) uac send re-invite: "media change" to kamailio.
7) kamailio forward the re-invite to asterisk and asterisk send 200 OK to
kamailio
8) kamailio send 200 ok to uac --> but the contact header contains IP of
Asterisk and not kamailio: is it normal?
Thank for you help.
Regards
--
Abdoul OSSENI
Hello,
Kamailio SIP Server v5.0.2 stable release is out!
This is a maintenance release of the latest stable branch, 5.0, that
includes fixes since the release of v5.0.1. There is no change to
database schema or configuration language structure that you have to do
on previous installations of v5.0.x. Deployments running previous 5.0.x
versions are strongly recommended to be upgraded to v5.0.2.
For more details about version 5.0.2 (including links and guidelines to
download the tarball or from GIT repository), visit:
* https://www.kamailio.org/w/2017/06/kamailio-v5-0-2-released/
RPM, Debian/Ubuntu packages will be available soon as well.
Many thanks to all contributing and using Kamailio!
Cheers,
Daniel
--
Daniel-Constantin Mierla
www.twitter.com/miconda -- www.linkedin.com/in/miconda
Hello,
I'm using Kamailio in a Multi Domain setting.
I have a problem with SUBSCRIBE within a Dialog
With the first subscribe no problem:
SUBSCRIBE -> 407 Proxy Auth -> SUBSCRIBE -> 200 OK
In the 200 OK the Contact header contain the Kamailio IP so when the
Softphone send another SUBSCRIBE within the dialog (at the IP present on
the contact header) Kamailio answer whit a 404 Not Here because I use
these lines:
if (is_method("SUBSCRIBE") && is_uri_host_local()) {
# in-dialog subscribe requests
route(PRESENCE);
exit;
}
So, as the softphone send the new SUBSCRIBE to Kamailio IP and not the
Kamailio domain, Kamailio not use this block but:
sl_send_reply("404","Not here");
exit;
}
My question is: Why Kamailio in the Contact Header of 200 OK of
SUBSCRIBE use the public IP and not the domain?
Regards
Hi all,
I'm trying to use the Redis database for authentication and later for accounting. I installed Redis on the server, I compiled Kamailio with ndb_redis and the module exists.
When I try to start Kamailio I get following errors:
0(16737) ERROR: <core> [db.c:203]: db_bind_mod(): Module db_redis not found. Missing loadmodule?
0(16737) ERROR: auth_db [auth_db_mod.c:175]: mod_init(): unable to bind to a database driver
0(16737) ERROR: <core> [core/sr_module.c:968]: init_mod(): Error while initializing module auth_db (/usr/local/lib64/kamailio/modules/auth_db.so)
ERROR: error while initializing modules
Bellow are the relevant parts from config files.
Is there any example of kamailio.cfg with Redis configuration and commands for authentication and accounting?
Please help me to use Kamailio with Redis.
Thank youRegardsMarko
kamctlrc
---------
DBENGINE=DBTEXT
kamailio.cfg
-------------
#!define WITH_REDIS
#!define WITH_AUTH
#!ifdef WITH_REDIS
#!define DBURL "redis://localhost:6379/"
#!endif
#!ifdef WITH_AUTH
loadmodule "auth.so"
loadmodule "auth_db.so"
#!endif
#!ifdef WITH_REDIS
loadmodule "ndb_redis.so"
#!endif
# ----- ndb_redis params -----
modparam("ndb_redis", "server", "name=srv1;addr=127.0.0.1;port=6379;db=1")
# ----- auth_db params -----
#!ifdef WITH_AUTH
modparam("auth_db", "db_url", DBURL)
modparam("auth_db", "calculate_ha1", yes)
modparam("auth_db", "password_column", "password")
modparam("auth_db", "load_credentials", "")
modparam("auth_db", "use_domain", MULTIDOMAIN)
#!endif
| | Virenfrei. www.avast.com |
Hello,
I am considering to release Kamailio v5.0.2 sometime next week, likely on Wednesday or Thursday, Jun 14 or 15, 2017. Should anyone be aware of issues not listed yet on bug tracker from github.com/kamailio/kamailio, report them there as soon as possible to try to fix.
Cheers,
Daniel
--
Daniel-Constantin Mierla
www.twitter.com/miconda -- www.linkedin.com/in/miconda
Kamailio Advanced Training - www.asipto.com
Kamailio World Conference - www.kamailioworld.com
Hello,
Since i installed rtpengine, I have many messages like "UDP: bad checksum".
[383818.303391] UDP: bad checksum. From x.x.x.x:7272 to x.x.x.x:45898 ulen
58
[383819.671083] UDP: bad checksum. From x.x.x.x:7272 to x.x.x.x:45898 ulen
58
[383819.943360] UDP: bad checksum. From x.x.x.x:7272 to x.x.x.x:45898 ulen
58
[383821.516016] UDP: bad checksum. From x.x.x.x:7272 to x.x.x.x:45898 ulen
58
[383821.663985] UDP: bad checksum. From x.x.x.x:7272 to x.x.x.x:45898 ulen
58
Do you have any idea where to start investigating?
Env:
debian :
- jessie
- kernel : 3.16.0-4-amd64
- rtpengine : 5.3.0.0+0~mr5.3.0.0
- kamailio : 5.0.1
Regards
--
Abdoul OSSENI
Hello all.
I have a kamailio server routing request to a pstn gw and I want to change the number displayed on callee side. Say the caller's user name is "test", and it calls the number 18512345678, and I want the incoming all number displayed on callee side to be 13587654321. How can I achieve this?
Thanks,
Jesse
Hi all.
I have 10 kamailio servers across the world. Each of them has a public ip which is also their SIP DOMAIN. When a user register on my service, I'd use their username and password to generate 10 sip accounts, one for each kamailio server so that they can register to any of them. So for each user I will have to insert 10 records in the subscriber table. Is there a better way to do this?
Cheers
Jesse