luci-proto-wireguard: remove MTU limit
fixes #5737 Signed-off-by: Florian Eckert <fe@dev.tdt.de>
This commit is contained in:
parent
3de5446003
commit
ddd04a719f
1 changed files with 1 additions and 1 deletions
|
@ -148,7 +148,7 @@ return network.registerProtocol('wireguard', {
|
||||||
// -- advanced --------------------------------------------------------------------
|
// -- advanced --------------------------------------------------------------------
|
||||||
|
|
||||||
o = s.taboption('advanced', form.Value, 'mtu', _('MTU'), _('Optional. Maximum Transmission Unit of tunnel interface.'));
|
o = s.taboption('advanced', form.Value, 'mtu', _('MTU'), _('Optional. Maximum Transmission Unit of tunnel interface.'));
|
||||||
o.datatype = 'range(1280,1420)';
|
o.datatype = 'max(9200)';
|
||||||
o.placeholder = '1420';
|
o.placeholder = '1420';
|
||||||
o.optional = true;
|
o.optional = true;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue