Does anyone know if there is a way to authenticate SER to MS Active
Directory? I'd like to use an existing user database instead of
having to manage users myself, and most of our users are in Active
Directory.
Has anyone tried this?
What are most SER users using for authentication? Is anyone here
tying into any kind of existing organization user database?
Hi Jiri.
Two questions please.
1.)
Jiri Kuthan HYPERLINK
"mailto:serusers%40iptel.org?Subject=%5BSerusers%5D%20ENUM%20variable%20TLD%
3F&In-Reply-To=4032B769.8000804%40august.net"jiri at iptel.org
Wed Feb 18 02:25:07 CET 2004
* Previous message: HYPERLINK
"http://lists.iptel.org/pipermail/serusers/2004-February/006025.html"[Seruser
s] ENUM variable TLD?
* Next message: HYPERLINK
"http://lists.iptel.org/pipermail/serusers/2004-February/006022.html"[Seruser
s] current uri
* Messages sorted by: HYPERLINK
"http://lists.iptel.org/pipermail/serusers/2004-February/date.html#6026"[
date ] HYPERLINK
"http://lists.iptel.org/pipermail/serusers/2004-February/thread.html#6026"[
thread ] HYPERLINK
"http://lists.iptel.org/pipermail/serusers/2004-February/subject.html#6026"[
subject ] HYPERLINK
"http://lists.iptel.org/pipermail/serusers/2004-February/author.html#6026"[
author ]
_____
on development branch there is an updated enum module which
allows you to use private enum trees the way you are asking.
If you need it, there should be no conflicts if you take
devel version of enum and put it in your 8.12 source tree.
-jiri
At 01:52 AM 2/18/2004, Greg Fausak wrote:
>Normally I do enum lookups inside my
>domain, however, I want to be able to do
>an enum lookup at other TLD. Is there a
>way to do that? Maybe enum_query("e164.other.com")??
>
I have downloaded the latest code as you suggested but have not been able to
figure out how to specify a different TLD.
I have looked a documentation but that has not helped either.
Can you please tell me what the function I need is called?
2.)
Is there an updated ENUM module that would allow me to preform an ENUM query
based on a spcified prefix?
In other words, what if I would like to preform an ENUM query when a number
comes in with a "**" instead of the "+".
I have modified the c code to do this for me but was wondering if you have
released a "production" version of this code.
Thanks,
David Schwartz
---
Outgoing mail is certified Virus Free.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.796 / Virus Database: 540 - Release Date: 11/13/2004
Hi list. I have this problem. There's something that's not working,
because, when ever I set up a call, I receive both messages INVITE and
BYE instantly. I think the correct way would it be to send Start
messages (Acct-Status-Type = Start) upon INVITEs and Stop messages
(Acct-Status-Type = Stop) upon BYEs. But this is not happening. Look ...
radrecv: Accounting Request from host c0a801fd code=4, id=205,
length=270
Acct-Status-Type = Start
Service-Type = Sip-Session
Sip-Response-Code = 200
Sip-Method = Invite
User-Name = "1992001(a)192.168.1.253"
Calling-Station-Id = "sip:1992001@192.168.1.253:5060;user=phone"
Called-Station-Id = "sip:1992005@192.168.1.253:5060;user=phone"
Sip-Translated-Request-URI = "sip:1992005@192.168.1.178:11005"
Acct-Session-Id = "6dfb6640367b1ab7(a)192.168.1.113"
Sip-To-Tag = "54061171"
Sip-From-Tag = "39eeac148f846cb9"
Sip-CSeq = "1544"
NAS-IP-Address = 192.168.1.253
NAS-Port-Id = 5060
Acct-Delay-Time = 0
Sending Accounting Ack of id 205 to c0a801fd (nas linux)
radrecv: Accounting Request from host c0a801fd code=4, id=206,
length=270
Acct-Status-Type = Start
Service-Type = Sip-Session
Sip-Response-Code = 200
Sip-Method = Bye
User-Name = "1992001(a)192.168.1.253"
Calling-Station-Id = "sip:1992001@192.168.1.253:5060;user=phone"
Called-Station-Id = "sip:1992005@192.168.1.253:5060;user=phone"
Sip-Translated-Request-URI = "sip:1992005@192.168.1.178:11005"
Acct-Session-Id = "6dfb6640367b1ab7(a)192.168.1.113"
Sip-To-Tag = "54061171"
Sip-From-Tag = "39eeac148f846cb9"
Sip-CSeq = "1544"
NAS-IP-Address = 192.168.1.253
NAS-Port-Id = 5060
Acct-Delay-Time = 0
Sending Accounting Ack of id 206 to c0a801fd (nas linux)
Do you see ? ...Both outputs show an Acct-Status-Type = Start, but first
output refers to an INVITE and second output refers to BYE message. And
the strange thing is that both messages arrive instantly, as soon as the
peer answers the phone. Why ??? I don't think this is correct, isn't it
?
Any hint ?
here goes my ser.cfg ...
[...]
# -- RADIUS ACC --
modparam("acc", "radius_config", "/etc/radiusclient.conf")
modparam("acc", "radius_flag", 1) modparam("acc", "radius_missed_flag",
2) modparam("acc", "log_level", 1) modparam("acc", "service_type", 15)
[...]
if (loose_route())
{
t_relay();
break;
};
if (uri==myself)
{
if (method=="REGISTER")
{
# Lo siguiente es para auth con RADIUS
if (!radius_www_authorize(""))
{
www_challenge("", "0");
break;
};
save("location");
break;
};
if (method=="INVITE")
{
setflag(1);
};
# native SIP destinations are handled using our USRLOC
DB
if (!lookup("location"))
{
sl_send_reply("404", "Not Found");
break;
};
};
t_relay();
[...]
Regards,
Lucas
--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.296 / Virus Database: 265.6.6 - Release Date: 28/12/2004
Yeap.
Me.!
Cheers
Ricardo Martinez
-----Mensaje original-----
De: O-Zone [mailto:liste@zerozone.it]
Enviado el: Miércoles, 22 de Diciembre de 2004 11:12
Para: ser users
Asunto: [Serusers] SER + RADIUS
Someone use SER with Radius Auth ?
Oz
--
------
O-Zone ! www.zerozone.it
_______________________________________________
Serusers mailing list
serusers(a)lists.iptel.org
http://lists.iptel.org/mailman/listinfo/serusers
Hi All,
Any idea, how to change registration timeout value in
ser.cfg so that my phone register with the server
every 5 minutes in place of default 1 minute.
Please advise.
Regards,
Suvendu.
________________________________________________________________________
Yahoo! India Matrimony: Find your life partner online
Go to: http://yahoo.shaadi.com/india-matrimony
> Thank you first for your answer, but where can I find the error_reporting
> variable?
oh, sorry
this variable is in php.ini
> Second, in spite of changing the access permission of the ser_fifo for
> writing and reading php scripts, php scripts could not open ser_fifo for
> writing and thus got on the web browser (user_interface/my_account.php...)
> the following error "sorry -- cannot open write fifo".
> How can I solve this problem?
> Best regards,
This is a frequently asked question. The solution is in ser.cfg -
variable mod_fifo - or something like this I don't know exact name now.
Or search list archive, there are a lot of questions and answers to this.
Karel
>
> -----Ursprüngliche Nachricht-----
> Von: Karel Kozlik [mailto:kozlik@kufr.cz]
> Gesendet: Mittwoch, 22. Dezember 2004 13:07
> An: Adel Al-Hezmi
> Cc: serusers(a)lists.iptel.org
> Betreff: Re: [Serusers] Propem with the SER Web interface
>
> Hello,
> this is a problem of used library phplib (not errors, only notices).
> Will be fixed in next version of serweb. For now you can disable this
> messages by set:
>
> error_reporting = E_ALL & ~E_NOTICE
>
> Karel
>
> Adel Al-Hezmi wrote:
>
>
>>Hello all,
>>
>>
>>
>>Last week I sent a question about my problem with ser_fifo and ser web
>>interface, that the php script could not open ser_fifo for writing, in
>>spite of changing access permission of ser_fifo allowing php scripts for
>>read and write. I parsed the error_log file of http server and found
>>that the oohforms.inc in phplib generates a lot of errors, such as
>>undefined index or property. Here is a part of the error_log file:
>>
>>[
>>
>>client 10.10.11.36] PHP Notice: Undefined offset: 9 in
>>/var/www/html/ser/html/page.php on line 219, referer:
>>
>
> http://10.10.11.36/ser/html/user_interface/index.php?phplib_Session=783a0f6d
> 9ac75df3a91a5bc0b1b7c3b0
>
>>[client 10.10.11.36] PHP Notice: Undefined offset: 10 in
>>/var/www/html/ser/html/page.php on line 223, referer:
>>
>
> http://10.10.11.36/ser/html/user_interface/index.php?phplib_Session=783a0f6d
> 9ac75df3a91a5bc0b1b7c3b0
>
>>[client 10.10.11.36] PHP Notice: Undefined variable: message in
>>/var/www/html/ser/html/user_interface/my_account.php on line 356,
>>referer:
>>
>
> http://10.10.11.36/ser/html/user_interface/index.php?phplib_Session=783a0f6d
> 9ac75df3a91a5bc0b1b7c3b0
>
>>[client 10.10.11.36] PHP Notice: Undefined index: frozen in
>>/var/www/html/ser/phplib/oohforms.inc on line 284, referer:
>>
>
> http://10.10.11.36/ser/html/user_interface/index.php?phplib_Session=783a0f6d
> 9ac75df3a91a5bc0b1b7c3b0
>
>>[client 10.10.11.36] PHP Notice: Undefined index: frozen in
>>/var/www/html/ser/phplib/oohforms.inc on line 284, referer:
>>
>
> http://10.10.11.36/ser/html/user_interface/index.php?phplib_Session=783a0f6d
> 9ac75df3a91a5bc0b1b7c3b0
>
>>
>>
>>I hope some can help me J
>>
>>
>>
>>Best regards Adel Al-Hezmi
>>
>>
>>------------------------------------------------------------------------
>>
>>_______________________________________________
>>Serusers mailing list
>>serusers(a)lists.iptel.org
>>http://lists.iptel.org/mailman/listinfo/serusers
>
>
Hi,
I have a question about the function avp_db_load(source, name) in avpops.
Can the first parameter source be any avp variable? For example, after
lookup, I want to load some user preference based on canonical RURI saved
earlier in an avp.
Thanks,
Richard
DEAR ALL,
i'm using ser 8.12 version in redhat 9.0.
i have problem when i tried to add alias.
the problem are like this:
when i don't add script in ser.cfg "modparam("usrloc", "use_domain", 1)",
i tried to add alias:
# serctl alias add 987654 sip:klien1@sip.pcr.ac.id
the output said: 200 added to table alias. and the problem is I can't contact the user by alias. 404 not found
when i added script in ser.cfg "modparam("usrloc", "use_domain", 1)",
i tried to add alias, the ouput said:
[root@gateway root]# serctl alias add 987654 sip:klien1@sip.pcr.ac.id
500 Error while adding contact
('987654(a)sip.pcr.ac.id','sip:klien1@sip.pcr.ac.id') in table 'aliases'.
what should i do??? ANY IDEA????. I used the latest sc version.
Sita Rosita
___________________________________________________
Share diaries and photos with your friends and family.
http://www.homemaster.net - Homemaster. Come Together. Online.
Hi All.
I have a problem with SER when i use mediaproxy.
I install SER in a computer(Linux Fedora 2) with ip 192.168.1.37.
System run properly.
I install more mediaproxy into system SER because i want to solve
problem NAT.I had configured my config file.
I begin test system mediaproxy :
I have 2 GranStream BT100:
BT1 :192.168.1.33 Phone :111
BT2 :192.168.1.35 Phone :333
When i make a call from 333 to 111 then display following:
[root@dhcppc4 root]# tail -f /var/log/messages
Dec 30 11:59:55 dhcppc4 proxydispatcher[3292]: command delete
57d2c31487b829d9(a)192.168.1.33 info=
Dec 30 11:59:55 dhcppc4 proxydispatcher[3292]: command execution time:
0.77 ms
Dec 30 11:59:55 dhcppc4 proxydispatcher[3292]: command request
57d2c31487b829d9(a)192.168.1.33 192.168.1.33:5004:audio 192.168.1.33
192.168.1.37 local 192.168.1.35 remote Grandstream=20BT100=201.0.5.16
info=from:111@192.168.1.37:5060,to:333@192.168.1.37:5060,fromtag:41cbda14a0e4af53,totag:
Dec 30 11:59:55 dhcppc4 proxydispatcher[3292]: domain 192.168.1.37
doesn't define any mediaproxy.
Dec 30 11:59:55 dhcppc4 proxydispatcher[3292]: will use default
mediaproxy for this call.
Dec 30 11:59:55 dhcppc4 mediaproxy[3296]: command request
57d2c31487b829d9(a)192.168.1.33 192.168.1.33:5004:audio 192.168.1.33
192.168.1.37 local 192.168.1.35 remote Grandstream=20BT100=201.0.5.16
info=from:111@192.168.1.37:5060,to:333@192.168.1.37:5060,fromtag:41cbda14a0e4af53,totag:,dispatcher
Dec 30 11:59:55 dhcppc4 mediaproxy[3296]: session
57d2c31487b829d9(a)192.168.1.33: started. listening on 192.168.1.37:35022
Dec 30 11:59:55 dhcppc4 mediaproxy[3296]: command execution time: 4.85
ms
Dec 30 11:59:55 dhcppc4 proxydispatcher[3292]: forwarding to mediaproxy
on /var/run/mediaproxy.sock: got: '192.168.1.37 35022'
Dec 30 11:59:55 dhcppc4 proxydispatcher[3292]: command execution time:
246.63 ms
Dec 30 12:00:17 dhcppc4 mediaproxy[3296]: command status
Dec 30 12:00:17 dhcppc4 mediaproxy[3296]: command execution time: 0.48
ms
Dec 30 12:00:55 dhcppc4 mediaproxy[3296]: session
57d2c31487b829d9(a)192.168.1.33: 0/0/0 packets, 0/0/0 bytes
(caller/called/relayed)
Dec 30 12:00:55 dhcppc4 mediaproxy[3296]: session
57d2c31487b829d9(a)192.168.1.33: ended (did timeout).
I see no packets throught mediaproxy and Ser dead.And when i do
statement ./sessions.py then display :
Caller Via Called Status Duration Codec
Type Traffic
---------------------------------------------------------------------------------------
?.?.?.?:? - 192.168.1.37:35022 - ?.?.?.?:? inactive 0'22" Unknown
Audio 0/0/0
I don't know to solve it.
Can anybody help me.
Thanks a lot.
Hi all,
I have a problem with fetching rpid value from DB. I read the auth_db module and I put in ser.cfg file the new exported parameters:
modparam("auth_db", "avps_column_int", "domn")
modparam("auth_db", "avps_column_str", "uuid|rpid")
and I have deleted use_rpid=1.
but when the script insert Remote-Party HF (after challenge INVITE/407/ACK/INVITE w/credentials), the rpid value is NULL/wrong....what I'm forgetting/wrong???
Regards,
Verbal