I installed Openwrt on an old netbook. I'd like it to work as a portable router when I'm travelling. I set its WiFi NIC (a dongle wifi actually) as a WAN port and the only ethernet interface it has as the LAN/BR port. I managed to make everything work as I wanted so far.
However, I'm spending a lot of time trying to figure out how exactly the DNS service works on OpenWRT. For the time being, I am practicing and tinkering with it on my home LAN, so Openwrt gets its WAN IP (192.168.3.99) from my main home router (192.168.3.1) . I set 192.168.33.1 as the OpenWRT's LAN IP (LAN subnet 192.168.33.0/24) . I even managed to install Adguard and make it filter webpages requested by clients. It seems to be working properly. However, if I run a nslookup it shows my main router IP as server DNS:
If you run the nslookup from the router itself, it will need to use an external DNS server -- usually upstream (in this case the main router as advertised via DHCP), since if it self-referenced, it wouldn't be able to do any lookups. By default, a device connected downstream of your OpenWrt device will use the OpenWrt address via the advertisement from DHCP on OpenWrt.
Does this mean your question is now answered?
Or do you mean to say that the previous nslookup you did was on a PC and was using 192.168.3.1 as the DNS server?
config interface 'wwanmk'
option proto 'dhcp'
option peerdns '0'
list dns '1.1.1.1'
list dns '8.8.4.4'
in the /etc/config/network file otherwise the DNS queries from the router itself wouldn't work.
Anyway, the problem with the clients on the LAN side is still there:
By the way, I connected another pc PC with Windows 10 running on it to my Openwrt router. It gets an IP from the Openwrt, and it can ping ip like 1.1.1.1, BUT it can't resolve names. Definitely something wrong with the DNS setup.
Nslookup on the windows machine shows: server: unknown
Please run the following commands (copy-paste the whole block) and paste the output here, using the "Preformatted text </> " button:
Remember to redact passwords, MAC addresses and any public IP addresses you may have
First take out everything you've configured related to external DNS servers, and start over. The only place you should have an external DNS server is on the wan interface that is presently in use.
In particular you're trying (in at least two places) to point at the router's own IP 192.168.33.1 as an external DNS server, clearly that is not going to work.
I see two wwan interfaces, which one is actually used? Get rid of the other one. Where is the 192.168.3 network in relation to all of this? The two Ethernet ports are bridged together. If you're using Ethernet as the wan, it's not actually routing, and it's going to allow DHCP requests from a client on one Ethernet to bridge through to the other one to sometimes (it's a race condition) be answered by the .3 router.
Finally of course if your endpoint client has a DNS server statically configured or the OS is otherwise determined to use a different DNS server, the router can't stop it from making that request.
Would that be the DNS IPs that OPenWRT uses for itself?
I want my client to point to Adguard installed on Openwrt (192.168.33.1)
As a portable router the WAN would be the wireless interface set as a client
192.168.3.0/24 is my Home LAN subnet
No dns setup on the clients.
Sorry I am totally new to OpenWRT. I know a bit better Mikrotik devices; setting up the same DNS configurations on them takes me just a bunch of seconds.
I don't know anything about Adguard. First get regular DNS working and understand how it works.
By default, OpenWrt advertises itself as the DNS server for the LAN (and guest lan and iot lan etc if configured). The internal dnsmasq process answers DNS requests sent to the router's IP. If a site is requested that dnsmasq does not know about, dnsmasq looks it up by creating a request from the router to a server outside the router, usually on the wan.
If dnsmasq is to consult another process on the router (such as adguard) it should go to 127.0.0.1 with a port number that process is listening to, which can't be the default 53 since that is where LAN clients expect to find dnsmasq.
Are you using a wireless connection to home now? And there should not be two wwans, just one that you reconfigure to connect to whatever wireless Internet is available as you travel.
I'd recommend that you reset to defaults so that your device is in a known state. Don't do anything with AGH or other DNS solutions for the moment.
Once you've got the default state, create a wwan that is linked with the wan firewall zone, and a corresponding interface and a STA mode wifi configuration to form the uplink.
When that is done, your ethernet connected devices should route through your OpenWrt router and DNS should happen via the OpenWrt router address.
Well you could, but remote debugging your setup is going to take longer than you starting from scratch.
If you want to force send a certain DNS to clients on DHCP (without them requesting it), use list dhcp_option_force '6,192.168.33.1' in the config dhcp 'lan' section and restart dnsmasq. Release/renew the lease on the client and it should get the proper 192.168.33.1 as DNS server.
As said before, the PC LAN is probably bridged to the .3 network instead of being routed to it. What happens if you disconnect the upstream network entirely, so the only thing the PC has is the OpenWrt router, then restart the PC network and try a DNS query. That will of course fail to find an IP, but what you are looking for is that it uses the OpenWrt router as the server.
Are you doing that just to confuse us? Can you please keep it so the OpenWrt router is 192.168.33.1 and the upstream network 192.168.3.0?
It is unnecessary to add an option 6 advertising the router's own IP. By default, dnsmasq sends option 6 with the router's own IP.