Hello,
I've just started to use SER. I need some help from you. I have following questions: 1. Does SER support TLS? 2. How to turn on SIP log so that I can see SIP message flows? 3. When SER received Register request, I saw error from SER: "Received SIP_msg. No mem for the SIP_msg". Can some one please tell me what the problem is and how to resolve the problem?
Thanks and regards, Mary
On Wed, 26 Jan 2005 13:14:49 -0800, Mary Tang Mary_Tang@net.com wrote:
- Does SER support TLS?
For the SIP Signalling? I don't think so...
- How to turn on SIP log so that I can see SIP message flows?
I found two ways useful: 1. watch live traffic: # ngrep port 5060 2. call an external script in your routing logic that dumps the environment into a file: ... in ser.cfg, in route{ } add a line exec_msg("/usr/local/bin/dump_sip_env.sh"); ... create the script and dump everything into a logfile: #!/bin/sh
LOGFILE=/tmp/dump_sip_env.log
echo "-----------------------------------------------------------------------------------"
$LOGFILE
date >> $LOGFILE env >> $LOGFILE
3. Familiarise yourself with the xlog-module, which can provide much more detailed syslog information.
Cheers, Hank