2 LuCI - Lua Configuration Interface
4 Copyright 2008 Steven Barth <steven@midlink.org>
5 Copyright 2011 Manuel Munz <freifunk at somakoma dot de>
7 Licensed under the Apache License, Version 2.0 (the "License");
8 you may not use this file except in compliance with the License.
9 You may obtain a copy of the License at
11 http://www.apache.org/licenses/LICENSE-2.0
16 local uci = require "luci.model.uci".cursor()
18 mh = Map("olsrd6", translate("OLSR - HNA6-Announcements"), translate("Hosts in a OLSR routed network can announce connecitivity " ..
19 "to external networks using HNA6 messages."))
21 hna6 = mh:section(TypedSection, "Hna6", translate("Hna6"), translate("IPv6 network must be given in full notation, " ..
22 "prefix must be in CIDR notation."))
25 hna6.template = "cbi/tblsection"
27 net6 = hna6:option(Value, "netaddr", translate("Network address"))
28 net6.datatype = "ip6addr"
29 net6.placeholder = "fec0:2200:106:0:0:0:0:0"
30 net6.default = "fec0:2200:106:0:0:0:0:0"
31 msk6 = hna6:option(Value, "prefix", translate("Prefix"))
32 msk6.datatype = "range(0,128)"
33 msk6.placeholder = "128"