evenet/lib/route.bash

48 lines
1.3 KiB
Bash
Raw Normal View History

2015-02-19 08:36:40 +00:00
add_route4() {
local interface="$1"
local subnet="$2"
local gateway="$3"
local netmask="$4"
local cidr="$(mask2cidr $netmask)"
2015-02-21 08:41:13 +00:00
if has ip; then
2015-02-19 08:36:40 +00:00
ip route del "$subnet/$cidr" via "$gateway" dev "$interface" || true
ip route add "$subnet/$cidr" via "$gateway" dev "$interface"
2015-02-21 08:41:13 +00:00
elif has route; then
route -n del -net "$subnet/$prefixlen" "$gateway" || true
route -n add -net "$subnet/$prefixlen" "$gateway"
2015-02-19 08:36:40 +00:00
else
die "no suitable program found to set routes, need iproute2 or ifconfig"
fi
}
add_route6() {
local interface="$1"
local subnet="$2"
local gateway="$3"
local prefixlen="$4"
2015-02-21 08:41:13 +00:00
if has ip; then
2015-02-19 08:36:40 +00:00
ip route del "$subnet/$prefixlen" via "$gateway" dev "$interface" || true
ip route add "$subnet/$prefixlen" via "$gateway" dev "$interface"
2015-02-21 08:41:13 +00:00
if has route; then
if [[ "$gateway" == fe80* ]]; then
gateway="$gateway%$interface"
fi
route -n add -inet6 "$network" "$gateway" -prefixlen "$prefixlen" || true
route -n add -inet6 "$network" "$gateway" -prefixlen "$prefixlen"
2015-02-19 08:36:40 +00:00
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
}