From: Jonatan Schlag <jonatan.schlag@ipfire.org>
To: network@lists.ipfire.org
Subject: [PATCH 1/5] ip-tunnel: add new function
Date: Sun, 04 Mar 2018 18:24:55 +0000 [thread overview]
Message-ID: <1520187899-5759-1-git-send-email-jonatan.schlag@ipfire.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 1307 bytes --]
To be undependent from the IP protocol we use, when we use tunnel modes
in our code, this function converts the modes
to the modes the iproute2 tool uses
which often depend on the IP protocol version.
Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
---
src/functions/functions.ip-tunnel | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/src/functions/functions.ip-tunnel b/src/functions/functions.ip-tunnel
index 7bb4e3f..550b0b3 100644
--- a/src/functions/functions.ip-tunnel
+++ b/src/functions/functions.ip-tunnel
@@ -21,6 +21,34 @@
IP_TUNNEL_MODES="gre sit vti"
+# This function converts our modes into the type
+# the iproute2 tool uses
+ip_tunnel_convert_mode_to_iproute2_mode() {
+ local mode=${1}
+ local protocol=${2}
+
+ if ! isset mode || ! isset protocol; then
+ log ERROR "Did not get mode and/or protocol"
+ return ${EXIT_ERROR}
+ fi
+
+ if [[ "${protocol}" = "ipv4" ]]; then
+ # When we use IPv4 we can use our modes
+ echo "${mode}"
+ fi
+
+ if [[ "${protocol}" = "ipv6" ]]; then
+ # When we use IPv6 we have to convert
+ case "${mode}" in
+ "vti")
+ echo "vti6"
+ ;;
+ "gre")
+ echo "ip6gre"
+ esac
+ fi
+}
+
ip_tunnel_add() {
local device=${1}
shift
--
2.6.3
next reply other threads:[~2018-03-04 18:24 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-03-04 18:24 Jonatan Schlag [this message]
2018-03-04 18:24 ` [PATCH 2/5] device: add new function device_is_vti6 Jonatan Schlag
2018-03-04 18:24 ` [PATCH 3/5] device: add new function device_tunnel_get_type() Jonatan Schlag
2018-03-04 18:24 ` [PATCH 4/5] ip-tunnel: Improve checks Jonatan Schlag
2018-03-04 18:24 ` [PATCH 5/5] ip-tunnel: choose the correct type based on the ip protocol Jonatan Schlag
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=1520187899-5759-1-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