First install :FTL is offline

Please follow the below template, it will help us to help you!

Expected Behaviour:

[Replace this text with what you think should be happening]

Normal running
Activity

Actual Behaviour:

[replace this text with what is actually happening]

Despite the various research and correction tests:
pi-hole does not work, no request
FTL is offline
#pihole-FTL
dnsmasq: failed to create listening socket for port 53: Address already in use

Hi

Debug Token:

[Replace this text with the debug token provided from running pihole -d (or running the debug script through the web interface]

q4q20jccs9

Your debug log shows another DNS process already running on port 53, so pihole-FTL cannot bind to that port.

*** [ DIAGNOSING ]: Ports in use
[53] is in use by connmand (https://discourse.pi-hole.net/t/hardware-software-requirements/273#ports)
[53] is in use by connmand (https://discourse.pi-hole.net/t/hardware-software-requirements/273#ports)

You are running an unsupported OS as well. Updating to a supported version (I.e. Stretch or Buster) should resolve this problem.

*** [ DIAGNOSING ]: Operating system
[✓] Debian GNU/Linux 8 (jessie)

Conman is acting as a DNS proxy conflicting with the pihole-FTL binary.
Checkout the "--nodnsproxy" directive on the man page:

http://manpages.ubuntu.com/manpages/trusty/man8/connman.8.html

I believe Jessie still uses System-V to manage services/daemons.
Look for a connmand Bash script in below folder:

/etc/init.d/

Edit the script file manually and add that "--nodnsproxy" argument to the line with the connmand executable (which connmand).

Restart conmand:

sudo service <CONNMAND_SCRIPT_NAME> restart

Or

sudo /etc/init.d/<CONNMAND_SCRIPT_NAME> restart

Restart Pi-hole:

sudo service pihole-FTL restart

Or:

sudo /etc/init.d/pihole-FTL restart

And check ports used by Pi-hole:

sudo netstat -nltup | grep 'Proto\|:53 \|:67 \|:80 \|:471[1-8] '

Note that Jessie is no longer supported either by Raspbian or by Pi-hole.

https://endoflife.software/operating-systems/linux/debian

https://docs.pi-hole.net/main/prerequesites/

1 Like

Hello,

PI-hole is now operational

FTL OK

thank you for the information

My changes :

Create the folder /etc/systemd/system/connman.service.d/ and add the file disable_dns_proxy.conf:

/etc/systemd/system/connman.service.d/disable_dns_proxy.conf

[Service]

ExecStart=

ExecStart=/usr/bin/connmand -n --nodnsproxy

1 Like

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.