From: Yuxiang Zhu Date: Sat, 8 Feb 2020 18:05:50 +0000 (+0800) Subject: wireguard: add checkbox for `nohostroute` option X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=9684901dc27e37900d4c4cf09b1de3b836649e0e;p=oweals%2Fluci.git wireguard: add checkbox for `nohostroute` option This change allows to configure `nohostroute` option for wireguard to explicitely prevent creation of host routes to endpoints. By default without `option nohostroute '1'`, an explicite route to the peer's endpoint will be created in the main routing table with the next hop to the gateway. However, it causes issues with some setup. Enabling this option will inhibit this behavior. See discussions at http://lists.openwrt.org/pipermail/openwrt-devel/2019-March/016329.html. Signed-off-by: Yuxiang Zhu --- diff --git a/protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js b/protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js index c9b00abde..c8e1f8403 100644 --- a/protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js +++ b/protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js @@ -60,6 +60,8 @@ return network.registerProtocol('wireguard', { o.datatype = 'ipaddr'; o.optional = true; + o = s.taboption('general', form.Flag, 'nohostroute', _('No Host Routes'), _('Optional. Do not create host routes to peers.')); + o.optional = true; // -- advanced --------------------------------------------------------------------