Fair enough. :) I wasn't sure what chunks of information would be needed, or if the entire cfg is required. I'm pasting the sections that I edited and that I think are relevent.
Thank you!
From the kamailio.cfg log:
# *** To run in debug mode:
# - define WITH_DEBUG
#!define WITH_DEBUG
### LOG Levels: 3=DBG, 2=INFO, 1=NOTICE, 0=WARN, -1=ERR
#!ifdef WITH_DEBUG
debug=4
log_stderror=yes
#!else
debug=2
log_stderror=no
#!endif
memdbg=5
memlog=5
log_facility=LOG_LOCAL0
/* number of SIP routing processes */
children=8
/* add local domain aliases */
#alias="sip.mydomain.com"
/* uncomment and configure the following line if you want Kamailio to
* bind on a specific interface/port/proto (default bind on all available) */
# listen=udp:10.0.0.10:5060
/* port to listen to (default 5060 for udp, tcp, scrtp, or 5061 for tls)*/
# port=5060
listen=129.82.13.26:5060
listen=129.82.13.26:5065
listen=129.82.13.26:5066
listen=129.82.13.26:5067
.:: Routing Infomration ::.
route[WITHINDLG] {
if (!has_totag()) return;
# sequential request withing a dialog should
# take the path determined by record-routing
if (loose_route()) {
route(DLGURI);
if (is_method("BYE")) {
setflag(FLT_ACC); # do accounting ...
setflag(FLT_ACCFAILED); # ... even if the transaction fails
} else if ( is_method("ACK") ) {
# ACK is forwarded statelessy
route(NATMANAGE);
} else if ( is_method("NOTIFY") ) {
# Add Record-Route for in-dialog NOTIFY as per RFC 6665.
record_route();
# Copied code - maybe it'll work?
sl_send_reply("200", "OK");
rewritehost("otc.colostate.edu");
# t_relay("tcp:129.82.13.X:5066");
t_relay_to_tcp("129.82.13.X","5066");
exit;
}
route(RELAY);
exit;
}
... other stuff ...
}
Robert Remsik
ACNS
Desk Phone: 970 491 7120
Robert.Remsik@colostate.edu