1

I try to run dnsmasq which have to provide DHCP + BOOTP, but dnsmask doesn't open 67\udp port when it is running in container.

With similar configuration file on the host system it works properly.

I run container with flags -net host and -privileged, but it doesn't help me.

Why dnsmasq doesn't want to open 67/udp (BOOTP server) into container? How I able to fix it for doing that?

Oleg Ilyin
  • 161
  • 1
  • 16

1 Answers1

1

the root cause isn't in docker configuration. I missed to add configuration file /etc/dnsmasq.d/default.conf with required parameters. After adding it 67 port was opened and exposing began works

Oleg Ilyin
  • 161
  • 1
  • 16