After successfully booting openwrt 24.10.2 on truenas 25.04.2 container, I uninstalled dnsmasq and installed dnsmasq-full, but that’s where the problem comes in, I use MacVlan br0.
Everything was fine when I first installed it, but when I enabled the luci-app-passwall2 plugin, GitHub - xiaorouji/openwrt-passwall2
I encountered an error.
~ # cat /etc/config/network
config interface 'loopback'
option ifname 'lo'
option proto 'static'
option ipaddr '127.0.0.1'
option netmask '255.0.0.0'
config interface 'lan'
option ifname 'eth0'
option proto 'static'
option ipaddr '10.0.0.99'
option netmask '255.255.255.0'
option gateway '10.0.0.1'
list dns '10.0.0.1'
~ # cat /etc/config/dhcp
config dnsmasq
option domainneeded 1
option boguspriv 1
option filterwin2k 0 # enable for dial on demand
option localise_queries 1
option rebind_protection 1 # disable if upstream must serve RFC1918 addresses
option rebind_localhost 1 # enable for RBL checking and similar services
#list rebind_domain example.lan # whitelist RFC1918 responses for domains
option local '/lan/'
option domain 'lan'
option expandhosts 1
option nonegcache 0
option cachesize 1000
option authoritative 1
option readethers 1
option leasefile '/tmp/dhcp.leases'
option resolvfile '/tmp/resolv.conf.d/resolv.conf.auto'
#list server '/mycompany.local/1.2.3.4'
option nonwildcard 1 # bind to & keep track of interfaces
#list interface br-lan
#list notinterface lo
#list bogusnxdomain '64.94.110.11'
option localservice 1 # disable to allow DNS requests from non-local subnets
option ednspacket_max 1232
option filter_aaaa 0
option filter_a 0
#list addnmount /some/path # read-only mount path to expose it to dnsmasq
config dhcp lan
option interface lan
option start 100
option limit 150
option leasetime 12h
config dhcp wan
option interface wan
option ignore 1
Are you actually on TrueNAS 25.10 Nightlies or did you post wrong version? Fangtooth, 25.04.x is the newest release. Electric Eel, 24.10 is the previous but still supported version
I realize that 25.04.2 has some changes for containers and VMs, but the openwrt image hasn’t changed, the problem is with the openwrt 24.10 image, I can’t override dnsmasq with dnsmasq-full
Someone else will have to comment. Only think I can think of is to check the dhcp config changes. You can try pinging the ip address, 64.226.122.113 that was in the data earlier. That will at least tell you if its just dhcp and no networking or no DNS lookup
Not deleting modified conffile /etc/config/dhcp.
~ # mv /etc/config/dhcp /etc/config/dhcp-old
There have been some changes to the truenas 25.04.2 container. I completely re-edited the content, but the problem still persists. I found a solution on the LXC forum, but it is still unstable. Can anyone here help?