瀏覽代碼

etc/kamailio.cfg: set no connect flags for replies and natted messages

Daniel-Constantin Mierla 6 年之前
父節點
當前提交
3036a53fbb
共有 1 個文件被更改,包括 8 次插入0 次删除
  1. 8 0
      etc/kamailio.cfg

+ 8 - 0
etc/kamailio.cfg

@@ -554,6 +554,9 @@ route[RELAY] {
 
 # Per SIP request initial checks
 route[REQINIT] {
+	# no connect for sending replies
+	set_reply_no_connect();
+
 #!ifdef WITH_ANTIFLOOD
 	# flood detection from same IP and traffic ban for a while
 	# be sure you exclude checking trusted peers, such as pstn gateways
@@ -821,6 +824,11 @@ route[NATMANAGE] {
 				set_contact_alias();
 		}
 	}
+
+	if(isbflagset(FLB_NATB)) {
+		# message in a dialog involving NAT traversal - no connect
+		set_forward_no_connect();
+	}
 #!endif
 	return;
 }