diff options
author | Jo-Philipp Wich <jo@mein.io> | 2017-07-28 15:57:44 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2017-07-28 16:26:42 +0200 |
commit | 0fe93fc3a3c9402a5d0af4415ed140df20f14953 (patch) | |
tree | 0ee17eefdec9efc455ccb896f171f1bc73cc3a25 /applications/luci-app-nlbwmon/root | |
parent | ee6110b3ac9433484045b61604a86f9917d8f279 (diff) |
luci-app-nlbwmon: new package
This commit introduces luci-app-nlbwmon, a frontend for nlbwmon, the
lightweight NetLink BandWidth Montor.
The nlbwmon daemon gathers per-host traffic statistics by querying netlink
accounting data. Due to this approach, the executable is very small and does
not rely on libpcap and CPU intensive raw sockets to monitor traffic.
Depends on PR https://github.com/openwrt/packages/pull/4646
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'applications/luci-app-nlbwmon/root')
-rw-r--r-- | applications/luci-app-nlbwmon/root/etc/uci-defaults/40_luci-nlbwmon | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/applications/luci-app-nlbwmon/root/etc/uci-defaults/40_luci-nlbwmon b/applications/luci-app-nlbwmon/root/etc/uci-defaults/40_luci-nlbwmon new file mode 100644 index 000000000..c9771779e --- /dev/null +++ b/applications/luci-app-nlbwmon/root/etc/uci-defaults/40_luci-nlbwmon @@ -0,0 +1,11 @@ +#!/bin/sh + +uci -q batch <<-EOF >/dev/null + delete ucitrack.@nlbwmon[-1] + add ucitrack nlbwmon + set ucitrack.@nlbwmon[-1].init=nlbwmon + commit ucitrack +EOF + +rm -f /tmp/luci-indexcache +exit 0 |