evenet/lib/route.bash

82 lines
2.0 KiB
Bash

remove_route4() {
local interface="$1"
local subnet="$2"
local netmask="$3"
local gateway="$4"
local cidr="$(mask2cidr $netmask)"
if has ip; then
ip route del "$subnet/$cidr" via "$gateway" dev "$interface"
elif has route; then
route -n del -net "$subnet/$prefixlen" "$gateway"
else
die "no suitable program found to set routes, need iproute2 or ifconfig"
fi
}
add_route4() {
local interface="$1"
local subnet="$2"
local netmask="$3"
local gateway="$4"
local cidr="$(mask2cidr $netmask)"
remove_route4 "$interface" "$subnet" "$netmask" "$gateway" || true
if has ip; then
ip route add "$subnet/$cidr" via "$gateway" dev "$interface"
elif has route; then
route -n add -net "$subnet/$prefixlen" "$gateway"
else
die "no suitable program found to set routes, need iproute2 or ifconfig"
fi
}
remove_route6() {
local interface="$1"
local subnet="$2"
local prefixlen="$3"
local gateway="$4"
if has ip; then
ip route del "$subnet/$prefixlen" via "$gateway" dev "$interface"
elif has route; then
if [[ "$gateway" == fe80* ]]; then
gateway="$gateway%$interface"
fi
route -n add -inet6 "$network" "$gateway" -prefixlen "$prefixlen"
else
die "no suitable program found to set routes, need iproute2 or ifconfig"
fi
}
add_route6() {
local interface="$1"
local subnet="$2"
local prefixlen="$3"
local gateway="$4"
remove_route6 "$interface" "$subnet" "$prefixlen" "$gateway" || true
if has ip; then
ip route add "$subnet/$prefixlen" via "$gateway" dev "$interface"
elif has route; then
if [[ "$gateway" == fe80* ]]; then
gateway="$gateway%$interface"
fi
route -n add -inet6 "$network" "$gateway" -prefixlen "$prefixlen"
else
die "no suitable program found to set routes, need iproute2 or ifconfig"
fi
}
set_route_policy() {
# TODO: other operating systems
if [[ "$OSTYPE" != "linux-gnu" ]]; then
return
fi
if ! has ip; then
warn "Could not set source"
fi
}