luci-olsr split IPv6/4 configuration in 2 sections
[project/luci.git] / applications / luci-olsr / luasrc / model / cbi / olsr / olsrdhna6.lua
diff --git a/applications/luci-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua b/applications/luci-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua
new file mode 100644 (file)
index 0000000..21b2ec8
--- /dev/null
@@ -0,0 +1,36 @@
+--[[
+LuCI - Lua Configuration Interface
+
+Copyright 2008 Steven Barth <steven@midlink.org>
+Copyright 2011 Manuel Munz <freifunk at somakoma dot de>
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+$Id$
+]]--
+
+local uci = require "luci.model.uci".cursor()
+
+mh = Map("olsrd6", translate("OLSR - HNA6-Announcements"), translate("Hosts in a OLSR routed network can announce connecitivity " ..
+       "to external networks using HNA6 messages."))
+
+       hna6 = mh:section(TypedSection, "Hna6", translate("Hna6"), translate("IPv6 network must be given in full notation, " ..
+               "prefix must be in CIDR notation."))
+       hna6.addremove = true
+       hna6.anonymous = true
+       hna6.template  = "cbi/tblsection"
+
+       net6 = hna6:option(Value, "netaddr", translate("Network address"))
+       net6.datatype = "ip6addr"
+       net6.placeholder = "fec0:2200:106:0:0:0:0:0"
+       net6.default = "fec0:2200:106:0:0:0:0:0"
+       msk6 = hna6:option(Value, "prefix", translate("Prefix"))
+       msk6.datatype = "range(0,128)"
+       msk6.placeholder = "128"
+       msk6.default = "128"
+return mh
+