diff options
author | Glen Huang <heyhgl@gmail.com> | 2022-01-19 22:35:33 +0800 |
---|---|---|
committer | Glen Huang <heyhgl@gmail.com> | 2022-01-19 22:35:33 +0800 |
commit | 9b02d5b7762bd5b00ed3f43a6dc324f55e4cff80 (patch) | |
tree | baffb495b5d5eee4ad12387566e5e85140063bba /protocols/luci-proto-xfrm/htdocs/luci-static | |
parent | 35df2adaf8a2c5b4fa61f58049f409ca087c0547 (diff) |
luci-proto-xfrm: add xfrm proto support
Signed-off-by: Glen Huang <heyhgl@gmail.com>
Diffstat (limited to 'protocols/luci-proto-xfrm/htdocs/luci-static')
-rw-r--r-- | protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js b/protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js new file mode 100644 index 0000000000..b630f3818b --- /dev/null +++ b/protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js @@ -0,0 +1,51 @@ +'use strict'; +'require uci'; +'require form'; +'require network'; +'require tools.widgets as widgets'; + +return network.registerProtocol('xfrm', { + getI18n: function() { + return _('IPsec XFRM'); + }, + + getIfname: function() { + return this._ubus('l3_device') || this.sid; + }, + + getOpkgPackage: function() { + return 'xfrm'; + }, + + isFloating: function() { + return true; + }, + + isVirtual: function() { + return true; + }, + + getDevice: function() { + return null; + }, + + containsDevice: function(ifname) { + return (network.getIfnameOf(ifname) == this.getIfname()); + }, + + renderFormOptions: function(s) { + var o, ss; + + o = s.taboption('general', form.Value, 'ifid', _('Interface ID'), _('Required. XFRM interface ID to be used for SA.')); + o.datatype = 'integer'; + + o = s.taboption('general', widgets.NetworkSelect, 'tunlink', _('Required. Underlying interface.')); + o.exclude = s.section; + o.nocreate = true; + + o = s.taboption('general', form.Value, 'mtu', _('MTU'), _('Optional. Maximum Transmission Unit of the XFRM interface.')); + o.datatype = 'range(68,65535)'; + o.placeholder = '1280'; + o.optional = true; + } +}); |