zapret/ipset/create_ipset.sh

27 lines
610 B
Bash
Raw Normal View History

2016-02-15 16:34:45 +03:00
#!/bin/sh
# create ipset from resolved ip's
SCRIPT=$(readlink -f $0)
EXEDIR=$(dirname $SCRIPT)
. "$EXEDIR/def.sh"
2016-03-04 12:03:34 +03:00
create_ipset()
{
ipset flush $1 2>/dev/null || ipset create $1 hash:ip
for f in "$2" "$3"
2016-02-15 16:34:45 +03:00
do
2016-03-04 12:03:34 +03:00
[ -f "$f" ] && {
2016-11-26 20:01:33 +03:00
echo Adding to ipset $1 : $f
if [ -f "$ZIPLIST_EXCLUDE" ] ; then
2017-06-16 12:27:08 +03:00
grep -vxFf $ZIPLIST_EXCLUDE "$f" | sort -u | while read ip; do echo add $1 $ip; done | ipset -! restore
2016-11-26 20:01:33 +03:00
else
sort -u "$f" | while read ip; do echo add $1 $ip; done | ipset -! restore
fi
2016-02-15 16:34:45 +03:00
}
done
2016-03-04 12:03:34 +03:00
}
create_ipset $ZIPSET $ZIPLIST $ZIPLIST_USER
create_ipset $ZIPSET_IPBAN $ZIPLIST_IPBAN $ZIPLIST_USER_IPBAN