ifupdown-ng/executor-scripts/linux/vrf
2020-11-02 08:53:30 -07:00

30 lines
552 B
Bash
Executable file

#!/bin/sh
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
create)
[ -n "$IF_VRF_TABLE" ] && handle_init "add"
;;
pre-up)
[ -n "$IF_VRF_MEMBER" ] && handle_member
;;
destroy)
[ -n "$IF_VRF_TABLE" ] && handle_init "del"
;;
depend)
echo "$IF_VRF_MEMBER"
;;
*)
exit 0
;;
esac