luci-mod-network: let sourcefilter option available for most proto
sourcefilter option should be available for proto like: 'dhcpv6' 'directip' 'ppp' 'pppoe' 'pppoa' 'pptp' 'qmi' 'mbim' 'ncm' '3g' Signed-off-by: Chen Minqiang <ptpt52@gmail.com>
This commit is contained in:
parent
0617d301d9
commit
999f26e951
1 changed files with 19 additions and 1 deletions
|
@ -245,6 +245,24 @@ function has_peerdns(proto) {
|
|||
return false;
|
||||
}
|
||||
|
||||
function has_sourcefilter(proto) {
|
||||
switch (proto) {
|
||||
case '3g':
|
||||
case 'dhcpv6':
|
||||
case 'directip':
|
||||
case 'mbim':
|
||||
case 'ncm':
|
||||
case 'ppp':
|
||||
case 'pppoa':
|
||||
case 'pppoe':
|
||||
case 'pptp':
|
||||
case 'qmi':
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
var cbiRichListValue = form.ListValue.extend({
|
||||
renderWidget: function(section_id, option_index, cfgvalue) {
|
||||
var choices = this.transformChoices();
|
||||
|
@ -1038,7 +1056,7 @@ return view.extend({
|
|||
for (var i = 0; i < rtTables.length; i++)
|
||||
o.value(rtTables[i][1], '%s (%d)'.format(rtTables[i][1], rtTables[i][0]));
|
||||
|
||||
if (protoval == 'dhcpv6') {
|
||||
if (has_sourcefilter(protoval)) {
|
||||
o = nettools.replaceOption(s, 'advanced', form.Flag, 'sourcefilter', _('IPv6 source routing'), _('Automatically handle multiple uplink interfaces using source-based policy routing.'));
|
||||
o.default = o.enabled;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue