Help - stubby CloudFlare DoT not working on 22.03

Hi all, can anyone help with with CloudFare DoT isn't working?

stubby is installed and active

Going to 1.1.1.1/help says DoT is not working.

I have previously had it working on 22.03 rc6

vim /etc/config/dhcp:


        option localise_queries '1'
        option rebind_protection '1'
        option rebind_localhost '1' 
        option local '/lan/'        
        option domain 'lan'         
        option expandhosts '1'     
        option authoritative '1'
        option readethers '1'   
        option leasefile '/tmp/dhcp.leases'
        option localservice '1'            
        option ednspacket_max '1232'       
        option noresolv '1'                
        list server '127.0.0.1#5453'
        list server '0::1#5453'     
                                    
config dhcp 'lan'                   
        option interface 'lan' 
        option start '100'    
        option limit '150'    
        option leasetime '12h'
        option dhcpv4 'server'
        option dhcpv6 'server'
        option ra 'server'    
        option ra_slaac '1'   
        list ra_flags 'managed-config'
        list ra_flags 'other-config'  
                                      
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'

vim /etc/config/network:

config interface 'loopback'
        option device 'lo'
        option proto 'static'
        option ipaddr '127.0.0.1'
        option netmask '255.0.0.0'

config globals 'globals'
        option ula_prefix 'fd89:a309:97a7::/48'

config device
        option name 'br-lan'
        option type 'bridge'
        list ports 'eth1'

config interface 'lan'
        option device 'br-lan'
        option proto 'static'
        option ipaddr '192.168.1.1'
        option netmask '255.255.255.0'
        option ip6assign '60'

config interface 'wan'
        option device 'eth0'
        option proto 'dhcp'
        option peerdns '0'
        list dns '1.1.1.1'
        list dns '1.0.0.1'

config interface 'wan6'
        option device 'eth0'
        option proto 'dhcpv6'

config device
        option name 'wlan3'

vim /etc/config/firewall:

config defaults
        option input 'ACCEPT'
        option output 'ACCEPT'
        option forward 'REJECT'
        option synflood_protect '1'

config zone
        option name 'lan'
        option input 'ACCEPT'
        option output 'ACCEPT'
        option forward 'ACCEPT'
        list network 'lan'

config zone
        option name 'wan'
        option input 'REJECT'
        option output 'ACCEPT'
        option forward 'REJECT'
        option masq '1'
        option mtu_fix '1'
        list network 'wan'
        list network 'wan6'

config forwarding
        option src 'lan'
        option dest 'wan'

config rule
        option name 'Allow-DHCP-Renew'
        option src 'wan'
        option proto 'udp'
        option dest_port '68'
        option target 'ACCEPT'
        option family 'ipv4'

I re-flashed 22.03 from scratch and it is working again.

Bizzare

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.