Merge pull request #278 from nmav/ocserv
[project/luci.git] / applications / luci-olsr / luasrc / model / cbi / olsr / olsrdhna6.lua
1 --[[
2 LuCI - Lua Configuration Interface
3
4 Copyright 2008 Steven Barth <steven@midlink.org>
5 Copyright 2011 Manuel Munz <freifunk at somakoma dot de>
6
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
10
11         http://www.apache.org/licenses/LICENSE-2.0
12
13 $Id$
14 ]]--
15
16 local uci = require "luci.model.uci".cursor()
17
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."))
20
21         hna6 = mh:section(TypedSection, "Hna6", translate("Hna6"), translate("IPv6 network must be given in full notation, " ..
22                 "prefix must be in CIDR notation."))
23         hna6.addremove = true
24         hna6.anonymous = true
25         hna6.template  = "cbi/tblsection"
26
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"
34         msk6.default = "128"
35 return mh
36