public inbox for network@lists.ipfire.org
 help / color / mirror / Atom feed
From: Jonatan Schlag <jonatan.schlag@ipfire.org>
To: network@lists.ipfire.org
Subject: [RFC PATCH 2/2] network: add ipsec
Date: Wed, 26 Jul 2017 19:32:34 +0200	[thread overview]
Message-ID: <1501090354-17617-2-git-send-email-jonatan.schlag@ipfire.org> (raw)
In-Reply-To: <1501090354-17617-1-git-send-email-jonatan.schlag@ipfire.org>

[-- Attachment #1: Type: text/plain, Size: 1660 bytes --]

Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
---
 src/network | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 60 insertions(+)

diff --git a/src/network b/src/network
index adc9ac3..893c411 100644
--- a/src/network
+++ b/src/network
@@ -1403,6 +1403,9 @@ cli_vpn() {
 		security-policies)
 			cli_vpn_security_policies $@
 			;;
+		ipsec)
+			cli_vpn_ipsec $@
+			;;
 		*)
 			error "Unrecognized argument: ${action}"
 			exit ${EXIT_ERROR}
@@ -1410,6 +1413,63 @@ cli_vpn() {
 	esac
 }
 
+cli_vpn_ipsec() {
+	local action=${1}
+	shift 1
+
+	case "${action}" in
+		connection)
+			cli_vpn_ipsec_connection $@
+			;;
+		*)
+			error "Unrecognized argument: ${action}"
+			exit ${EXIT_ERROR}
+			;;
+	esac
+}
+
+cli_vpn_ipsec_connection() {
+	if vpn_ipsec_connection_exists ${1}; then
+		local connection=${1}
+		local key=${2}
+		shift 2
+
+		case "${key}" in
+			authentication|local|mode|peer|remote)
+				vpn_ipsec_connection_${key} ${connection} $@
+				;;
+			inactivity-timeout)
+				vpn_ipsec_connection_inactivity_timeout ${connection} $@
+				;;
+			security-policy)
+				vpn_ipsec_connection_security_policy ${connection} $@
+				;;
+			*)
+				error "Unrecognized argument: ${key}"
+				exit ${EXIT_ERROR}
+				;;
+		esac
+	else
+		local action=${1}
+		shift
+
+		case "${action}" in
+			new)
+				vpn_ipsec_connection_new $@
+				;;
+			destroy)
+				vpn_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


  reply	other threads:[~2017-07-26 17:32 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-07-26 17:32 [RFC PATCH 1/2] Add vpn-ipsec functions Jonatan Schlag
2017-07-26 17:32 ` Jonatan Schlag [this message]
2017-07-27 15:46   ` [RFC PATCH 2/2] network: add ipsec Michael Tremer
2017-07-27 15:43 ` [RFC PATCH 1/2] Add vpn-ipsec functions Michael Tremer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1501090354-17617-2-git-send-email-jonatan.schlag@ipfire.org \
    --to=jonatan.schlag@ipfire.org \
    --cc=network@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox