luci-proto-gre: Protocol extension for GRE tunnels
[oweals/luci.git] / protocols / luci-proto-gre / htdocs / luci-static / resources / protocol / gre.js
1 'use strict';
2 'require form';
3 'require network';
4 'require tools.widgets as widgets';
5
6 network.registerPatternVirtual(/^gre4-.+$/);
7
8 return network.registerProtocol('gre', {
9         getI18n: function() {
10                 return _('GRE tunnel over IPv4');
11         },
12
13         getIfname: function() {
14                 return this._ubus('l3_device') || 'gre4-%s'.format(this.sid);
15         },
16
17         getOpkgPackage: function() {
18                 return 'gre';
19         },
20
21         isFloating: function() {
22                 return true;
23         },
24
25         isVirtual: function() {
26                 return true;
27         },
28
29         getDevices: function() {
30                 return null;
31         },
32
33         containsDevice: function(ifname) {
34                 return (network.getIfnameOf(ifname) == this.getIfname());
35         },
36
37         renderFormOptions: function(s) {
38                 var o;
39
40                 // -- general ---------------------------------------------------------------------
41
42                 o = s.taboption('general', form.Value, 'peeraddr', _("Remote IPv4 address or FQDN"), _("The IPv4 address or the fully-qualified domain name of the remote tunnel end."));
43                 o.optional = false;
44                 o.datatype = 'or(hostname,ip4addr("nomask"))';
45
46                 o = s.taboption('general', form.Value, 'ipaddr', _("Local IPv4 address"), _("The local IPv4 address over which the tunnel is created (optional)."));
47                 o.optional = true;
48                 o.datatype = 'ip4addr("nomask")';
49
50                 // -- advanced ---------------------------------------------------------------------
51
52                 o = s.taboption('advanced', widgets.NetworkSelect, 'tunlink', _("Bind interface"), _("Bind the tunnel to this interface (optional)."));
53                 o.exclude = s.section;
54                 o.nocreate = true;
55                 o.optional = true;
56
57                 o = s.taboption('advanced', form.Value, 'mtu', _("Override MTU"), _("Specify an MTU (Maximum Transmission Unit) other than the default (1280 bytes) (optional)."));
58                 o.optional = true;
59                 o.placeholder = 1280;
60                 o.datatype = 'range(68, 9200)';
61
62                 o = s.taboption('advanced', form.Value, 'ttl', _("Override TTL"), _("Specify a TTL (Time to Live) for the encapsulating packet other than the default (64) (optional)."));
63                 o.optional = true;
64                 o.placeholder = 64;
65                 o.datatype = 'min(1)';
66
67                 o = s.taboption('advanced', form.Value, 'tos', _('Override TOS'), _("Specify a TOS (Type of Service). Can be either <code>inherit</code> (the outer      header inherits the value of the inner header) or an hexadecimal value starting with <code>0x</code> (optional)."));
68                 o.optional = true;
69                 o.validate = function(section_id, value) {
70                         if (value.length > 0 && !value.match(/^0x[a-fA-F0-9]{1,2}$/) && !value.match(/^inherit$/i))
71                                 return _('Invalid value');
72
73                         return true;
74                 };
75
76                 o = s.taboption('advanced', form.Flag, 'df', _("Don't Fragment"), _("Enable the DF (Don't Fragment) flag of the encapsulating packets."));
77                 o.default = o.enabled;
78
79                 o = s.taboption('advanced', form.Flag, 'nohostroute', _("No host route"), _("Do not create host route to peer (optional)."));
80                 o.optional = true;
81
82                 o = s.taboption('advanced', form.Value, 'ikey', _("Incoming key"), _("Key for incoming packets (optional)."));
83                 o.optional = true;
84                 o.datatype = 'integer';
85
86                 o = s.taboption('advanced', form.Value, 'okey', _("Outgoing key"), _("Key for outgoing packets (optinal)."));
87                 o.optional = true;
88                 o.datatype = 'integer';
89
90                 s.taboption('advanced', form.Flag, 'icsum', _("Incoming checksum"), _("Require incoming checksum (optional)."));
91                 s.taboption('advanced', form.Flag, 'ocsum', _("Outgoing checksum"), _("Compute outgoing checksum (optional)."));
92                 s.taboption('advanced', form.Flag, 'iseqno', _("Incoming serialization"), _("Require incoming packets serialization (optional)."));
93                 s.taboption('advanced', form.Flag, 'oseqno', _("Outgoing serialization"), _("Perform outgoing packets serialization (optional)."));
94
95         }
96 });