Analyse port also on ports other than 53

Signed-off-by: Christian König <ckoenig@posteo.de>
pull/4485/head
Christian König 2 years ago
parent 2b52f92647
commit bcb59159ed
No known key found for this signature in database
GPG Key ID: 4CDA6F249DD2B485

@ -325,7 +325,7 @@ statusFunc() {
else
#get the port pihole-FTL is listening on by using FTL's telnet API
port="$(echo ">dns-port >quit" | nc 127.0.0.1 4711)"
listening="$(lsof -Pni:53)"
listening="$(lsof -Pni:${port})"
if [[ "${port}" == "0" ]]; then
case "${1}" in
"web") echo "-1";;
@ -333,7 +333,8 @@ statusFunc() {
esac
return 0
else
if [[ "${1}" != "web" ]] && [[ "$port" -eq 53 ]]; then
if [[ "${1}" != "web" ]]; then
echo -e " ${TICK} FTL is listening on port ${port}"
analyze_ports "${listening}"
fi
fi
@ -350,8 +351,7 @@ statusFunc() {
# Configs are set
case "${1}" in
"web") echo "$port";;
*) echo -e " ${TICK} Pi-hole blocking is enabled. FTL is listening on port ${port}"
;;
*) echo -e " ${TICK} Pi-hole blocking is enabled";;
esac
else
# No configs were found

Loading…
Cancel
Save