luci-proto-vxlan: fix uci option names
authorJo-Philipp Wich <jo@mein.io>
Wed, 27 May 2020 16:53:54 +0000 (18:53 +0200)
committerJo-Philipp Wich <jo@mein.io>
Wed, 27 May 2020 16:54:38 +0000 (18:54 +0200)
Fixes: d79bbdd5b ("luci-proto-vxlan: add vxlan protol handler")
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js
protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js

index 3a7f8a1d1168256d21857181ca202a12632fac82..8afd476a533a45a31577c3b805089cfd37509db1 100644 (file)
@@ -37,19 +37,19 @@ return network.registerProtocol('vxlan', {
        renderFormOptions: function(s) {
                var o;
 
-               o = s.taboption('general', form.Value, 'remote', _('Remote IPv4 address'), _('The IPv4 address or the fully-qualified domain name of the remote end.'));
+               o = s.taboption('general', form.Value, 'peeraddr', _('Remote IPv4 address'), _('The IPv4 address or the fully-qualified domain name of the remote end.'));
                o.optional = false;
                o.datatype = 'or(hostname,ip4addr("nomask"))';
 
-               o = s.taboption('general', form.Value, 'local', _('Local IPv4 address'), _('The local IPv4 address over which the tunnel is created (optional).'));
+               o = s.taboption('general', form.Value, 'ipaddr', _('Local IPv4 address'), _('The local IPv4 address over which the tunnel is created (optional).'));
                o.optional = true;
                o.datatype = 'ip4addr("nomask")';
 
-               o = s.taboption('general', form.Value, 'id', _('VXLAN network identifier'), _('ID used to uniquely identify the VXLAN'));
+               o = s.taboption('general', form.Value, 'vid', _('VXLAN network identifier'), _('ID used to uniquely identify the VXLAN'));
                o.optional = true;
                o.datatype = 'range(1, 16777216)';
 
-               o = s.taboption('general', widgets.NetworkSelect, 'link', _('Bind interface'), _('Bind the tunnel to this interface (optional).'));
+               o = s.taboption('general', widgets.NetworkSelect, 'tunlink', _('Bind interface'), _('Bind the tunnel to this interface (optional).'));
                o.exclude = s.section;
                o.nocreate = true;
                o.optional = true;
index 99bbeb36983f296badb6b74cc3c22a3434204b3a..f568e7e244a67bf57b03a79fa09e4381e7879865 100644 (file)
@@ -37,19 +37,19 @@ return network.registerProtocol('vxlan6', {
        renderFormOptions: function(s) {
                var o;
 
-               o = s.taboption('general', form.Value, 'remote', _('Remote IPv6 address'), _('The IPv6 address or the fully-qualified domain name of the remote end.'));
+               o = s.taboption('general', form.Value, 'peer6addr', _('Remote IPv6 address'), _('The IPv6 address or the fully-qualified domain name of the remote end.'));
                o.optional = false;
                o.datatype = 'or(hostname,cidr6)';
 
-               o = s.taboption('general', form.Value, 'local', _('Local IPv6 address'), _('The local IPv6 address over which the tunnel is created (optional).'));
+               o = s.taboption('general', form.Value, 'ip6addr', _('Local IPv6 address'), _('The local IPv6 address over which the tunnel is created (optional).'));
                o.optional = true;
                o.datatype = 'cidr6';
 
-               o = s.taboption('general', form.Value, 'id', _('VXLAN network identifier'), _('ID used to uniquely identify the VXLAN'));
+               o = s.taboption('general', form.Value, 'vid', _('VXLAN network identifier'), _('ID used to uniquely identify the VXLAN'));
                o.optional = true;
                o.datatype = 'range(1, 16777216)';
 
-               o = s.taboption('general', widgets.NetworkSelect, 'link', _('Bind interface'), _('Bind the tunnel to this interface (optional).'));
+               o = s.taboption('general', widgets.NetworkSelect, 'tunlink', _('Bind interface'), _('Bind the tunnel to this interface (optional).'));
                o.exclude = s.section;
                o.nocreate = true;
                o.optional = true;