Answer the question
In order to leave comments, you need to log in
CentOS 7.6 why do hosts.deny and hosts.allow behave like this?
Axis CentOS 7.6
The task is to allow any connections to the server only from the specified countries.
What I did: I registered it in the
file and there are no more rules there . I registered it in the
file and there are no more records there either.
The file contains this:hosts.deny
ALL: ALL
hosts.allow
ALL: ALL: spawn /opt/geoip.sh %a
/opt/geoip.sh
#!/bin/bash
# UPPERCASE space-separated country codes to ACCEPT
ALLOW_COUNTRIES="RU UA"
if [ $# -ne 1 ]; then
echo "Usage: `basename $0` <ip>" 1>&2
exit 0 # return true in case of config issue
fi
COUNTRY=`/usr/bin/geoiplookup $1 | awk -F ": " '{ print $2 }' | awk -F "," '{ print $1 }' | head -n 1`
&& RESPONSE="ALLOW" || RESPONSE="DENY"
if [ $RESPONSE = "ALLOW" ]
then
logger "$RESPONSE connection from $1 ($COUNTRY)"
exit 0
else
logger "$RESPONSE connection from $1 ($COUNTRY)"
exit 1
fi
Answer the question
In order to leave comments, you need to log in
https://ubuntuforums.org/showthread.php?t=784404
for example that's why. Apache does not use these files.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question