diff options
author | Steven Barth <steven@midlink.org> | 2014-06-03 08:51:33 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2014-06-03 08:51:33 +0000 |
commit | 07109bb3f3df83b789756c38a5ac9ebb389afeec (patch) | |
tree | 25e0a6283e4372f2898f791f9de5138276da446b /modules | |
parent | 3bc5909cab1be505749e347f348fe2380b47bbc3 (diff) |
Allow toggling local IPv6 addressmanagement
Diffstat (limited to 'modules')
-rw-r--r-- | modules/admin-full/luasrc/model/cbi/admin_network/ifaces.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/admin-full/luasrc/model/cbi/admin_network/ifaces.lua b/modules/admin-full/luasrc/model/cbi/admin_network/ifaces.lua index cdd1c133e..247ddbfba 100644 --- a/modules/admin-full/luasrc/model/cbi/admin_network/ifaces.lua +++ b/modules/admin-full/luasrc/model/cbi/admin_network/ifaces.lua @@ -227,6 +227,9 @@ end auto = s:taboption("advanced", Flag, "auto", translate("Bring up on boot")) auto.default = (net:proto() == "none") and auto.disabled or auto.enabled +delegate = s:taboption("advanced", Flag, "delegate", translate("Use builtin IPv6-management")) +delegate.default = delegate.enabled + if not net:is_virtual() then br = s:taboption("physical", Flag, "type", translate("Bridge interfaces"), translate("creates a bridge over specified interface(s)")) |