Hello, I am running kamailio server in my set up. And have got siremis working for monitoring purposes. Problem is that in web interface, domain name of users is not shown in siremis. If a user is online, I get following credentials infront of "Client" column, Client.Name@Client's.IP How can I show domain name in siremis ??
Any help will be highly appreciated. Thanks, Regards, Aawaise.
-- View this message in context: http://sip-router.1086192.n5.nabble.com/Show-Domain-Name-in-Siremis-tp126602... Sent from the Users mailing list archive at Nabble.com.
Hello,
which page are you looking at?
Cheers, Daniel
On 08/04/14 06:59, aawaise wrote:
Hello, I am running kamailio server in my set up. And have got siremis working for monitoring purposes. Problem is that in web interface, domain name of users is not shown in siremis. If a user is online, I get following credentials infront of "Client" column, Client.Name@Client's.IP How can I show domain name in siremis ??
Any help will be highly appreciated. Thanks, Regards, Aawaise.
-- View this message in context: http://sip-router.1086192.n5.nabble.com/Show-Domain-Name-in-Siremis-tp126602... Sent from the Users mailing list archive at Nabble.com.
SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list sr-users@lists.sip-router.org http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users
I am looking at the "LOCATION LIST" under "SER MONITOR MENU". I am looking at the online users. The user's IP adress can been seen the table infront of "Contact" but there is nothing present infront of "Domain".
-- View this message in context: http://sip-router.1086192.n5.nabble.com/Show-Domain-Name-in-Siremis-tp126602... Sent from the Users mailing list archive at Nabble.com.
The contact is the address of the device. To get the domain part set, you have to set use_domain to usrloc module in kamailio.cfg
Cheers, Daniel
On 08/04/14 10:08, aawaise wrote:
I am looking at the "LOCATION LIST" under "SER MONITOR MENU". I am looking at the online users. The user's IP adress can been seen the table infront of "Contact" but there is nothing present infront of "Domain".
-- View this message in context: http://sip-router.1086192.n5.nabble.com/Show-Domain-Name-in-Siremis-tp126602... Sent from the Users mailing list archive at Nabble.com.
SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list sr-users@lists.sip-router.org http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users
Boss,
In my environment, I have two kamailio servers with different domain names, both connected to a single database. As far as I understood, this "usrloc" module picks information from database. And here in my case, database provides no info about domain name. I am saying this because user registered with a domain name can be logged in using other domain name through second server as far as username and password are same. The statement used in kamailio.cfg is as follows.
"modparam("usrloc", "use_domain", MULTIDOMAIN)"
Setting use_domain to usrloc means setting it to "domain name" instead of "MULTIDOMAIN" ?? I tried but it didn't work for me. Please help.
Regards, Aawaise
-- View this message in context: http://sip-router.1086192.n5.nabble.com/Show-Domain-Name-in-Siremis-tp126602... Sent from the Users mailing list archive at Nabble.com.
Hello,
it should be:
modparam("usrloc", "use_domain", 1)
if you are using the default config, then skip the above and just do:
#!define WITH_MULTIDOMAIN after the first line in kamailio.cfg -- read the comments at the top of kamailio.cfg for more details. Practically when defining WITH_MULTIDOMAIN, the MULTIDOMAIN token is defined to 1.
Cheers, Daniel
On 09/04/14 08:25, aawaise wrote:
Boss,
In my environment, I have two kamailio servers with different domain names, both connected to a single database. As far as I understood, this "usrloc" module picks information from database. And here in my case, database provides no info about domain name. I am saying this because user registered with a domain name can be logged in using other domain name through second server as far as username and password are same. The statement used in kamailio.cfg is as follows.
"modparam("usrloc", "use_domain", MULTIDOMAIN)"
Setting use_domain to usrloc means setting it to "domain name" instead of "MULTIDOMAIN" ?? I tried but it didn't work for me. Please help.
Regards, Aawaise
-- View this message in context: http://sip-router.1086192.n5.nabble.com/Show-Domain-Name-in-Siremis-tp126602... Sent from the Users mailing list archive at Nabble.com.
SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list sr-users@lists.sip-router.org http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users
Another thing I noted is that in usrloc module other parameters of Location List page like Received, CallId, CSeq, Las Modified, Flags, User Agent etc are not defined in kamailio.cfg. Yet they are showing concerned values. How are they showing values ??
Regards, Aawaise.
-- View this message in context: http://sip-router.1086192.n5.nabble.com/Show-Domain-Name-in-Siremis-tp126602... Sent from the Users mailing list archive at Nabble.com.
On 09/04/14 09:20, aawaise wrote:
Another thing I noted is that in usrloc module other parameters of Location List page like Received, CallId, CSeq, Las Modified, Flags, User Agent etc are not defined in kamailio.cfg. Yet they are showing concerned values. How are they showing values ??
Those attributes are from REGISTER request. Using the domain part of the AoR is a matter of module parameter use_domain.
Cheers, Daniel