[sr-dev] git:master: Updated example configurations for IMS:

Carsten Bock carsten at ng-voice.com
Thu Apr 24 12:07:03 CEST 2014


Module: sip-router
Branch: master
Commit: 94d5ace90a10bbbb08576f891c9bb90d583e55d4
URL:    http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=94d5ace90a10bbbb08576f891c9bb90d583e55d4

Author: Carsten Bock <carsten at ng-voice.com>
Committer: Carsten Bock <carsten at ng-voice.com>
Date:   Thu Apr 24 12:04:41 2014 +0200

Updated example configurations for IMS:
- use NAPTR query (comment from Franz Edler & Andrea Meroni on sr-users)
- Rx (P-CSCF) is now asynchronous

---

 examples/icscf/kamailio.cfg |    2 ++
 examples/pcscf/kamailio.cfg |   24 ++++++++++++++++++++----
 examples/scscf/kamailio.cfg |    4 +++-
 3 files changed, 25 insertions(+), 5 deletions(-)

diff --git a/examples/icscf/kamailio.cfg b/examples/icscf/kamailio.cfg
index 7747dd7..33f2c2e 100644
--- a/examples/icscf/kamailio.cfg
+++ b/examples/icscf/kamailio.cfg
@@ -59,6 +59,8 @@ auto_aliases=no
 dns_srv_lb=yes
 # Always: Also try IPv6:
 dns_try_ipv6=yes
+# Query NAPTR-Records as well:
+dns_try_naptr=yes
 
 #!ifdef WITH_XMLRPC
 #!ifndef WITH_TCP
diff --git a/examples/pcscf/kamailio.cfg b/examples/pcscf/kamailio.cfg
index 6185310..8133ece 100644
--- a/examples/pcscf/kamailio.cfg
+++ b/examples/pcscf/kamailio.cfg
@@ -59,6 +59,8 @@ shm_force_alloc=yes
 dns_srv_lb=yes
 # Always: Also try IPv6:
 dns_try_ipv6=yes
+# Query NAPTR-Records as well:
+dns_try_naptr=yes
 
 /* uncomment and configure the following line if you want Kamailio to 
    bind on a specific interface/port/proto (default bind on all available) */
@@ -762,7 +764,11 @@ route[RTPPROXY_TERM] {
 route[REGISTER] {
 #!ifdef WITH_RX	
 	xlog("L_DBG","Subscribing to signalling bearer status\n");
-	Rx_AAR_Register("location");
+	if (Rx_AAR_Register("REG_AAR_REPLY, "location") == 0)
+		exit;
+}
+
+route[REG_AAR_REPLY] {
 	switch ($avp(s:aar_return_code)) {
 		case 1:
 			xlog("L_DBG", "Diameter: AAR success on subscription to signalling\n");
@@ -883,7 +889,12 @@ route[Orig_Initial]
 
 #!ifdef WITH_RX
 	xlog("L_DBG","Diameter: Orig authorizing media via Rx\n");	
-	Rx_AAR("location");
+	if(Rx_AAR("ORIG_SESSION_AAR_REPLY","orig")==0){
+		exit;
+	}
+}
+
+route[ORIG_SESSION_AAR_REPLY] {
 	if ($avp(s:aar_return_code) != 1) {
 		xlog("L_ERR", "Diameter: AAR failed\n");
 		send_reply("403", "QoS not authorized");
@@ -1075,8 +1086,13 @@ route[Term_Initial]
 	t_on_failure("Term_Initial_failure");
 
 #!ifdef WITH_RX
-	xlog("L_DBG","Diameter: Orig authorizing media via Rx\n");	
-	Rx_AAR("location");
+	xlog("L_DBG","Diameter: Term authorizing media via Rx\n");	
+	if(Rx_AAR("TERM_SESSION_AAR_REPLY","orig")==0){
+		exit;
+	}
+}
+
+route[TERM_SESSION_AAR_REPLY] {
 	if ($avp(s:aar_return_code) != 1) {
 		xlog("L_ERR", "Diameter: AAR failed\n");
 		send_reply("403", "QoS not authorized");
diff --git a/examples/scscf/kamailio.cfg b/examples/scscf/kamailio.cfg
index aea60b2..6c04259 100644
--- a/examples/scscf/kamailio.cfg
+++ b/examples/scscf/kamailio.cfg
@@ -70,8 +70,10 @@ rev_dns=no      # (cmd. line: -R)
 dns_srv_lb=yes
 # Always: Also try IPv6:
 dns_try_ipv6=yes
-# Try onle IPv6:
+# Try only IPv6:
 dns_cache_flags=6
+# Query NAPTR-Records as well:
+dns_try_naptr=yes
 
 #!ifdef WITH_XMLRPC
 #!ifndef WITH_TCP




More information about the sr-dev mailing list