1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
|
'use strict';
'require view';
'require form';
'require uci';
'require fs';
'require validation';
'require tools.widgets as widgets';
function writePeriod(section_id, value) {
var interval = this.map.lookupOption('_interval', section_id)[0],
period = this.map.lookupOption('_period', section_id)[0],
date = this.map.lookupOption('_date', section_id)[0],
days = this.map.lookupOption('_days', section_id)[0];
if (period.formvalue(section_id) == 'relative') {
uci.set('nlbwmon', section_id, 'database_interval', interval.formvalue(section_id));
}
else {
uci.set('nlbwmon', section_id, 'database_interval', '%s/%s'.format(
date.formvalue(section_id),
days.formvalue(section_id)
));
}
}
function writeNetworks(section_id, value) {
var oldval = L.toArray(uci.get('nlbwmon', section_id, 'local_network')),
subnets = this.map.lookupOption('_subnets', section_id)[0],
ifaces = this.map.lookupOption('_ifaces', section_id)[0];
var newval = [].concat(
L.toArray(subnets.formvalue(section_id)),
L.toArray(ifaces.formvalue(section_id))
);
if (oldval.length != newval.length || oldval.join(' ') != newval.join(' '))
uci.set('nlbwmon', section_id, 'local_network', newval);
}
function writeProtocols(section_id, value) {
return fs.write('/usr/share/nlbwmon/protocols', (value || '').trim().replace(/\r\n/g, '\n') + '\n');
}
return view.extend({
load: function() {
return uci.load('nlbwmon');
},
render: function() {
var m, s, o;
m = new form.Map('nlbwmon', _('Netlink Bandwidth Monitor - Configuration'),
_('The Netlink Bandwidth Monitor (nlbwmon) is a lightweight, efficient traffic accounting program keeping track of bandwidth usage per host and protocol.'));
s = m.section(form.TypedSection, 'nlbwmon');
s.anonymous = true;
s.addremove = false;
s.tab('general', _('General Settings'));
s.tab('advanced', _('Advanced Settings'));
s.tab('protocol', _('Protocol Mapping'), _('Protocol mappings to distinguish traffic types per host, one mapping per line. The first value specifies the IP protocol, the second value the port number and the third column is the name of the mapped protocol.'));
o = s.taboption('general', form.ListValue, '_period', _('Accounting period'),
_('Choose "Day of month" to restart the accounting period monthly on a specific date, e.g. every 3rd. Choose "Fixed interval" to restart the accounting period exactly every N days, beginning at a given date.'));
o.cfgvalue = function(section_id) {
var value = uci.get('nlbwmon', section_id, 'database_interval'),
m = /^[0-9]{4}-[0-9]{2}-[0-9]{2}\/[0-9]+$/.test(value);
return m ? 'absolute' : 'relative';
};
o.write = writePeriod;
o.value('relative', _('Day of month'));
o.value('absolute', _('Fixed interval'));
o = s.taboption('general', form.DummyValue, '_warning', _('Warning'));
o.default = _('Changing the accounting interval type will invalidate existing databases!<br /><strong><a href="%s">Download backup</a></strong>.').format(L.url('admin/nlbw/backup'));
o.rawhtml = true;
if (/^[0-9]{4}-[0-9]{2}-[0-9]{2}\/[0-9]+$/.test(uci.get_first('nlbwmon', 'nlbwmon', 'database_interval')))
o.depends('_period', 'relative');
else
o.depends('_period', 'absolute');
o = s.taboption('general', form.Value, '_interval', _('Due date'),
_('Day of month to restart the accounting period. Use negative values to count towards the end of month, e.g. "-5" to specify the 27th of July or the 24th of February.'));
o.rmempty = false;
o.cfgvalue = function(section_id) {
var value = +uci.get('nlbwmon', section_id, 'database_interval');
return !isNaN(value) ? value.toString() : null;
};
o.write = writePeriod;
o.depends('_period', 'relative');
o.value('1', _('1 - Restart every 1st of month'));
o.value('-1', _('-1 - Restart every last day of month'));
o.value('-7', _('-7 - Restart a week before end of month'));
o = s.taboption('general', form.Value, '_date', _('Start date'),
_('Start date of the first accounting period, e.g. begin of ISP contract.'));
o.rmempty = false;
o.cfgvalue = function(section_id) {
var value = uci.get('nlbwmon', section_id, 'database_interval'),
m = /^([0-9]{4}-[0-9]{2}-[0-9]{2})\/[0-9]+$/.exec(value);
return m ? m[1] : null;
};
o.write = writePeriod;
o.depends('_period', 'absolute');
o = s.taboption('general', form.Value, '_days', _('Interval'),
_('Length of accounting interval in days.'));
o.rmempty = false;
o.cfgvalue = function(section_id) {
var value = uci.get('nlbwmon', section_id, 'database_interval'),
m = /^[0-9]{4}-[0-9]{2}-[0-9]{2}\/([0-9]+)$/.exec(value);
return m ? m[1] : null;
};
o.write = writePeriod;
o.depends('_period', 'absolute');
o = s.taboption('general', widgets.NetworkSelect, '_ifaces', _('Local interfaces'),
_('Only conntrack streams from or to any of these networks are counted.'));
o.nocreate = true;
o.multiple = true;
o.cfgvalue = function(section_id) {
return L.toArray(uci.get('nlbwmon', section_id, 'local_network'));
};
o.write = writeNetworks;
o = s.taboption('general', form.DynamicList, '_subnets', _('Local subnets'),
_('Only conntrack streams from or to any of these subnets are counted.'));
o.cfgvalue = function(section_id) {
return L.toArray(uci.get('nlbwmon', section_id, 'local_network')).filter(function(addr) {
var m = /^([0-9a-fA-F:.]+)(?:\/[0-9a-fA-F:.]+)?$/.exec(addr);
return m && (validation.parseIPv4(m[1]) || validation.parseIPv6(m[1]));
});
};
o.write = writeNetworks;
o.datatype = 'ipaddr';
o = s.taboption('advanced', form.Value, 'database_limit', _('Maximum entries'),
_('The maximum amount of entries that should be put into the database, setting the limit to 0 will allow databases to grow indefinitely.'));
o = s.taboption('advanced', form.Flag, 'database_prealloc', _('Preallocate database'),
_('Whether to preallocate the maximum possible database size in memory. This is mainly useful for memory constrained systems which might not be able to satisfy memory allocation after longer uptime periods.'));
o.depends({ 'database_limit': '0', '!reverse': 'true' });
o = s.taboption('advanced', form.Flag, 'database_compress', _('Compress database'),
_('Whether to gzip compress archive databases. Compressing the database files makes accessing old data slightly slower but helps to reduce storage requirements.'));
o = s.taboption('advanced', form.Value, 'database_generations', _('Stored periods'),
_('Maximum number of accounting periods to keep, use zero to keep databases forever.'));
o = s.taboption('advanced', form.Value, 'commit_interval', _('Commit interval'),
_('Interval at which the temporary in-memory database is committed to the persistent database directory.'));
o.value('24h', _('24h - least flash wear at the expense of data loss risk'));
o.value('12h', _('12h - compromise between risk of data loss and flash wear'));
o.value('10m', _('10m - frequent commits at the expense of flash wear'));
o.value('60s', _('60s - commit minutely, useful for non-flash storage'));
o = s.taboption('advanced', form.Value, 'refresh_interval', _('Refresh interval'),
_('Interval at which traffic counters of still established connections are refreshed from netlink information.'));
o.value('30s', _('30s - refresh twice per minute for reasonably current stats'));
o.value('5m', _('5m - rarely refresh to avoid frequently clearing conntrack counters'));
o = s.taboption('advanced', form.Value, 'database_directory', _('Database directory'),
_('Database storage directory. One file per accounting period will be placed into this directory.'));
o = s.taboption('protocol', form.TextValue, '_protocols');
o.rows = 50;
o.load = function(section_id) {
return fs.trimmed('/usr/share/nlbwmon/protocols');
};
o.write = writeProtocols;
o.remove = writeProtocols;
return m.render();
}
});
|