public inbox for network@lists.ipfire.org
 help / color / mirror / Atom feed
From: Michael Tremer <michael.tremer@ipfire.org>
To: network@lists.ipfire.org
Subject: Re: [RFC PATCH 2/2] network: add ipsec
Date: Thu, 27 Jul 2017 16:46:21 +0100	[thread overview]
Message-ID: <1501170381.2528.3.camel@ipfire.org> (raw)
In-Reply-To: <1501090354-17617-2-git-send-email-jonatan.schlag@ipfire.org>

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

Hi,

On Wed, 2017-07-26 at 19:32 +0200, Jonatan Schlag wrote:
> 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

You could just replace any - by _ in ${key} which makes this easier:

  key=${key//-/_}

> +
> +		case "${key}" in
> +			authentication|local|mode|peer|remote)
> +				vpn_ipsec_connection_${key}
> ${connection} $@
> +				;;
> +			inactivity-timeout)
> +				vpn_ipsec_connection_inactivity_time
> out ${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

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

  reply	other threads:[~2017-07-27 15:46 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 ` [RFC PATCH 2/2] network: add ipsec Jonatan Schlag
2017-07-27 15:46   ` Michael Tremer [this message]
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=1501170381.2528.3.camel@ipfire.org \
    --to=michael.tremer@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