From 8d55c6eba94ab7c5ac76c116729b1efa007a9a50 Mon Sep 17 00:00:00 2001 From: Kamailio Dev Date: Mon, 13 Jan 2020 21:16:19 +0100 Subject: [PATCH] modules: readme files regenerated - ims_ipsec_pcscf ... [skip ci] --- src/modules/ims_ipsec_pcscf/README | 55 ++++++++++++++++++++---------- 1 file changed, 37 insertions(+), 18 deletions(-) diff --git a/src/modules/ims_ipsec_pcscf/README b/src/modules/ims_ipsec_pcscf/README index fb95bae68b7..1cf499fb4b8 100644 --- a/src/modules/ims_ipsec_pcscf/README +++ b/src/modules/ims_ipsec_pcscf/README @@ -48,8 +48,9 @@ Tsvetomir Dimitrov 3.3. ipsec_client_port (int) 3.4. ipsec_server_port (int) 3.5. ipsec_max_connections (int) - 3.6. ipsec_spi_id_start (int) - 3.7. ipsec_spi_id_range (int) + 3.6. ipsec_reuse_server_port (int) + 3.7. ipsec_spi_id_start (int) + 3.8. ipsec_spi_id_range (int) 4. Functions @@ -64,11 +65,12 @@ Tsvetomir Dimitrov 1.3. ipsec_client_port parameter usage 1.4. ipsec_server_port parameter usage 1.5. ipsec_max_connections parameter usage - 1.6. ipsec_spi_id_start parameter usage - 1.7. ipsec_spi_id_range parameter usage - 1.8. ipsec_create - 1.9. ipsec_forward - 1.10. ipsec_destroy + 1.6. ipsec_reuse_server_port parameter usage + 1.7. ipsec_spi_id_start parameter usage + 1.8. ipsec_spi_id_range parameter usage + 1.9. ipsec_create + 1.10. ipsec_forward + 1.11. ipsec_destroy Chapter 1. Admin Guide @@ -87,8 +89,9 @@ Chapter 1. Admin Guide 3.3. ipsec_client_port (int) 3.4. ipsec_server_port (int) 3.5. ipsec_max_connections (int) - 3.6. ipsec_spi_id_start (int) - 3.7. ipsec_spi_id_range (int) + 3.6. ipsec_reuse_server_port (int) + 3.7. ipsec_spi_id_start (int) + 3.8. ipsec_spi_id_range (int) 4. Functions @@ -124,8 +127,9 @@ Chapter 1. Admin Guide 3.3. ipsec_client_port (int) 3.4. ipsec_server_port (int) 3.5. ipsec_max_connections (int) - 3.6. ipsec_spi_id_start (int) - 3.7. ipsec_spi_id_range (int) + 3.6. ipsec_reuse_server_port (int) + 3.7. ipsec_spi_id_start (int) + 3.8. ipsec_spi_id_range (int) 3.1. ipsec_listen_addr (string) @@ -192,7 +196,22 @@ modparam("ims_ipsec_pcscf", "ipsec_server_port", 5063) modparam("ims_ipsec_pcscf", "ipsec_max_connections", 10) ... -3.6. ipsec_spi_id_start (int) +3.6. ipsec_reuse_server_port (int) + + Reuse (1) or not (0) the P-CSCF Server port for Re-registration for one + UA. When set to 0 - During Re-registration P-CSCF will distribute new + P-CSCF client and P-CSCF server ports. When set to 1 - During + Re-registration P-CSCF will reuse the old P-CSCF server port and will + distribute a new P-CSCF client port. + + Default value is 1. + + Example 1.6. ipsec_reuse_server_port parameter usage +... +modparam("ims_ipsec_pcscf", "ipsec_reuse_server_port", 1) +... + +3.7. ipsec_spi_id_start (int) Each IPSec tunnel has a unique system-wide identifier. This and the following option allows to tune the SPIs used by Kamailio in order to @@ -201,12 +220,12 @@ modparam("ims_ipsec_pcscf", "ipsec_max_connections", 10) Default value is 100. - Example 1.6. ipsec_spi_id_start parameter usage + Example 1.7. ipsec_spi_id_start parameter usage ... modparam("ims_ipsec_pcscf", "ipsec_spi_id_start", 100) ... -3.7. ipsec_spi_id_range (int) +3.8. ipsec_spi_id_range (int) How many SPIs to be allocated for the process. E.g. if ipsec_spi_id_start = 100 and ipsec_spi_id_range = 1000, SPIs between @@ -214,7 +233,7 @@ modparam("ims_ipsec_pcscf", "ipsec_spi_id_start", 100) Default value is 1000. - Example 1.7. ipsec_spi_id_range parameter usage + Example 1.8. ipsec_spi_id_range parameter usage ... modparam("ims_ipsec_pcscf", "ipsec_spi_id_range", 1000) ... @@ -236,7 +255,7 @@ modparam("ims_ipsec_pcscf", "ipsec_spi_id_range", 1000) * domain - Logical domain within the registrar. If a database is used then this must be name of the table which stores the contacts. - Example 1.8. ipsec_create + Example 1.9. ipsec_create ... ipsec_create("location"); ... @@ -253,7 +272,7 @@ ipsec_create("location"); force socket for request messages. Useful for ipsec and TCP. This is an optional parameter, default value - 0. - Example 1.9. ipsec_forward + Example 1.10. ipsec_forward ... ipsec_forward("location"); # or @@ -268,7 +287,7 @@ ipsec_forward("location", "1"); * domain - Logical domain within the registrar. If a database is used then this must be name of the table which stores the contacts. - Example 1.10. ipsec_destroy + Example 1.11. ipsec_destroy ... ipsec_destroy("location"); ...