mirror of
https://github.com/openwrt/packages.git
synced 2026-01-09 07:40:19 +04:00
addrwatch: new package
Maintainer: Ondrej Caletka / @Oskar456 Compile tested: TurrisOS 3.1 (fork of OpenWRT Chaos Calmer), Trunk (both uClibC and musl) Run tested: mpc85xx - Turris 1.0 - TurrisOS - no problems observed Upstream: https://github.com/fln/addrwatch / @fln Description: This is a tool similar to arpwatch. It's main purpose is to monitor network and log discovered ethernet/ip pairings. The package has been UCIfied, care has been taken to reload the deamon every time an interface goes up or down. Signed-off-by: Ondřej Caletka <ondrej@caletka.cz>
This commit is contained in:
12
net/addrwatch/files/addrwatch.config
Normal file
12
net/addrwatch/files/addrwatch.config
Normal file
@@ -0,0 +1,12 @@
|
||||
|
||||
config addrwatch
|
||||
option disabled '0'
|
||||
list interface 'lan'
|
||||
#list interface 'wan'
|
||||
#option syslog '1'
|
||||
#option verbose '0'
|
||||
#option output '/var/log/addrwatch'
|
||||
#list blacklist '192.168.1.1'
|
||||
#option hashsize '1'
|
||||
#option ratelimit '-1'
|
||||
|
||||
74
net/addrwatch/files/addrwatch.init
Normal file
74
net/addrwatch/files/addrwatch.init
Normal file
@@ -0,0 +1,74 @@
|
||||
#!/bin/sh /etc/rc.common
|
||||
# Copyright (C) 2016 OpenWrt.org
|
||||
|
||||
START=50
|
||||
USE_PROCD=1
|
||||
|
||||
. /lib/functions/network.sh
|
||||
|
||||
validate_section_addrwatch() {
|
||||
uci_validate_section addrwatch addrwatch "${1}" \
|
||||
'disabled:bool:0' \
|
||||
'interface:list(string):lan' \
|
||||
'syslog:bool:1' \
|
||||
'output:string' \
|
||||
'quiet:bool:0' \
|
||||
'verbose:bool:0' \
|
||||
'ipv4only:bool:0' \
|
||||
'ipv6only:bool:0' \
|
||||
'blacklist:list(or(ip4addr,ip6addr))' \
|
||||
'hashsize:range(1,65536):1024'\
|
||||
'ratelimit:integer:3600'
|
||||
return $?
|
||||
}
|
||||
|
||||
start_instance() {
|
||||
local cfg="$1"
|
||||
local disabled interface syslog output quiet verbose ipv4only ipv6only
|
||||
local blacklist hashsize ratelimit
|
||||
local netdevs=""
|
||||
|
||||
validate_section_addrwatch "${cfg}" || {
|
||||
echo "validation of config $cfg failed"
|
||||
return 1
|
||||
}
|
||||
[ $disabled -ne 0 ] && return 1
|
||||
|
||||
for iface in $interface; do
|
||||
local netdev
|
||||
network_get_physdev netdev "${iface}"
|
||||
append netdevs "${netdev}"
|
||||
done
|
||||
|
||||
procd_open_instance
|
||||
procd_set_param command /usr/sbin/addrwatch
|
||||
[ "${syslog}" -eq 1 ] && procd_append_param command --syslog
|
||||
[ -n "${output}" ] && procd_append_param command --output "$output"
|
||||
[ "$quiet" -eq 1 ] && procd_append_param command --quiet
|
||||
[ "$verbose" -eq 1 ] && procd_append_param command --verbose
|
||||
[ "$ipv4only" -eq 1 ] && procd_append_param command --ipv4only
|
||||
[ "$ipv6only" -eq 1 ] && procd_append_param command --ipv6only
|
||||
[ -n "$hashsize" ] && procd_append_param command --hashsize "$hashsize"
|
||||
[ -n "$ratelimit" ] && procd_append_param command --ratelimit "$ratelimit"
|
||||
for blitem in $blacklist; do
|
||||
procd_append_param command "--blacklist=${blitem}"
|
||||
done
|
||||
procd_append_param command $netdevs
|
||||
procd_set_param netdev $netdevs
|
||||
procd_set_param respawn
|
||||
procd_open_trigger
|
||||
for iface in $interface; do
|
||||
procd_add_interface_trigger "interface.*" ${iface} /etc/init.d/addrwatch reload
|
||||
done
|
||||
procd_close_trigger
|
||||
procd_close_instance
|
||||
}
|
||||
|
||||
start_service() {
|
||||
config_load 'addrwatch'
|
||||
config_foreach start_instance 'addrwatch'
|
||||
}
|
||||
|
||||
service_triggers() {
|
||||
procd_add_reload_trigger 'addrwatch'
|
||||
}
|
||||
Reference in New Issue
Block a user