From: Jonatan Schlag <jonatan.schlag@ipfire.org>
To: network@lists.ipfire.org
Subject: [PATCH v2 2/2] network: add new ipsec functionality
Date: Sat, 29 Jul 2017 10:39:37 +0200 [thread overview]
Message-ID: <1501317577-5046-2-git-send-email-jonatan.schlag@ipfire.org> (raw)
In-Reply-To: <1501317577-5046-1-git-send-email-jonatan.schlag@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 1511 bytes --]
Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
---
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
prev parent reply other threads:[~2017-07-29 8:39 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-07-29 8:39 [PATCH v2 1/2] ipsec: add new functions Jonatan Schlag
2017-07-29 8:39 ` Jonatan Schlag [this message]
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=1501317577-5046-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