<div dir="ltr">Hi all, <span style="font-size:12.8000001907349px">I am trying to have Dnsmasq on a bridge ( br0 ) and also have it serve as the DHCP server. Traffic is going through the bridge but devices connected to eth1 don't have DHCP and DNS settings traversing. How to setup dnsmasq on a bridge so that it is transparent but still acts as a dhcp server and sets dns settings to all devices connected to eth1 ?</span><div style="font-size:12.8000001907349px"><br></div><div style="font-size:12.8000001907349px">Here is my current setup :</div><div style="font-size:12.8000001907349px"><br></div><span style="font-size:12.8000001907349px"># etc/network/interfaces</span><div style="font-size:12.8000001907349px"><pre style="white-space:pre-wrap;color:rgb(0,0,0)">iface eth0 inet manual
iface eth1 inet manual
iface br0 inet static
bridge_ports eth0 eth1
address 192.168.1.1</pre><div><br></div><div><br></div><div>#dnsmasq.conf</div><div><pre style="white-space:pre-wrap;color:rgb(0,0,0)">domain-needed
bogus-priv
no-resolv
no-poll
listen-address=127.0.0.1
listen-address=192.168.1.1
interface=br0
bind-interfaces</pre><pre style="white-space:pre-wrap;color:rgb(0,0,0)"><pre style="white-space:pre-wrap">dhcp-range=lan,192.168.1.5,192.168.1.500,255.255.255.0,5m
# broadcast address (28)
dhcp-option=lan,28,192.168.1.255
# gateway address (3)
dhcp-option=lan,3,192.168.1.1
# DNS server (6)
dhcp-option=lan,6,192.168.1.1
dhcp-authoritative</pre>
server=8.8.8.8
server=8.8.4.4</pre></div></div></div>