| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- #
- #
- # iptel.org real world configuration
- #
- # ----------- global configuration parameters ------------------------
- debug=0
- fork=1
- log_stderror=yes # (cmd line: -E)
- check_via=no # (cmd. line: -v)
- dns=no # (cmd. line: -r)
- reply_to_via=0
- fifo="/tmp/ser_fifo"
- # advertise IP address in Via (as opposed to advertising DNS name
- # which is annoying for downstream servers and some phones can
- # not handle DNS at all)
- listen=195.37.77.100
- # ------------------ module loading ----------------------------------
- loadmodule "../sip_router/modules/sl/sl.so"
- loadmodule "../sip_router/modules/print/print.so"
- #loadmodule "../sip_router/modules/tm/tm_mod.so"
- loadmodule "../sip_router/modules/usrloc/usrloc.so"
- # ----------------- setting module-specific parameters ---------------
- # -- usrloc params --
- modparam("usrloc", "use_database", 0)
- modparam("usrloc", "flush_interval", 3600)
- # -- tm params --
- modparam("tm", "fr_timer", 5 )
- modparam("tm", "fr_inv_timer", 5 )
- modparam("tm", "wt_timer", 5 )
- # ------------------------- request routing logic -------------------
- # main routing logic
- route{
- append_branch("sip:[email protected]:5088");
- append_branch("sip:[email protected]:5088");
- t_on_negative("1");
- t_relay_to("bat.iptel.org","5088");
- }
- reply_route[1] {
- append_branch("sip:[email protected]:5088");
- }
|