From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonatan Schlag To: network@lists.ipfire.org Subject: [PATCH v2 2/2] network: add new ipsec functionality Date: Sat, 29 Jul 2017 10:39:37 +0200 Message-ID: <1501317577-5046-2-git-send-email-jonatan.schlag@ipfire.org> In-Reply-To: <1501317577-5046-1-git-send-email-jonatan.schlag@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============4989852694588887234==" List-Id: --===============4989852694588887234== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Signed-off-by: Jonatan Schlag --- src/network | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) diff --git a/src/network b/src/network index 16c8f60..88c90b1 100644 --- a/src/network +++ b/src/network @@ -1409,6 +1409,24 @@ cli_vpn() { security-policies) cli_vpn_security_policies $@ ;; + ipsec) + cli_vpn_ipsec $@ + ;; + *) + error "Unrecognized argument: ${action}" + exit ${EXIT_ERROR} + ;; + esac +} + +cli_vpn_ipsec() { + local action=${1} + shift 1 + + case "${action}" in + connection) + cli_vpn_ipsec_connection $@ + ;; *) error "Unrecognized argument: ${action}" exit ${EXIT_ERROR} @@ -1416,6 +1434,43 @@ cli_vpn() { esac } +cli_vpn_ipsec_connection() { + if ipsec_connection_exists ${1}; then + local connection=${1} + local key=${2} + key=${key//-/_} + shift 2 + + case "${key}" in + authentication|inactivity-timout|local|mode|peer|remote|security-policy) + ipsec_connection_${key} ${connection} $@ + ;; + *) + error "Unrecognized argument: ${key}" + exit ${EXIT_ERROR} + ;; + esac + else + local action=${1} + shift + + case "${action}" in + new) + ipsec_connection_new $@ + ;; + destroy) + ipsec_connection_destroy $@ + ;; + ""|*) + if [ -n "${action}" ]; then + error "Unrecognized argument: '${action}'" + fi + exit ${EXIT_ERROR} + ;; + esac + fi +} + cli_vpn_security_policies() { local action -- 2.6.3 --===============4989852694588887234==--