diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2009-11-21 00:22:35 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2009-11-21 00:22:35 +0000 |
commit | 1ee7f5ed7944704a20e0d7472f33fa57750edf87 (patch) | |
tree | ecf6e6e582b151e653992e8943e1ef5b60edb6ff | |
parent | f61586c62ba0cb652293d24f88f152753d256503 (diff) |
contrib/package, applications/luci-olsr: implement NatThreshold to minimize gateway flapping
-rw-r--r-- | applications/luci-olsr/luasrc/model/cbi/olsr/olsrd.lua | 2 | ||||
-rw-r--r-- | contrib/package/olsrd-luci/files/etc/config/olsrd | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/applications/luci-olsr/luasrc/model/cbi/olsr/olsrd.lua b/applications/luci-olsr/luasrc/model/cbi/olsr/olsrd.lua index d5b771096..5fcc748c8 100644 --- a/applications/luci-olsr/luasrc/model/cbi/olsr/olsrd.lua +++ b/applications/luci-olsr/luasrc/model/cbi/olsr/olsrd.lua @@ -90,6 +90,8 @@ for i=0,7 do end willingness.optional = true +natthr = s:option(Value, "NatThreshold") +natthr.optional = true i = m:section(TypedSection, "Interface", translate("Interfaces")) diff --git a/contrib/package/olsrd-luci/files/etc/config/olsrd b/contrib/package/olsrd-luci/files/etc/config/olsrd index 50fa556e1..5e490c340 100644 --- a/contrib/package/olsrd-luci/files/etc/config/olsrd +++ b/contrib/package/olsrd-luci/files/etc/config/olsrd @@ -2,6 +2,7 @@ config 'olsrd' option 'IpVersion' '4' option 'FIBMetric' 'flat' option 'LinkQualityAlgorithm' 'etx_ff' + option 'NatThreshold' '0.75' config 'Interface' option 'ignore' '1' |