mirror of
https://github.com/bol-van/zapret.git
synced 2025-05-24 22:32:58 +03:00
get_reestr_preresolved
This commit is contained in:
45
ipset/get_reestr_preresolved.sh
Executable file
45
ipset/get_reestr_preresolved.sh
Executable file
@@ -0,0 +1,45 @@
|
||||
#!/bin/sh
|
||||
|
||||
IPSET_DIR="$(dirname "$0")"
|
||||
IPSET_DIR="$(cd "$IPSET_DIR"; pwd)"
|
||||
|
||||
. "$IPSET_DIR/def.sh"
|
||||
|
||||
|
||||
TMPLIST="$TMPDIR/list_nethub.txt"
|
||||
URL4="http://list.nethub.fi/reestr_resolved4.txt"
|
||||
URL6="http://list.nethub.fi/reestr_resolved6.txt"
|
||||
|
||||
|
||||
getuser && {
|
||||
[ "$DISABLE_IPV4" != "1" ] && {
|
||||
curl -vH "Accept-Encoding: gzip" -k --fail --max-time 180 --connect-timeout 10 --retry 4 --max-filesize 33554432 "$URL4" | gunzip - >"$TMPLIST" ||
|
||||
{
|
||||
echo ipv4 list download failed
|
||||
exit 2
|
||||
}
|
||||
dlsize=$(LANG=C wc -c "$TMPLIST" | xargs | cut -f 1 -d ' ')
|
||||
if test $dlsize -lt 32768; then
|
||||
echo list is too small. can be bad.
|
||||
exit 2
|
||||
fi
|
||||
zz "$ZIPLIST" <"$TMPLIST"
|
||||
rm -f "$TMPLIST"
|
||||
}
|
||||
[ "$DISABLE_IPV6" != "1" ] && {
|
||||
curl -H "Accept-Encoding: gzip" -k --fail --max-time 180 --connect-timeout 10 --retry 4 --max-filesize 33554432 "$URL6" | gunzip - >"$TMPLIST" ||
|
||||
{
|
||||
echo ipv4 list download failed
|
||||
exit 2
|
||||
}
|
||||
dlsize=$(LANG=C wc -c "$TMPLIST" | xargs | cut -f 1 -d ' ')
|
||||
if test $dlsize -lt 32768; then
|
||||
echo list is too small. can be bad.
|
||||
exit 2
|
||||
fi
|
||||
zz "$ZIPLIST6" <"$TMPLIST"
|
||||
rm -f "$TMPLIST"
|
||||
}
|
||||
}
|
||||
|
||||
"$IPSET_DIR/create_ipset.sh"
|
45
ipset/get_reestr_preresolved_smart.sh
Executable file
45
ipset/get_reestr_preresolved_smart.sh
Executable file
@@ -0,0 +1,45 @@
|
||||
#!/bin/sh
|
||||
|
||||
IPSET_DIR="$(dirname "$0")"
|
||||
IPSET_DIR="$(cd "$IPSET_DIR"; pwd)"
|
||||
|
||||
. "$IPSET_DIR/def.sh"
|
||||
|
||||
|
||||
TMPLIST="$TMPDIR/list_nethub.txt"
|
||||
URL4="http://list.nethub.fi/reestr_smart4.txt"
|
||||
URL6="http://list.nethub.fi/reestr_smart6.txt"
|
||||
|
||||
|
||||
getuser && {
|
||||
[ "$DISABLE_IPV4" != "1" ] && {
|
||||
curl -vH "Accept-Encoding: gzip" -k --fail --max-time 180 --connect-timeout 10 --retry 4 --max-filesize 33554432 "$URL4" | gunzip - >"$TMPLIST" ||
|
||||
{
|
||||
echo ipv4 list download failed
|
||||
exit 2
|
||||
}
|
||||
dlsize=$(LANG=C wc -c "$TMPLIST" | xargs | cut -f 1 -d ' ')
|
||||
if test $dlsize -lt 32768; then
|
||||
echo list is too small. can be bad.
|
||||
exit 2
|
||||
fi
|
||||
zz "$ZIPLIST" <"$TMPLIST"
|
||||
rm -f "$TMPLIST"
|
||||
}
|
||||
[ "$DISABLE_IPV6" != "1" ] && {
|
||||
curl -H "Accept-Encoding: gzip" -k --fail --max-time 180 --connect-timeout 10 --retry 4 --max-filesize 33554432 "$URL6" | gunzip - >"$TMPLIST" ||
|
||||
{
|
||||
echo ipv4 list download failed
|
||||
exit 2
|
||||
}
|
||||
dlsize=$(LANG=C wc -c "$TMPLIST" | xargs | cut -f 1 -d ' ')
|
||||
if test $dlsize -lt 32768; then
|
||||
echo list is too small. can be bad.
|
||||
exit 2
|
||||
fi
|
||||
zz "$ZIPLIST6" <"$TMPLIST"
|
||||
rm -f "$TMPLIST"
|
||||
}
|
||||
}
|
||||
|
||||
"$IPSET_DIR/create_ipset.sh"
|
Reference in New Issue
Block a user