Sfg-test-relay.cfg: Difference between revisions

From OnnoCenterWiki
Jump to navigationJump to search
Onnowpurbo (talk | contribs)
New page: # # $Id: openser.cfg 1676 2007-02-21 13:16:34Z bogdan_iancu $ # # simple quick-start config script # Please refer to the Core CookBook at http://www.openser.org/dokuwiki/doku.php # f...
 
Onnowpurbo (talk | contribs)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
#
#
  # $Id: openser.cfg 1676 2007-02-21 13:16:34Z bogdan_iancu $
  # $Id: openser.cfg 1676 2007-02-21 13:16:34Z bogdan_iancu $
  #
  #
Line 6: Line 6:
  # for a explanation of possible statements, functions and parameters.
  # for a explanation of possible statements, functions and parameters.
  #  
  #  
 
  # ----------- global configuration parameters ------------------------
  # ----------- global configuration parameters ------------------------
 
  debug=3            # debug level (cmd line: -dddddddddd)
  debug=3            # debug level (cmd line: -dddddddddd)
  fork=yes
  fork=yes
Line 14: Line 14:
  children=32
  children=32
  log_facility=LOG_LOCAL0
  log_facility=LOG_LOCAL0
 
  disable_tcp=yes
  disable_tcp=yes
  disable_dns_blacklist=yes
  disable_dns_blacklist=yes
  disable_dns_failover=yes
  disable_dns_failover=yes
 
  # Uncomment these lines to enter debugging mode  
  # Uncomment these lines to enter debugging mode  
  #fork=no
  #fork=no
  #log_stderror=yes
  #log_stderror=yes
  #
  #
 
  listen=udp:192.168.2.102:5060
  listen=udp:192.168.2.102:5060
 
  # ------------------ module loading ----------------------------------
  # ------------------ module loading ----------------------------------
 
  loadmodule "modules/tm/tm.so"
  loadmodule "modules/tm/tm.so"
 
  modparam("tm", "wt_timer", 2)
  modparam("tm", "wt_timer", 2)
 
  # -------------------------  request routing logic -------------------
  # -------------------------  request routing logic -------------------
 
  # main routing logic
  # main routing logic
 
  route{
  route{
  t_relay();
  t_relay();
  }
  }
==Pranala Menarik==
* [[VoIP: Transaction Oriented Test]]
* [[Test Performance OpenSER mengunakan SIPp]]
* [[OpenSER Softswitch]]
* [[OpenSIPS Softswitch]]
* [[VoIP]]

Latest revision as of 02:24, 14 February 2010

# $Id: openser.cfg 1676 2007-02-21 13:16:34Z bogdan_iancu $
#
# simple quick-start config script
# Please refer to the Core CookBook at http://www.openser.org/dokuwiki/doku.php
# for a explanation of possible statements, functions and parameters.
# 

# ----------- global configuration parameters ------------------------

debug=3            # debug level (cmd line: -dddddddddd)
fork=yes
log_stderror=no    # (cmd line: -E)
children=32
log_facility=LOG_LOCAL0

disable_tcp=yes
disable_dns_blacklist=yes
disable_dns_failover=yes

# Uncomment these lines to enter debugging mode 
#fork=no
#log_stderror=yes
#

listen=udp:192.168.2.102:5060

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

loadmodule "modules/tm/tm.so"

modparam("tm", "wt_timer", 2)

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

# main routing logic

route{
	t_relay();
}


Pranala Menarik