ifupdown-ng/executor-scripts/linux/vrf
2020-08-18 16:52:11 -06:00

32 lines
566 B
Bash
Executable file

#!/bin/sh
set -e
handle_init() {
${MOCK} /sbin/ip link $1 $IFACE type vrf table $IF_VRF_TABLE
${MOCK} /sbin/ip rule $1 iif $IFACE table $IF_VRF_TABLE
${MOCK} /sbin/ip rule $1 oif $IFACE table $IF_VRF_TABLE
}
handle_member() {
${MOCK} /sbin/ip link set $IFACE master $IF_VRF_MEMBER
}
[ -n "$VERBOSE" ] && set -x
case "$PHASE" in
pre-up)
[ -n "$IF_VRF_TABLE" ] && handle_init "add"
[ -n "$IF_VRF_MEMBER" ] && handle_member
exit 0
;;
post-down)
[ -n "$IF_VRF_TABLE" ] && handle_init "del"
exit 0
;;
depend)
echo "$IF_VRF_MEMBER"
;;
*)
exit 0
;;
esac