mirror of https://github.com/hak5/openwrt-owl.git
base-files: (#4928) handle "option gateway 0.0.0.0" and "option gateway interface" in route sections as "no gateway given" to allow defining gateway-less routes while still keeping the possibility to have static routes with a proper gateway on interfaces with# dynamic ips
SVN-Revision: 15272owl
parent
489252ab43
commit
b0ea64c211
|
@ -23,6 +23,13 @@ add_route() {
|
||||||
config_get gateway "$interface" gateway
|
config_get gateway "$interface" gateway
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# handle "0.0.0.0" and "interface" as "no gateway given"
|
||||||
|
# to allow defining gateway-less routes while still
|
||||||
|
# keeping the possibility to have static routes with a
|
||||||
|
# proper gateway on interfaces with dynamic ips
|
||||||
|
[ "$gateway" = "0.0.0.0" -o \
|
||||||
|
"$gateway" = "interface" ] && gateway=""
|
||||||
|
|
||||||
dest="${netmask:+-net "$target" netmask "$netmask"}"
|
dest="${netmask:+-net "$target" netmask "$netmask"}"
|
||||||
dest="${dest:--host "$target"}"
|
dest="${dest:--host "$target"}"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue