mirror of
https://github.com/caiwx86/small-packages.git
synced 2026-07-31 20:11:29 +08:00
24 lines
690 B
Bash
Executable File
24 lines
690 B
Bash
Executable File
#!/bin/sh
|
|
|
|
CONFIG="luci-app-openvpn-server"
|
|
OVPN_PATH=/var/etc/openvpn-server
|
|
LOG_FILE=${OVPN_PATH}/client.log
|
|
AUTH_FILE=${OVPN_PATH}/auth
|
|
TIME="$(date "+%Y-%m-%d %H:%M:%S")"
|
|
|
|
IP=${untrusted_ip}
|
|
|
|
CORRECT_PASSWORD=$(awk '!/^;/&&!/^#/&&$1=="'${username}'"{print $2;exit}' ${AUTH_FILE})
|
|
if [ "${CORRECT_PASSWORD}" = "" ]; then
|
|
echo "${TIME}: ${username}/${IP} Fail authentication. input password=\"${password}\"." >> ${LOG_FILE}
|
|
exit 1
|
|
fi
|
|
|
|
if [ "${password}" = "${CORRECT_PASSWORD}" ]; then
|
|
echo "${TIME}: ${username}/${IP} Successful authentication." >> ${LOG_FILE}
|
|
exit 0
|
|
fi
|
|
|
|
echo "${TIME}: ${username}/${IP} Fail authentication. input password=\"${password}\"." >> ${LOG_FILE}
|
|
exit 1
|