Hello all.
I'm using ser from the CVS head branch. When my ser.cfg calls lookup("aliases") nothing seems to be returned.
I have a real user named "1000" which works since I can originate and recieve calls.
I need to alias this because I need this user to receive calls from the PSTN.
I have used serctl to create an alias with the following command:
serctl add 2025551234 sip:1000@mycompany.com
I also verified that this new alias is in the mysql database ser.aliases table
Now I make a call from a land line to 2025551234 and I use ngrep on my sip proxy to monitor port 5060. I see that a 404 is always returned after the statement
if (!lookup("location")) { # off to highway 404 }
I have the lookup("aliases") command prior to the lookup("location") command.
I have also experimented with creating an alias such as "1001" for user "1000" and dialing it from another registered UA on my softswitch only to get the same result --- a 404.
How can get the lookup("aliases") to return something?
Regards, Paul
_______________________________ Do you Yahoo!? Declare Yourself - Register online to vote today! http://vote.yahoo.com
On Sep 22, 2004 at 13:34, Java Rockx javarockx@yahoo.com wrote:
Hello all.
I'm using ser from the CVS head branch. When my ser.cfg calls lookup("aliases") nothing seems to be returned.
I have a real user named "1000" which works since I can originate and recieve calls.
I need to alias this because I need this user to receive calls from the PSTN.
I have used serctl to create an alias with the following command:
serctl add 2025551234 sip:1000@mycompany.com
serctl alias add ....
I also verified that this new alias is in the mysql database ser.aliases table
What does serctl alias show 2025551234@mycompany.com say?
Now I make a call from a land line to 2025551234 and I use ngrep on my sip proxy to monitor port 5060. I see that a 404 is always returned after the statement
How does the uri look? Is it 2025551234@mycompany.com? If not are you re-writing it from your config?
Andrei
I'm still struggling with getting aliases to work. I've included many details of my configuration. Can anyone see why lookup("aliases") doesn't work?
Regards, Paul
"serctl alias add 2025551234 sip:1000@mycompany.com" returns
200 Added to table ('2025551234','sip:1000@mycompany.com') to 'aliases'
"serctl alias show 2025551234@mycompany.com" returns
sip:2025551234@mycompany.com;q=1;expires=-7
"mysql> select username, domain, contact from aliases;" returns
+-------------+--------+------------------------+ | username | domain | contact | +-------------+--------+------------------------+ | 2025551234 | | sip:1000@mycompany.com | +-------------+--------+------------------------+ 1 row in set (0.00 sec)
For simplicity purposes I'm using this really simple ser.cfg. NOTE: MySQL is enabled in my ser.cfg.
route{
xlog("L_ERR", "LOG MSG 0:"); xlog("L_ERR", " method : %rm"); xlog("L_ERR", " source ip : %is"); xlog("L_ERR", " request uri : %ru"); xlog("L_ERR", " to uri : %tu"); xlog("L_ERR", " contact header: %ct"); xlog("L_ERR", " from uri : %fu");
# initial sanity checks here ...
if (!method=="REGISTER") record_route();
if (loose_route()) { route(1); break; };
xlog("L_ERR", "LOG MSG 1:"); xlog("L_ERR", " method : %rm"); xlog("L_ERR", " source ip : %is"); xlog("L_ERR", " request uri : %ru"); xlog("L_ERR", " to uri : %tu"); xlog("L_ERR", " contact header: %ct"); xlog("L_ERR", " from uri : %fu");
if (!uri==myself) { route(1); break; };
if (uri==myself) {
if (method=="REGISTER") {
if (!www_authorize("mycompany.com", "subscriber")) { www_challenge("mycompany.com", "0"); break; };
save("location"); break; };
xlog("L_ERR", "LOG MSG 2:"); xlog("L_ERR", " method : %rm"); xlog("L_ERR", " source ip : %is"); xlog("L_ERR", " request uri : %ru"); xlog("L_ERR", " to uri : %tu"); xlog("L_ERR", " contact header: %ct"); xlog("L_ERR", " from uri : %fu'");
lookup("aliases");
xlog("L_ERR", "LOG MSG 3:"); xlog("L_ERR", " method : %rm"); xlog("L_ERR", " source ip : %is"); xlog("L_ERR", " request uri : %ru"); xlog("L_ERR", " to uri : %tu"); xlog("L_ERR", " contact header: %ct"); xlog("L_ERR", " from uri : %fu");
if (!uri==myself) { append_hf("P-hint: outbound alias\n"); if (!t_relay()) sl_reply_error(); break; };
if (!lookup("location")) { sl_send_reply("404", "Not Found"); break; }; };
if (!t_relay()) sl_reply_error(); }
"ngrep -W byline 2025551234 port 5060" shows
INVITE sip:2025551234@mycompany.com;user=phone SIP/2.0. Via: SIP/2.0/UDP 12.9.8.30:55426;branch=z9hG4bKae0d85e2f16ba73c. From: "Paul" sip:1010@mycompany.com;user=phone;tag=80578d1984094720. To: sip:2025551234@mycompany.com;user=phone. Contact: sip:1010@12.9.8.30:55426;user=phone. Call-ID: f827df1838656746@172.16.1.34. CSeq: 8477 INVITE. User-Agent: Grandstream BT100 1.0.5.11. Max-Forwards: 70. Allow: INVITE,ACK,CANCEL,BYE,NOTIFY,REFER,OPTIONS,INFO,SUBSCRIBE. Content-Type: application/sdp. Content-Length: 395.
SIP/2.0 404 Not Found. Via: SIP/2.0/UDP 12.9.8.30:55426;branch=z9hG4bKae0d85e2f16ba73c. From: "Paul" sip:1010@mycompany.com;user=phone;tag=80578d1984094720. To: sip:2025551234@mycompany.com;user=phone;tag=bf952ed189d84485aa0b6f1.d8ae
and my /var/log/messages shows these entries from the xlog statments:
LOG MSG 0: method : INVITE source ip : 12.9.8.30 request uri : 2025551234@mycompany.com;user=phone to uri : sip:2025551234@mycompany.com;user=phone contact header: sip:1010@12.9.8.30:55426;user=phone from uri : sip:1010@mycompany.com;user=phone LOG MSG 1: method : INVITE source ip : 12.9.8.30 request uri : 2025551234@mycompany.com;user=phone to uri : sip:2025551234@mycompany.com;user=phone contact header: sip:1010@12.9.8.30:55426;user=phone from uri : sip:1010@mycompany.com;user=phone LOG MSG 2: method : INVITE source ip : 12.9.8.30 request uri : 2025551234@mycompany.com;user=phone to uri : sip:2025551234@mycompany.com;user=phone contact header: sip:1010@12.9.8.30:55426;user=phone from uri : sip:1010@mycompany.com;user=phone LOG MSG 3: method : INVITE source ip : 12.9.8.30 request uri : 2025551234@mycompany.com;user=phone to uri : sip:2025551234@mycompany.com;user=phone contact header: sip:1010@12.9.8.30:55426;user=phone from uri : sip:1010@mycompany.com;user=phone
--- Andrei Pelinescu-Onciul pelinescu-onciul@fokus.fraunhofer.de wrote:
On Sep 22, 2004 at 13:34, Java Rockx javarockx@yahoo.com wrote:
Hello all.
I'm using ser from the CVS head branch. When my ser.cfg calls
lookup("aliases")
nothing seems to be returned.
I have a real user named "1000" which works since I can originate and
recieve
calls.
I need to alias this because I need this user to receive calls from the
PSTN.
I have used serctl to create an alias with the following command:
serctl add 2025551234 sip:1000@mycompany.com
serctl alias add ....
I also verified that this new alias is in the mysql database ser.aliases
table What does serctl alias show 2025551234@mycompany.com say?
Now I make a call from a land line to 2025551234 and I use ngrep on my sip proxy to monitor port 5060. I see that a 404 is always returned after the statement
How does the uri look? Is it 2025551234@mycompany.com? If not are you re-writing it from your config?
Andrei
_______________________________ Do you Yahoo!? Declare Yourself - Register online to vote today! http://vote.yahoo.com
On Sep 23, 2004 at 07:22, Java Rockx javarockx@yahoo.com wrote:
I'm still struggling with getting aliases to work. I've included many details of my configuration. Can anyone see why lookup("aliases") doesn't work?
Regards, Paul
"serctl alias add 2025551234 sip:1000@mycompany.com" returns
200 Added to table ('2025551234','sip:1000@mycompany.com') to 'aliases'
"serctl alias show 2025551234@mycompany.com" returns
<sip:2025551234@mycompany.com>;q=1;expires=-7
Please send also the whole output for "serctl alias show" (without an uri). I'm interested in the Flags and State fields for 2025551234. Try also "serctl ping sip:2025551234@mycompany.com".
What ser version are you using? (how recent is it if it's from the HEAD branch). Are you using an up-to-date serctl? (you might have an older one sticking arround somewhere in the PATH).
Andrei
I'm using ser from CVS which I checked out last week. I doubt that I have an old copy of serctl since I've never used ser before last week.
Anyhow, "serctl alias show" returns the following. Is there some documentation that will explain to me the meaning of things in this output such as "Flags" and "state" as you mentioned before?
Regards, Paul
===Domain list=== ---Domain--- name : 'aliases' size : 512 table: 0xb543c950 d_ll { n : 1 first: 0xb543bda0 last : 0xb543bda0 }
...Record(0xb543bda0)... domain: 'aliases' aor : '2025551234' ~~~Contact(0xb543c3b0)~~~ domain : 'aliases' aor : '2025551234' Contact : 'sip:1000@mycompany.com' Expires : -5 q : 1 Call-ID : 'The-Answer-To-The-Ultimate-Question-Of-Life-Universe-And-Everything' CSeq : 42 replic : 0 User-Agent: 'SIP Express Router FIFO' received : '' State : CS_NEW Flags : 128 next : (nil) prev : (nil) ~~~/Contact~~~~ .../Record...
---/Domain--- ---Domain--- name : 'location' size : 512 table: 0xb5439a50 d_ll { n : 7 first: 0xb543ba58 last : 0xb543beb0 }
...Record(0xb543beb0)... domain: 'location' aor : '1000@mycompany.com' ~~~Contact(0xb543bf00)~~~ domain : 'location' aor : '1000@mycompany.com' Contact : 'sip:1000@68.12.33.190;user=phone' Expires : 1967 q : Call-ID : 'e812d3d48154550b@172.16.1.34' CSeq : 105 replic : 0 User-Agent: 'Grandstream BT100 1.0.5.11' received : '' State : CS_SYNC Flags : 0 next : (nil) prev : (nil) ~~~/Contact~~~~ .../Record...
---/Domain--- ===/Domain list===
--- Andrei Pelinescu-Onciul pelinescu-onciul@fokus.fraunhofer.de wrote:
On Sep 23, 2004 at 07:22, Java Rockx javarockx@yahoo.com wrote:
I'm still struggling with getting aliases to work. I've included many
details
of my configuration. Can anyone see why lookup("aliases") doesn't work?
Regards, Paul
"serctl alias add 2025551234 sip:1000@mycompany.com" returns
200 Added to table ('2025551234','sip:1000@mycompany.com') to 'aliases'
"serctl alias show 2025551234@mycompany.com" returns
<sip:2025551234@mycompany.com>;q=1;expires=-7
Please send also the whole output for "serctl alias show" (without an uri). I'm interested in the Flags and State fields for 2025551234. Try also "serctl ping sip:2025551234@mycompany.com".
What ser version are you using? (how recent is it if it's from the HEAD branch). Are you using an up-to-date serctl? (you might have an older one sticking arround somewhere in the PATH).
Andrei
__________________________________ Do you Yahoo!? New and Improved Yahoo! Mail - 100MB free storage! http://promotions.yahoo.com/new_mail
Your AOR for aliases does not contain the domain part whereas the AOR for location does. A dirty fix would be stop ser, login to mysql and update that record with domain part in the aliases table and restart ser.
+-------------+---------------------+------------------------+ | username | domain | contact | +-------------+---------------------+------------------------+ | 2025551234 |mycompany.com | sip:1000@mycompany.com | +-------------+--------+------------+------------------------+
Normally, ser will insert the domain part into aliases table. Not sure how you get a record without domain. It would be interested to see if this is a bug with the CVS head. Could you do the following and send in the output.
# export SIP_DOMAIN=mycompany.com # serctl alias add 1234567 someone@mycompany.com # serctl alias show
mysql> select username, domain, contact from aliases where username='1234567';
Zeus
-----Original Message----- From: serusers-bounces@lists.iptel.org [mailto:serusers-bounces@lists.iptel.org] On Behalf Of Java Rockx Sent: Saturday, 25 September 2004 7:53 AM To: ser users Subject: Re: [Serusers] HELP - lookup("aliases") not working
I'm using ser from CVS which I checked out last week. I doubt that I have an old copy of serctl since I've never used ser before last week.
Anyhow, "serctl alias show" returns the following. Is there some documentation that will explain to me the meaning of things in this output such as "Flags" and "state" as you mentioned before?
Regards, Paul
===Domain list=== ---Domain--- name : 'aliases' size : 512 table: 0xb543c950 d_ll { n : 1 first: 0xb543bda0 last : 0xb543bda0 }
...Record(0xb543bda0)... domain: 'aliases' aor : '2025551234'
domain : 'aliases' aor : '2025551234' Contact : 'sip:1000@mycompany.com' Expires : -5 q : 1 Call-ID : 'The-Answer-To-The-Ultimate-Question-Of-Life-Universe-And-Everything' CSeq : 42 replic : 0 User-Agent: 'SIP Express Router FIFO' received : '' State : CS_NEW Flags : 128 next : (nil) prev : (nil) ~~~/Contact~~~~ .../Record... ---/Domain--- ---Domain--- name : 'location' size : 512 table: 0xb5439a50 d_ll { n : 7 first: 0xb543ba58 last : 0xb543beb0 } ...Record(0xb543beb0)... domain: 'location' aor : '1000@mycompany.com' ~~~Contact(0xb543bf00)~~~ domain : 'location' aor : '1000@mycompany.com' Contact : 'sip:1000@68.12.33.190;user=phone' Expires : 1967 q : Call-ID : 'e812d3d48154550b@172.16.1.34' CSeq : 105 replic : 0 User-Agent: 'Grandstream BT100 1.0.5.11' received : '' State : CS_SYNC Flags : 0 next : (nil) prev : (nil) ~~~/Contact~~~~ .../Record... ---/Domain--- ===/Domain list=== --- Andrei Pelinescu-Onciul <pelinescu-onciul@fokus.fraunhofer.de> wrote: > On Sep 23, 2004 at 07:22, Java Rockx <javarockx@yahoo.com> wrote: > > I'm still struggling with getting aliases to work. I've included > > many > details > > of my configuration. Can anyone see why lookup("aliases") doesn't > > work? > > > > Regards, > > Paul > > > > "serctl alias add 2025551234 sip:1000@mycompany.com" returns > > > > 200 Added to table > > ('2025551234','sip:1000@mycompany.com') to 'aliases' > > > > "serctl alias show 2025551234@mycompany.com" returns > > > > <sip:2025551234@mycompany.com>;q=1;expires=-7 > > Please send also the whole output for "serctl alias show" (without an > uri). I'm interested in the Flags and State fields for 2025551234. Try > also "serctl ping sip:2025551234@mycompany.com". > > What ser version are you using? (how recent is it if it's from the > HEAD branch). Are you using an up-to-date serctl? (you might have an > older one sticking arround somewhere in the PATH). > > Andrei > __________________________________ Do you Yahoo!? New and Improved Yahoo! Mail - 100MB free storage! http://promotions.yahoo.com/new_mail _______________________________________________ Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
Zeus,
Thanks for the reply. I saw that the domain column in the aliases table was blank and understand that myself. I assumed it just wasn't used.
FYI, I obtained a fresh copy of the source code tonight using this:
cvs -z3 -d:pserver:anonymous@cvs.serweb.berlios.de:/cvsroot/serweb co -r HEAD sip_router
I compiled it and checked the version which is reported as follows:
version: ser 0.8.99-dev6 (i386/linux) flags: STATS: Off, USE_IPV6, USE_TCP, DISABLE_NAGLE, USE_MCAST, DNS_IP_HACK, SHM_MEM, SHM_MMAP, PKG_MALLOC, F_MALLOC, FAST_LOCK-ADAPTIVE_WAIT ADAPTIVE_WAIT_LOOPS=1024, MAX_RECV_BUFFER_SIZE 262144, MAX_LISTEN 16, MAX_URI_SIZE 1024, BUF_SIZE 65535 @(#) $Id: main.c,v 1.193 2004/09/19 20:22:51 andrei Exp $ main.c compiled on 21:44:37 Sep 24 2004 with gcc 3.2
Here is the information you asked for:
[root@sip01 root]# serctl alias add 123456 sip:someone@mycompany.com 200 Added to table ('123456','sip:someone@mycompany.com') to 'aliases'
[root@sip01 root]# serctl alias show Dumping all contacts may take long: are you sure you want to proceed? [Y|N] y ===Domain list=== ---Domain--- name : 'aliases' size : 512 table: 0xb543c5d8 d_ll { n : 3 first: 0xb543e5e0 last : 0xb543ffe0 }
.../Record... ...Record(0xb543ffe0)... domain: 'aliases' aor : '123456' ~~~Contact(0xb5440020)~~~ domain : 'aliases' aor : '123456' Contact : 'sip:someone@mycompany.com' Expires : -8 q : 1 Call-ID : 'The-Answer-To-The-Ultimate-Question-Of-Life-Universe-And-Everything' CSeq : 42 replic : 0 User-Agent: 'SIP Express Router FIFO' received : '' State : CS_SYNC Flags : 128 next : (nil) prev : (nil) ~~~/Contact~~~~ .../Record...
---/Domain--- ===/Domain list===
mysql> select username, domain, contact from aliases where username='123456'; +----------+--------+---------------------------+ | username | domain | contact | +----------+--------+---------------------------+ | 123456 | | sip:someone@mycompany.com | +----------+--------+---------------------------+ 1 row in set (0.01 sec)
Regards, Paul
--- Zeus Ng zeus.ng@isquare.com.au wrote:
Your AOR for aliases does not contain the domain part whereas the AOR for location does. A dirty fix would be stop ser, login to mysql and update that record with domain part in the aliases table and restart ser.
+-------------+---------------------+------------------------+ | username | domain | contact | +-------------+---------------------+------------------------+ | 2025551234 |mycompany.com | sip:1000@mycompany.com | +-------------+--------+------------+------------------------+
Normally, ser will insert the domain part into aliases table. Not sure how you get a record without domain. It would be interested to see if this is a bug with the CVS head. Could you do the following and send in the output.
# export SIP_DOMAIN=mycompany.com # serctl alias add 1234567 someone@mycompany.com # serctl alias show
mysql> select username, domain, contact from aliases where username='1234567';
Zeus
-----Original Message----- From: serusers-bounces@lists.iptel.org [mailto:serusers-bounces@lists.iptel.org] On Behalf Of Java Rockx Sent: Saturday, 25 September 2004 7:53 AM To: ser users Subject: Re: [Serusers] HELP - lookup("aliases") not working
I'm using ser from CVS which I checked out last week. I doubt that I have an old copy of serctl since I've never used ser before last week.
Anyhow, "serctl alias show" returns the following. Is there some documentation that will explain to me the meaning of things in this output such as "Flags" and "state" as you mentioned before?
Regards, Paul
===Domain list=== ---Domain--- name : 'aliases' size : 512 table: 0xb543c950 d_ll { n : 1 first: 0xb543bda0 last : 0xb543bda0 }
...Record(0xb543bda0)... domain: 'aliases' aor : '2025551234'
domain : 'aliases' aor : '2025551234' Contact : 'sip:1000@mycompany.com' Expires : -5 q : 1 Call-ID : 'The-Answer-To-The-Ultimate-Question-Of-Life-Universe-And-Everything' CSeq : 42 replic : 0 User-Agent: 'SIP Express Router FIFO' received : '' State : CS_NEW Flags : 128 next : (nil) prev : (nil) ~~~/Contact~~~~ .../Record... ---/Domain--- ---Domain--- name : 'location' size : 512 table: 0xb5439a50 d_ll { n : 7 first: 0xb543ba58 last : 0xb543beb0 } ...Record(0xb543beb0)... domain: 'location' aor : '1000@mycompany.com' ~~~Contact(0xb543bf00)~~~ domain : 'location' aor : '1000@mycompany.com' Contact : 'sip:1000@68.12.33.190;user=phone' Expires : 1967 q : Call-ID : 'e812d3d48154550b@172.16.1.34' CSeq : 105 replic : 0 User-Agent: 'Grandstream BT100 1.0.5.11' received : '' State : CS_SYNC Flags : 0 next : (nil) prev : (nil) ~~~/Contact~~~~ .../Record... ---/Domain--- ===/Domain list=== --- Andrei Pelinescu-Onciul <pelinescu-onciul@fokus.fraunhofer.de> wrote: > On Sep 23, 2004 at 07:22, Java Rockx <javarockx@yahoo.com> wrote: > > I'm still struggling with getting aliases to work. I've included > > many > details > > of my configuration. Can anyone see why lookup("aliases") doesn't > > work? > > > > Regards, > > Paul > > > > "serctl alias add 2025551234 sip:1000@mycompany.com" returns > > > > 200 Added to table > > ('2025551234','sip:1000@mycompany.com') to 'aliases' > > > > "serctl alias show 2025551234@mycompany.com" returns > > > > <sip:2025551234@mycompany.com>;q=1;expires=-7 > > Please send also the whole output for "serctl alias show" (without an > uri). I'm interested in the Flags and State fields for 2025551234. Try > also "serctl ping sip:2025551234@mycompany.com". > > What ser version are you using? (how recent is it if it's from the > HEAD branch). Are you using an up-to-date serctl? (you might have an > older one sticking arround somewhere in the PATH). > > Andrei > __________________________________ Do you Yahoo!? New and Improved Yahoo! Mail - 100MB free storage! http://promotions.yahoo.com/new_mail _______________________________________________ Serusers mailing list serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers
_______________________________ Do you Yahoo!? Declare Yourself - Register online to vote today! http://vote.yahoo.com
In your ser.cfg, set modparam("usrloc", "use_domain", 1) and try the test again.
Zeus
-----Original Message----- From: Java Rockx [mailto:javarockx@yahoo.com] Sent: Saturday, 25 September 2004 2:20 PM To: Zeus Ng Cc: 'ser users' Subject: RE: [Serusers] HELP - lookup("aliases") not working
Zeus,
Thanks for the reply. I saw that the domain column in the aliases table was blank and understand that myself. I assumed it just wasn't used.
FYI, I obtained a fresh copy of the source code tonight using this:
cvs -z3 -d:pserver:anonymous@cvs.serweb.berlios.de:/cvsroot/serweb co -r HEAD sip_router
I compiled it and checked the version which is reported as follows:
version: ser 0.8.99-dev6 (i386/linux) flags: STATS: Off, USE_IPV6, USE_TCP, DISABLE_NAGLE, USE_MCAST, DNS_IP_HACK, SHM_MEM, SHM_MMAP, PKG_MALLOC, F_MALLOC, FAST_LOCK-ADAPTIVE_WAIT ADAPTIVE_WAIT_LOOPS=1024, MAX_RECV_BUFFER_SIZE 262144, MAX_LISTEN 16, MAX_URI_SIZE 1024, BUF_SIZE 65535 @(#) $Id: main.c,v 1.193 2004/09/19 20:22:51 andrei Exp $ main.c compiled on 21:44:37 Sep 24 2004 with gcc 3.2
Here is the information you asked for:
[root@sip01 root]# serctl alias add 123456 sip:someone@mycompany.com 200 Added to table ('123456','sip:someone@mycompany.com') to 'aliases'
[root@sip01 root]# serctl alias show Dumping all contacts may take long: are you sure you want to proceed? [Y|N] y ===Domain list=== ---Domain--- name : 'aliases' size : 512 table: 0xb543c5d8 d_ll { n : 3 first: 0xb543e5e0 last : 0xb543ffe0 }
.../Record... ...Record(0xb543ffe0)... domain: 'aliases' aor : '123456'
domain : 'aliases' aor : '123456' Contact : 'sip:someone@mycompany.com' Expires : -8 q : 1 Call-ID : 'The-Answer-To-The-Ultimate-Question-Of-Life-Universe-And-Everything' CSeq : 42 replic : 0 User-Agent: 'SIP Express Router FIFO' received : '' State : CS_SYNC Flags : 128 next : (nil) prev : (nil) ~~~/Contact~~~~ .../Record... ---/Domain--- ===/Domain list=== mysql> select username, domain, contact from aliases where mysql> username='123456'; +----------+--------+---------------------------+ | username | domain | contact | +----------+--------+---------------------------+ | 123456 | | sip:someone@mycompany.com | +----------+--------+---------------------------+ 1 row in set (0.01 sec) Regards, Paul --- Zeus Ng <zeus.ng@isquare.com.au> wrote: > Your AOR for aliases does not contain the domain part whereas the AOR > for location does. A dirty fix would be stop ser, login to mysql and > update that record with domain part in the aliases table and restart > ser. > > +-------------+---------------------+------------------------+ > | username | domain | contact | > +-------------+---------------------+------------------------+ > | 2025551234 |mycompany.com | sip:1000@mycompany.com | > +-------------+--------+------------+------------------------+ > > > Normally, ser will insert the domain part into aliases table. Not sure > how you get a record without domain. It would be interested to see if > this is a bug with the CVS head. Could you do the following and send > in the output. > > # export SIP_DOMAIN=mycompany.com > # serctl alias add 1234567 someone@mycompany.com > # serctl alias show > > mysql> select username, domain, contact from aliases where > username='1234567'; > > > Zeus > > > -----Original Message----- > > From: serusers-bounces@lists.iptel.org > > [mailto:serusers-bounces@lists.iptel.org] On Behalf Of Java Rockx > > Sent: Saturday, 25 September 2004 7:53 AM > > To: ser users > > Subject: Re: [Serusers] HELP - lookup("aliases") not working > > > > > > I'm using ser from CVS which I checked out last week. I doubt > > that I have an old copy of serctl since I've never used ser > > before last week. > > > > Anyhow, "serctl alias show" returns the following. Is there > > some documentation that will explain to me the meaning of > > things in this output such as "Flags" and "state" as you > > mentioned before? > > > > Regards, > > Paul > > > > ===Domain list=== > > ---Domain--- > > name : 'aliases' > > size : 512 > > table: 0xb543c950 > > d_ll { > > n : 1 > > first: 0xb543bda0 > > last : 0xb543bda0 > > } > > > > ...Record(0xb543bda0)... > > domain: 'aliases' > > aor : '2025551234' > > ~~~Contact(0xb543c3b0)~~~ > > domain : 'aliases' > > aor : '2025551234' > > Contact : 'sip:1000@mycompany.com' > > Expires : -5 > > q : 1 > > Call-ID : > > 'The-Answer-To-The-Ultimate-Question-Of-Life-Universe-And-Everything' > > CSeq : 42 > > replic : 0 > > User-Agent: 'SIP Express Router FIFO' > > received : '' > > State : CS_NEW > > Flags : 128 > > next : (nil) > > prev : (nil) > > ~~~/Contact~~~~ > > .../Record... > > > > ---/Domain--- > > ---Domain--- > > name : 'location' > > size : 512 > > table: 0xb5439a50 > > d_ll { > > n : 7 > > first: 0xb543ba58 > > last : 0xb543beb0 > > } > > > > ...Record(0xb543beb0)... > > domain: 'location' > > aor : '1000@mycompany.com' > > ~~~Contact(0xb543bf00)~~~ > > domain : 'location' > > aor : '1000@mycompany.com' > > Contact : 'sip:1000@68.12.33.190;user=phone' > > Expires : 1967 > > q : > > Call-ID : 'e812d3d48154550b@172.16.1.34' > > CSeq : 105 > > replic : 0 > > User-Agent: 'Grandstream BT100 1.0.5.11' > > received : '' > > State : CS_SYNC > > Flags : 0 > > next : (nil) > > prev : (nil) > > ~~~/Contact~~~~ > > .../Record... > > > > ---/Domain--- > > ===/Domain list=== > > > > > > --- Andrei Pelinescu-Onciul > > <pelinescu-onciul@fokus.fraunhofer.de> wrote: > > > > > On Sep 23, 2004 at 07:22, Java Rockx <javarockx@yahoo.com> wrote: > > > > I'm still struggling with getting aliases to work. I've included > > > > many > > > details > > > > of my configuration. Can anyone see why lookup("aliases") > > > > doesn't > > > > work? > > > > > > > > Regards, > > > > Paul > > > > > > > > "serctl alias add 2025551234 sip:1000@mycompany.com" returns > > > > > > > > 200 Added to table > > > > ('2025551234','sip:1000@mycompany.com') to 'aliases' > > > > > > > > "serctl alias show 2025551234@mycompany.com" returns > > > > > > > > <sip:2025551234@mycompany.com>;q=1;expires=-7 > > > > > > Please send also the whole output for "serctl alias show" > > (without an > > > uri). I'm interested in the Flags and State fields for > > 2025551234. Try > > > also "serctl ping sip:2025551234@mycompany.com". > > > > > > What ser version are you using? (how recent is it if it's from the > > > HEAD branch). Are you using an up-to-date serctl? (you > > might have an > > > older one sticking arround somewhere in the PATH). > > > > > > Andrei > > > > > > > > > > > > > > > __________________________________ > > Do you Yahoo!? > > New and Improved Yahoo! Mail - 100MB free storage! > > http://promotions.yahoo.com/new_mail > > > > _______________________________________________ > > Serusers mailing list > > serusers@lists.iptel.org http://lists.iptel.org/mailman/listinfo/serusers > > > > _______________________________ Do you Yahoo!? Declare Yourself - Register online to vote today! http://vote.yahoo.com
Zeus,
You are an absolute genius! If you were here in Orlando, Florida I'd buy you a beer.
That fixed my problem! Talk about a detail I totally missed.
Thank you. Paul
--- Zeus Ng zeus.ng@isquare.com.au wrote:
In your ser.cfg, set modparam("usrloc", "use_domain", 1) and try the test again.
Zeus
-----Original Message----- From: Java Rockx [mailto:javarockx@yahoo.com] Sent: Saturday, 25 September 2004 2:20 PM To: Zeus Ng Cc: 'ser users' Subject: RE: [Serusers] HELP - lookup("aliases") not working
Zeus,
Thanks for the reply. I saw that the domain column in the aliases table was blank and understand that myself. I assumed it just wasn't used.
FYI, I obtained a fresh copy of the source code tonight using this:
cvs -z3 -d:pserver:anonymous@cvs.serweb.berlios.de:/cvsroot/serweb co -r HEAD sip_router
I compiled it and checked the version which is reported as follows:
version: ser 0.8.99-dev6 (i386/linux) flags: STATS: Off, USE_IPV6, USE_TCP, DISABLE_NAGLE, USE_MCAST, DNS_IP_HACK, SHM_MEM, SHM_MMAP, PKG_MALLOC, F_MALLOC, FAST_LOCK-ADAPTIVE_WAIT ADAPTIVE_WAIT_LOOPS=1024, MAX_RECV_BUFFER_SIZE 262144, MAX_LISTEN 16, MAX_URI_SIZE 1024, BUF_SIZE 65535 @(#) $Id: main.c,v 1.193 2004/09/19 20:22:51 andrei Exp $ main.c compiled on 21:44:37 Sep 24 2004 with gcc 3.2
Here is the information you asked for:
[root@sip01 root]# serctl alias add 123456 sip:someone@mycompany.com 200 Added to table ('123456','sip:someone@mycompany.com') to 'aliases'
[root@sip01 root]# serctl alias show Dumping all contacts may take long: are you sure you want to proceed? [Y|N] y ===Domain list=== ---Domain--- name : 'aliases' size : 512 table: 0xb543c5d8 d_ll { n : 3 first: 0xb543e5e0 last : 0xb543ffe0 }
.../Record... ...Record(0xb543ffe0)... domain: 'aliases' aor : '123456'
domain : 'aliases' aor : '123456' Contact : 'sip:someone@mycompany.com' Expires : -8 q : 1 Call-ID : 'The-Answer-To-The-Ultimate-Question-Of-Life-Universe-And-Everything' CSeq : 42 replic : 0 User-Agent: 'SIP Express Router FIFO' received : '' State : CS_SYNC Flags : 128 next : (nil) prev : (nil) ~~~/Contact~~~~ .../Record... ---/Domain--- ===/Domain list=== mysql> select username, domain, contact from aliases where mysql> username='123456'; +----------+--------+---------------------------+ | username | domain | contact | +----------+--------+---------------------------+ | 123456 | | sip:someone@mycompany.com | +----------+--------+---------------------------+ 1 row in set (0.01 sec) Regards, Paul --- Zeus Ng <zeus.ng@isquare.com.au> wrote: > Your AOR for aliases does not contain the domain part whereas the AOR > for location does. A dirty fix would be stop ser, login to mysql and > update that record with domain part in the aliases table and restart > ser. > > +-------------+---------------------+------------------------+ > | username | domain | contact | > +-------------+---------------------+------------------------+ > | 2025551234 |mycompany.com | sip:1000@mycompany.com | > +-------------+--------+------------+------------------------+ > > > Normally, ser will insert the domain part into aliases table. Not sure > how you get a record without domain. It would be interested to see if > this is a bug with the CVS head. Could you do the following and send > in the output. > > # export SIP_DOMAIN=mycompany.com > # serctl alias add 1234567 someone@mycompany.com > # serctl alias show > > mysql> select username, domain, contact from aliases where > username='1234567'; > > > Zeus > > > -----Original Message----- > > From: serusers-bounces@lists.iptel.org > > [mailto:serusers-bounces@lists.iptel.org] On Behalf Of Java Rockx > > Sent: Saturday, 25 September 2004 7:53 AM > > To: ser users > > Subject: Re: [Serusers] HELP - lookup("aliases") not working > > > > > > I'm using ser from CVS which I checked out last week. I doubt > > that I have an old copy of serctl since I've never used ser > > before last week. > > > > Anyhow, "serctl alias show" returns the following. Is there > > some documentation that will explain to me the meaning of > > things in this output such as "Flags" and "state" as you > > mentioned before? > > > > Regards, > > Paul > > > > ===Domain list=== > > ---Domain--- > > name : 'aliases' > > size : 512 > > table: 0xb543c950 > > d_ll { > > n : 1 > > first: 0xb543bda0 > > last : 0xb543bda0 > > } > > > > ...Record(0xb543bda0)... > > domain: 'aliases' > > aor : '2025551234' > > ~~~Contact(0xb543c3b0)~~~ > > domain : 'aliases' > > aor : '2025551234' > > Contact : 'sip:1000@mycompany.com' > > Expires : -5 > > q : 1 > > Call-ID : > > 'The-Answer-To-The-Ultimate-Question-Of-Life-Universe-And-Everything' > > CSeq : 42 > > replic : 0 > > User-Agent: 'SIP Express Router FIFO' > > received : '' > > State : CS_NEW > > Flags : 128 > > next : (nil) > > prev : (nil) > > ~~~/Contact~~~~ > > .../Record... > > > > ---/Domain--- > > ---Domain--- > > name : 'location' > > size : 512 > > table: 0xb5439a50 > > d_ll { > > n : 7 > > first: 0xb543ba58 > > last : 0xb543beb0
=== message truncated ===
_______________________________ Do you Yahoo!? Express yourself with Y! Messenger! Free. Download now. http://messenger.yahoo.com
Hello all.
I made slight progress on solving my alias problem. I decided to get a fresh copy of ser from CVS and try it again.
The small progess I made is that now "serctl alias show 5000" returns
sip:1002@mycompany.com;q=1;expires=-22107
whereas before it gate me a 404 and said the alias didn't exist. Now my problem is that "serctl ul show 1002@mycompany.com" doesn't work.
I got the "serctl alias show 5000" command to work by recompiling the latest source. I checked out the latest code from CVS using:
cvs -z3 -d:pserver:anonymous@cvs.serweb.berlios.de:/cvsroot/serweb co -r HEAD sip_router
I compiled it and checked the version which is reported with "ser -V" as follows:
version: ser 0.8.99-dev6 (i386/linux) flags: STATS: Off, USE_IPV6, USE_TCP, DISABLE_NAGLE, USE_MCAST, DNS_IP_HACK, SHM_MEM, SHM_MMAP, PKG_MALLOC, F_MALLOC, FAST_LOCK-ADAPTIVE_WAIT ADAPTIVE_WAIT_LOOPS=1024, MAX_RECV_BUFFER_SIZE 262144, MAX_LISTEN 16, MAX_URI_SIZE 1024, BUF_SIZE 65535 @(#) $Id: main.c,v 1.193 2004/09/19 20:22:51 andrei Exp $ main.c compiled on 21:44:37 Sep 24 2004 with gcc 3.2
I've got an entry in the subscribers table for user 1002@mycompany.com. I Also have an alias for 1002@mycompany in the aliases table called 5000
Now when I run "serctl alias show 5000" the following is returned
sip:1002@mycompany.com;q=1;expires=-21224
If I execute "serctl ul show 1002@mycompany.com" I get
404 Username 1002@mycompany.com in table location not found
The same is true for "serctl ul show 1002" or "serctl ul show 5000". I even tried "serctl ul show 1002@mycompany.com" but still got a 404.
When I call sip:1002@mycompany.com the call completes properly. But if I call sip:5000@mycompany.com I get a 404 error.
The output of "serctl ul show" follows:
I do have lookup("aliases") in my ser.cfg file. Any thoughts as to why my aliases still aren't working? Paul
Dumping all contacts may take long: are you sure you want to proceed? [Y|N] y ===Domain list=== ---Domain--- name : 'aliases' size : 512 table: 0xb543c5d8 d_ll { n : 2 first: 0xb543e5e0 last : 0xb543e700 }
...Record(0xb543e700)... domain: 'aliases' aor : '5000' ~~~Contact(0xb543e740)~~~ domain : 'aliases' aor : '5000' Contact : 'sip:1002@mycompany.com' Expires : -21641 q : 1 Call-ID : 'The-Answer-To-The-Ultimate-Question-Of-Life-Universe-And-Everything' CSeq : 42 replic : 0 User-Agent: 'SIP Express Router FIFO' received : '' State : CS_SYNC Flags : 128 next : (nil) prev : (nil) ~~~/Contact~~~~ .../Record...
---/Domain--- ---Domain--- name : 'location' size : 512 table: 0xb5439ed0 d_ll { n : 6 first: 0xb543bed8 last : 0xb543c458 }
domain: 'location' aor : '1002@mycompany.com' ~~~Contact(0xb543c158)~~~ domain : 'location' aor : '1002@mycompany.com' Contact : 'sip:1002@16.18.24.200:47619;user=phone' Expires : 1706 q : Call-ID : 'e9080ee83f469c27@16.18.24.200' CSeq : 103 replic : 0 User-Agent: 'Grandstream BT100 1.0.5.11' received : '' State : CS_SYNC Flags : 0 next : (nil) prev : (nil) ~~~/Contact~~~~ .../Record...
---/Domain--- ===/Domain list===
__________________________________ Do you Yahoo!? Yahoo! Mail - Helps protect you from nasty viruses. http://promotions.yahoo.com/new_mail