interface-file: remap legacy ifupdown & ifupdown2 tunnel parameters
This commit is contained in:
parent
ac56a85074
commit
9cc74b58c4
2 changed files with 36 additions and 1 deletions
30
executor-scripts/linux/tunnel
Executable file
30
executor-scripts/linux/tunnel
Executable file
|
@ -0,0 +1,30 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# Based on alpine's tunnel configuration script.
|
||||||
|
# Copyright (c) 2017 Kaarle Ritvanen
|
||||||
|
|
||||||
|
PARAMS=$(set | sed -E '
|
||||||
|
s/^IF_TUNNEL_([A-Z0-9_]+)=(.+)/\1\n\2/
|
||||||
|
ta
|
||||||
|
d
|
||||||
|
:a
|
||||||
|
h
|
||||||
|
y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/
|
||||||
|
P
|
||||||
|
g
|
||||||
|
s/.*\n//
|
||||||
|
')
|
||||||
|
|
||||||
|
[ "$PARAMS" ] || exit 0
|
||||||
|
|
||||||
|
case "$PHASE" in
|
||||||
|
pre-up)
|
||||||
|
eval ip tunnel add $IFACE $PARAMS
|
||||||
|
;;
|
||||||
|
post-down)
|
||||||
|
ip tunnel del $IFACE
|
||||||
|
;;
|
||||||
|
depend)
|
||||||
|
echo "$IF_TUNNEL_DEV"
|
||||||
|
;;
|
||||||
|
esac
|
|
@ -24,9 +24,14 @@ struct remap_token {
|
||||||
const char *alternative;
|
const char *alternative;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* this list must be in alphabetical order for bsearch */
|
||||||
static const struct remap_token tokens[] = {
|
static const struct remap_token tokens[] = {
|
||||||
|
{"endpoint", "tunnel-remote"}, /* legacy ifupdown */
|
||||||
|
{"local", "tunnel-local"}, /* legacy ifupdown */
|
||||||
{"provider", "ppp-provider"}, /* legacy ifupdown, ifupdown2 */
|
{"provider", "ppp-provider"}, /* legacy ifupdown, ifupdown2 */
|
||||||
{"vrf", "vrf-member"},
|
{"tunnel-endpoint", "tunnel-remote"}, /* ifupdown2 */
|
||||||
|
{"tunnel-physdev", "tunnel-dev"}, /* ifupdown2 */
|
||||||
|
{"vrf", "vrf-member"}, /* ifupdown2 */
|
||||||
};
|
};
|
||||||
|
|
||||||
static int
|
static int
|
||||||
|
|
Loading…
Reference in a new issue