mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-24 22:35:11 +02:00
[package] 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 git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15272 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
81262dbbdd
commit
eb4ec858a3
@ -23,6 +23,13 @@ add_route() {
|
||||
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="${dest:--host "$target"}"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user