Skip to content

Commit

Permalink
luci-mod-network: wireless: RADIUS Access/Accounting-Request attrs
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Donald <newtwen@gmail.com>
  • Loading branch information
systemcrash committed Feb 16, 2024
1 parent 5b955f1 commit 2c8c39e
Showing 1 changed file with 28 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1400,6 +1400,33 @@ return view.extend({
encr.value(crypto_modes[i][0], '%s (%s)'.format(crypto_modes[i][1], security_level));
}

var attr_validate = function(section_id, value) {
if (!value)
return true;

if (!/^[0-9]+(:s:.+|:d:[0-9]+|:x:([0-9a-zA-Z]{2})+)?$/.test(value) )
return _('Must be in %s format.').format('<attr_id>[:<syntax:value>]');

return true;
};

var req_attr_syntax = _('Format:') + '<code>&ltattr_id&gt[:&ltsyntax:value&gt]</code>' + '<br />' +
'<code>syntax: s = %s; '.format(_('string (UTF-8)')) + 'd = %s; '.format(_('integer')) + 'x = %s</code>'.format(_('octet string'))

/* https://w1.fi/cgit/hostap/commit/?id=af35e7af7f8bb1ca9f0905b4074fb56a264aa12b */
o = ss.taboption('encryption', form.DynamicList, 'radius_auth_req_attr', _('RADIUS Access-Request attributes'),
_('Attributes to add/replace in each request.') + '<br />' + req_attr_syntax );
add_dependency_permutations(o, { mode: ['ap', 'ap-wds'], encryption: ['wpa', 'wpa2', 'wpa3', 'wpa3-mixed'] });
o.rmempty = true;
o.validate = attr_validate;
o.placeholder = '126:s:Operator';

o = ss.taboption('encryption', form.DynamicList, 'radius_acct_req_attr', _('RADIUS Accounting-Request attributes'),
_('Attributes to add/replace in each request.') + '<br />' + req_attr_syntax );
add_dependency_permutations(o, { mode: ['ap', 'ap-wds'], encryption: ['wpa', 'wpa2', 'wpa3', 'wpa3-mixed'] });
o.rmempty = true;
o.validate = attr_validate;
o.placeholder = '77:x:74657374696e67';

o = ss.taboption('encryption', form.Value, 'auth_server', _('RADIUS Authentication Server'));
add_dependency_permutations(o, { mode: ['ap', 'ap-wds'], encryption: ['wpa', 'wpa2', 'wpa3', 'wpa3-mixed'] });
Expand Down Expand Up @@ -1462,6 +1489,7 @@ return view.extend({
o = ss.taboption('encryption', form.Value, 'vlan_bridge', _('RADIUS VLAN Bridge Naming Scheme'), _('E.g. <code>br-vlan</code> or <code>brvlan</code>.'));
add_dependency_permutations(o, { mode: ['ap', 'ap-wds'], encryption: ['wpa', 'wpa2', 'wpa3', 'wpa3-mixed'] });
o.rmempty = true;

/* extra RADIUS settings end */

o = ss.taboption('encryption', form.Value, 'dae_client', _('DAE-Client'), _('Dynamic Authorization Extension client.'));
Expand Down

0 comments on commit 2c8c39e

Please sign in to comment.