db98ae621e1484d7ef881bd02b4555af635a11a4
[lede-routing/.git] / hna.lua
1 --[[
2     Copyright (C) 2011 Pau Escrich <pau@dabax.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License along
15     with this program; if not, write to the Free Software Foundation, Inc.,
16     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
18     The full GNU General Public License is included in this distribution in
19     the file called "COPYING".
20 --]]
21
22 local sys = require("luci.sys")
23
24 m = Map("bmx6", "bmx6")
25
26 local hna = m:section(TypedSection,"unicastHna","IPv6 HNA")
27 hna.addremove = true
28 hna.anonymous = true
29 local hna_option = hna:option(Value,"unicastHna", "IPv6 Host Network Announcement. Syntax <NETADDR>/<PREFIX>")
30
31 --function hna_option:validate(value)
32 --      local err = sys.call('bmx6 -c --test -a ' .. value)
33 --      if err ~= 0 then
34 --              return nil
35 --      end
36 --      return value
37 --end
38
39 function m.on_commit(self,map)
40         local err = sys.call('bmx6 -c --configReload > /tmp/bmx6-luci.err.tmp')
41         if err ~= 0 then
42                 m.message = sys.exec("cat /tmp/bmx6-luci.err.tmp")
43         end
44 end
45
46 return m
47