1
0
mirror of https://github.com/pi-hole/pi-hole synced 2024-11-18 14:18:15 +00:00

Change netstat to lsof.

This commit is contained in:
Dan Schaper 2016-09-28 09:51:14 -07:00
parent edd7f28104
commit 36e10595cc

View File

@ -209,9 +209,10 @@ function portCheck {
echo "######## Open Port Information #########" >> ${DEBUG_LOG}
echo "############################################################" >> ${DEBUG_LOG}
echo "::: Writing local server ports to logfile"
echo "::: Detecting local server port 80 and 53 processes."
${SUDO} netstat -tulpn >> ${DEBUG_LOG}
${SUDO} lsof -i :80 >> ${DEBUG_LOG}
${SUDO} lsof -i :53 >> ${DEBUG_LOG}
echo >> ${DEBUG_LOG}
}