Here's the tail /var/log/messages and my ser.cfg. Can you see anything
wrong? My computer have only one NIC and is assigned static IP
<a href="http://192.168.1.17">192.168.1.17</a>.<br>
<br>
May 10 11:31:41 localhost ser: WARNING: fix_socket_list: could not rev. resolve <a href="http://192.168.1.17">192.168.1.17</a><br>
May 10 11:31:41 localhost ser: WARNING: fix_socket_list: could not rev. resolve <a href="http://192.168.1.17">192.168.1.17</a><br>
May 10 11:31:41 localhost /usr/local/sbin/ser[3085]: Maxfwd module- initializing<br>
May 10 11:32:19 localhost ser: WARNING: fix_socket_list: could not rev. resolve <a href="http://192.168.1.17">192.168.1.17</a><br>
May 10 11:32:19 localhost ser: WARNING: fix_socket_list: could not rev. resolve <a href="http://192.168.1.17">192.168.1.17</a><br>
May 10 11:32:19 localhost ser[3096]: Maxfwd module- initializing<br>
<br>/usr/local/etc/ser/ser.cfg<br>
<br>
#<br>
# $Id: ser.cfg,v <a href="http://1.25.2.1">1.25.2.1</a> 2005/02/18 14:30:44 andrei Exp $<br>
#<br>
# simple quick-start config script<br>
#<br>
<br>
# ----------- global configuration parameters ------------------------<br>
<br>
#debug=3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # debug level (cmd line: -dddddddddd)<br>
#fork=yes<br>
#log_stderror=no&nbsp;&nbsp;&nbsp; # (cmd line: -E)<br>
<br>
/* Uncomment these lines to enter debugging mode <br>
fork=no<br>
log_stderror=yes<br>
*/<br>
<br>
check_via=no&nbsp;&nbsp;&nbsp; # (cmd. line: -v)<br>
dns=no&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # (cmd. line: -r)<br>
rev_dns=no&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; # (cmd. line: -R)<br>
#port=5060<br>
#children=4<br>
fifo=&quot;/tmp/ser_fifo&quot;<br>
<br>
# ------------------ module loading ----------------------------------<br>
<br>
# Uncomment this if you want to use SQL database<br>
#loadmodule &quot;/usr/local/lib/ser/modules/mysql.so&quot;<br>
<br>
loadmodule &quot;/usr/local/lib/ser/modules/sl.so&quot;<br>
loadmodule &quot;/usr/local/lib/ser/modules/tm.so&quot;<br>
loadmodule &quot;/usr/local/lib/ser/modules/rr.so&quot;<br>
loadmodule &quot;/usr/local/lib/ser/modules/maxfwd.so&quot;<br>
loadmodule &quot;/usr/local/lib/ser/modules/usrloc.so&quot;<br>
loadmodule &quot;/usr/local/lib/ser/modules/registrar.so&quot;<br>
loadmodule &quot;/usr/local/lib/ser/modules/textops.so&quot;<br>
<br>
# Uncomment this if you want digest authentication<br>
# mysql.so must be loaded !<br>
#loadmodule &quot;/usr/local/lib/ser/modules/auth.so&quot;<br>
#loadmodule &quot;/usr/local/lib/ser/modules/auth_db.so&quot;<br>
<br>
# ----------------- setting module-specific parameters ---------------<br>
<br>
# -- usrloc params --<br>
<br>
modparam(&quot;usrloc&quot;, &quot;db_mode&quot;,&nbsp;&nbsp; 0)<br>
<br>
# Uncomment this if you want to use SQL database <br>
# for persistent storage and comment the previous line<br>
#modparam(&quot;usrloc&quot;, &quot;db_mode&quot;, 2)<br>
<br>
# -- auth params --<br>
# Uncomment if you are using auth module<br>
#<br>
#modparam(&quot;auth_db&quot;, &quot;calculate_ha1&quot;, yes)<br>
#<br>
# If you set &quot;calculate_ha1&quot; parameter to yes (which true in this config), <br>
# uncomment also the following parameter)<br>
#<br>
#modparam(&quot;auth_db&quot;, &quot;password_column&quot;, &quot;password&quot;)<br>
<br>
# -- rr params --<br>
# add value to ;lr param to make some broken UAs happy<br>
modparam(&quot;rr&quot;, &quot;enable_full_lr&quot;, 1)<br>
<br>
# -------------------------&nbsp; request routing logic -------------------<br>
<br>
# main routing logic<br>
<br>
route{<br>
<br>
&nbsp;&nbsp;&nbsp; # initial sanity checks -- messages with<br>
&nbsp;&nbsp;&nbsp; # max_forwards==0, or excessively long requests<br>
&nbsp;&nbsp;&nbsp; if (!mf_process_maxfwd_header(&quot;10&quot;)) {<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; sl_send_reply(&quot;483&quot;,&quot;Too Many Hops&quot;);<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; break;<br>
&nbsp;&nbsp;&nbsp; };<br>
&nbsp;&nbsp;&nbsp; if (msg:len &gt;=&nbsp; 2048 ) {<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; sl_send_reply(&quot;513&quot;, &quot;Message too big&quot;);<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; break;<br>
&nbsp;&nbsp;&nbsp; };<br>
&nbsp;&nbsp;&nbsp; <br>
<br>
&nbsp;&nbsp;&nbsp; # we record-route all messages -- to make sure that<br>
&nbsp;&nbsp;&nbsp; # subsequent messages will go through our proxy; that's<br>
&nbsp;&nbsp;&nbsp; # particularly good if upstream and downstream entities<br>
&nbsp;&nbsp;&nbsp; # use different transport protocol<br>
&nbsp;&nbsp;&nbsp; if (!method==&quot;REGISTER&quot;) record_route();&nbsp;&nbsp;&nbsp; <br>
<br>
&nbsp;&nbsp;&nbsp; # subsequent messages withing a dialog should take the<br>
&nbsp;&nbsp;&nbsp; # path determined by record-routing<br>
&nbsp;&nbsp;&nbsp; if (loose_route()) {<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; # mark routing logic in request<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; append_hf(&quot;P-hint: rr-enforced\r\n&quot;); <br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; route(1);<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; break;<br>
&nbsp;&nbsp;&nbsp; };<br>
<br>
&nbsp;&nbsp;&nbsp; if (!uri==myself) {<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; # mark routing logic in request<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; append_hf(&quot;P-hint: outbound\r\n&quot;); <br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; route(1);<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; break;<br>
&nbsp;&nbsp;&nbsp; };<br>
<br>
&nbsp;&nbsp;&nbsp; # if the request is for other domain use UsrLoc<br>
&nbsp;&nbsp;&nbsp; # (in case, it does not work, use the following command<br>
&nbsp;&nbsp;&nbsp; # with proper names and addresses in it)<br>
&nbsp;&nbsp;&nbsp; if (uri==myself) {<br>
<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if (method==&quot;REGISTER&quot;) {<br>
<br>
# Uncomment this if you want to use digest authentication<br>
#&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if (!www_authorize(&quot;<a href="http://iptel.org">iptel.org</a>&quot;, &quot;subscriber&quot;)) {<br>
#&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; www_challenge(&quot;<a href="http://iptel.org">iptel.org</a>&quot;, &quot;0&quot;);<br>
#&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; break;<br>
#&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; };<br>
<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; save(&quot;location&quot;);<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; break;<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; };<br>
<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; lookup(&quot;aliases&quot;);<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if (!uri==myself) {<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; append_hf(&quot;P-hint: outbound alias\r\n&quot;); <br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; route(1);<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; break;<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; };<br>
<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; # native SIP destinations are handled using our USRLOC DB<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if (!lookup(&quot;location&quot;)) {<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; sl_send_reply(&quot;404&quot;, &quot;Not Found&quot;);<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; break;<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; };<br>
&nbsp;&nbsp;&nbsp; };<br>
&nbsp;&nbsp;&nbsp; append_hf(&quot;P-hint: usrloc applied\r\n&quot;); <br>
&nbsp;&nbsp;&nbsp; route(1);<br>
}<br>
<br>
route[1] <br>
{<br>
&nbsp;&nbsp;&nbsp; # send it out now; use stateful forwarding as it works reliably<br>
&nbsp;&nbsp;&nbsp; # even for UDP2TCP<br>
&nbsp;&nbsp;&nbsp; if (!t_relay()) {<br>
&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; sl_reply_error();<br>
&nbsp;&nbsp;&nbsp; };<br>
}<br>
<br>
<br>
<br><div><span class="gmail_quote">On 5/9/06, <b class="gmail_sendername">sip</b> &lt;<a href="mailto:sip@arcdiv.com">sip@arcdiv.com</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div style="direction: ltr;">






<font size="2">This is usually an indication that there was an error in
the ser.cfg file.&nbsp; If you look in the system messages log
(/var/log/messages), it should give you more specific information about
which error occurred. <br>
<br>N.
<br><b>
<br>
<br>On Tue, 9 May 2006 14:00:49 +0700, Linh Pham wrote</b>
</font></div><font size="2"></font><div style="direction: ltr;"><span class="e" id="q_10b18d87686d69f4_1"><font size="2"><br>&gt; Hi, I compile SER 0.9.6 from source on a computer running Fedora Core 4.
<br>&gt; 
I suppose make all, make install all go well as I can't see any warning or error.
<br>&gt; 
When I start ser, it seems normal but I can't find the pid with ps.
<br clear="all">
<br>&gt; 
[root@localhost ~]# serctl start
<br>&gt; 
<br>&gt; 
Starting SER : started pid(18726)
<br>&gt; 
[root@localhost ~]# ser
<br>&gt; 
Listening on
<br>&gt; 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; udp: <a href="http://127.0.0.1" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">127.0.0.1</a> [<a href="http://127.0.0.1" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
127.0.0.1</a>]:5060
<br>&gt; 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; udp: <a href="http://192.168.1.4" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">192.168.1.4</a> [<a href="http://192.168.1.4" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
192.168.1.4</a>]:5060
<br>&gt; 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; udp: <a href="http://192.168.1.17" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">192.168.1.17</a> [<a href="http://192.168.1.17" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
192.168.1.17</a>]:5060
<br>&gt; 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; tcp: <a href="http://127.0.0.1" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">127.0.0.1</a> [<a href="http://127.0.0.1" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
127.0.0.1</a>]:5060
<br>&gt; 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; tcp: <a href="http://192.168.1.4" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">192.168.1.4</a> [<a href="http://192.168.1.4" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
192.168.1.4</a>]:5060
<br>&gt; 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; tcp: <a href="http://192.168.1.17" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">192.168.1.17</a> [<a href="http://192.168.1.17" target="_blank" onclick="return top.js.OpenExtLink(window,event,this)">
192.168.1.17</a>]:5060
<br>&gt; 
Aliases:
<br>&gt; 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; tcp: localhost:5060
<br>&gt; 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; tcp: localhost.localdomain:5060
<br>&gt; 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; udp: localhost:5060
<br>&gt; 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; udp: localhost.localdomain:5060
<br>&gt; 
<br>&gt; 
[root@localhost ~]# serctl stop
<br>&gt; 
Stopping SER : /usr/local/sbin/serctl: line 813: kill: (18726) - No such processstopped
<br>&gt; 
[root@localhost ~]#
<br>&gt; 
<br>&gt; 
How can I fix this so ser run normally?
<br>&gt; 
Thank you.
<br>&gt; -- 
<br>&gt; Best regards,
<br>&gt; 
<br>&gt; Linh Pham
<br>
<br>
<br>
</font></span></div><div style="direction: ltr;">




</div></blockquote></div><br><br clear="all"><br>-- <br>Best regards,<br><br>Linh Pham<br><br>Research &amp; Development Center<br>POSTEF<br>61 Tran Phu, Hanoi, Vietnam