login | register
Wed 09 of Jul, 2008 [05:08 UTC]

voip-info.org

History

SER example logging

Created by: oej,Last modification on Fri 19 of Sep, 2003 [19:53 UTC]

SER logging example


 # $Id: logging.cfg,v 1.1 2003/02/27 20:29:25 jiri Exp $
 #
 # logging example
 #

 # ------------------ module loading ----------------------------------

 fork=no
 listen=192.168.2.16
 log_stderror=yes
 debug=3


 # -------------------------  request routing logic -------------------

 # main routing logic

 route{
       # for testing purposes, simply okay all REGISTERs
       if (method=="REGISTER") {
               log(1, "REGISTER received\n");
       } else {
               log(1, "non-REGISTER received\n");
       };
       if (uri=~"sip:.*[@:]iptel.org") {
               log(1, "request for iptel.org received\n");
       } else {
               log(1, "request for other domain received\n");
       };
 }

See also


Back to SER tips and tricks

Comments