Problems with DNSMasq in Ubuntu 18

0

I'm creating a web server in Ubuntu , I installed the DNSmasq and I'm having problems with port 53 .

I can not find a solution, can you help me out?

P.D.: In the Virtual Box configuration, in the networks section, I'm using the Bridge Adapter option (in case it has something to do)

    
asked by Antonio 31.08.2018 в 10:57
source

1 answer

0

You should disable the systemd-resolv process that you can see when executing the command (check which process is listening on port 53):

sudo netstat -tupln | grep -w LISTEN

To disable that service you must edit the configuration file /etc/systemd/resolved.conf there you must add or edit the flag DNSStubListener=no reboots and you can run your service dnsmasq without problem.

    
answered by 20.10.2018 в 00:23