summaryrefslogtreecommitdiffhomepage
path: root/protocols/ipv6/luasrc/model/cbi
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2013-05-23 10:14:04 +0000
committerSteven Barth <steven@midlink.org>2013-05-23 10:14:04 +0000
commitff4c167e93eac3ccce3e550b38eb7f67ddc1fd71 (patch)
tree69bd69f742210454a033f1db6b028fd6211b2474 /protocols/ipv6/luasrc/model/cbi
parent9a55fd9e8487d3e473ff2432886d76531e64cb59 (diff)
Add DS-Lite support
Diffstat (limited to 'protocols/ipv6/luasrc/model/cbi')
-rw-r--r--protocols/ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua62
1 files changed, 62 insertions, 0 deletions
diff --git a/protocols/ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua b/protocols/ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua
new file mode 100644
index 0000000000..2d9e258c32
--- /dev/null
+++ b/protocols/ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua
@@ -0,0 +1,62 @@
+--[[
+LuCI - Lua Configuration Interface
+
+Copyright 2011 Jo-Philipp Wich <xm@subsignal.org>
+Copyright 2013 Steven Barth <steven@midlink.org>
+
+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
+]]--
+
+local map, section, net = ...
+
+local peeraddr, ip6addr
+local tunlink, defaultroute, metric, ttl, mtu
+
+
+
+
+peeraddr = section:taboption("general", Value, "peeraddr",
+ translate("DS-Lite AFTR address"))
+
+peeraddr.rmempty = false
+peeraddr.datatype = "ip6addr"
+
+ip6addr = section:taboption("general", Value, "ip6addr",
+ translate("Local IPv6 address"),
+ translate("Leave empty to use the current WAN address"))
+
+ip6addr.datatype = "ip6addr"
+
+
+tunlink = section:taboption("advanced", DynamicList, "tunlink", translate("Tunnel Link"))
+tunlink.template = "cbi/network_netlist"
+tunlink.nocreate = true
+
+
+defaultroute = section:taboption("advanced", Flag, "defaultroute",
+ translate("Default gateway"),
+ translate("If unchecked, no default route is configured"))
+
+defaultroute.default = defaultroute.enabled
+
+
+metric = section:taboption("advanced", Value, "metric",
+ translate("Use gateway metric"))
+
+metric.placeholder = "0"
+metric.datatype = "uinteger"
+metric:depends("defaultroute", defaultroute.enabled)
+
+
+ttl = section:taboption("advanced", Value, "ttl", translate("Use TTL on tunnel interface"))
+ttl.placeholder = "64"
+ttl.datatype = "range(1,255)"
+
+
+mtu = section:taboption("advanced", Value, "mtu", translate("Use MTU on tunnel interface"))
+mtu.placeholder = "1280"
+mtu.datatype = "max(9200)"