Hi!
I have a number of network interfaces (guest, IoT, etc) set up in addition to lan interface, all was tested to work smoothly.
After installing AdGuard Home (port 53, dnsmasq moved to port 54) as described in opkg AdGuard Home wiki, no more connectivity for network interfaces, only for lan interface.
Extract of configs.
dhcp:
config dnsmasq
option domainneeded '1'
option localise_queries '1'
option local '/lan/'
option domain 'lan'
option expandhosts '1'
option authoritative '1'
option readethers '1'
option leasefile '/tmp/dhcp.leases'
option resolvfile '/tmp/resolv.conf.d/resolv.conf.auto'
option localservice '1'
option ednspacket_max '1232'
option cachesize '1000'
option rebind_protection '0'
option port '54'
list server '192.168.1.35'
list interface 'lan'
list interface 'guest'
list interface 'iot'
list interface 'iot2wan'
list interface 'tv'
config dhcp 'lan'
option interface 'lan'
option leasetime '12h'
option dhcpv4 'server'
option start '100'
option limit '150'
list dhcp_option '6,192.168.1.35'
list dhcp_option '3,192.168.1.35'
config dhcp 'wan'
option interface 'wan'
option ignore '1'
config odhcpd 'odhcpd'
option maindhcp '0'
option leasefile '/tmp/hosts/odhcpd'
option leasetrigger '/usr/sbin/odhcpd-update'
option loglevel '4'
config dhcp 'GUEST'
option interface 'GUEST'
option start '100'
option limit '150'
option leasetime '12h'
option dhcpv4 'server'
list dhcp_option '6,192.168.1.35'
list dhcp_option '3,192.168.1.35
firewall:
config zone
option name 'GuestZone'
option input 'REJECT'
option output 'ACCEPT'
option forward 'REJECT'
list network 'GUEST'
config forwarding
option src 'GuestZone'
option dest 'wan'
config rule
option name 'Guest-DHCP-DNS'
option src 'GuestZone'
option dest_port '53 67 68'
option target 'ACCEPT'
list dest_ip '192.168.1.35'
option dest 'lan'
network:
config interface 'GUEST'
option device 'br-lan.21'
option proto 'static'
option ipaddr '192.168.21.1'
option netmask '255.255.255.0'
option defaultroute '0'
AGH yaml:
bind_host: 192.168.1.35
bind_port: 8080
beta_bind_port: 0
users:
- name:
password:
auth_attempts: 5
block_auth_min: 15
http_proxy: ""
language: ""
debug_pprof: false
web_session_ttl: 720
dns:
bind_hosts:
- 127.0.0.1
- 192.168.1.35
- 192.168.21.1
port: 53
I am lost - cannot figure out which setting / settings I am getting wrong.
Any hints?