Pi-hole and Guest Network

This works perfect for me in the firewall script (sans blocking rules since Tomato firewalls VLANs by default).

## Adding port forwarding for guest network post pi-hole
iptables -I FORWARD -i br1 -p tcp -d 192.168.1.2 -m multiport --dport 53,80,443 -j ACCEPT
iptables -I FORWARD -i br1 -p udp -d 192.168.1.2 -m multiport --dport 53,80,443 -j ACCEPT

Also, are you sure you're using the correct LAN address... shouldn't it be 192.168.x.x instead of 192.0.x.x?

1 Like