"클라이언트" 모드에서 WiFi를 통해 인터넷 액세스를 제공하는 연결된 클라이언트의 DNS 광고 차단을 무시합니다.

"클라이언트" 모드에서 WiFi를 통해 인터넷 액세스를 제공하는 연결된 클라이언트의 DNS 광고 차단을 무시합니다.

dnsmasq2019-04-19: 로그에 표시되는 일부 설정이나 버그일 수 있다는 결론에 도달했습니다.구성 오류가 거부되었습니다.. 소스 코드를 분석한 후 나중에 이 질문을 업데이트하겠습니다.


광고 차단은 파일을 읽는 "dnsmasq"를 통해 수행되며 hostsOpenWrt 장치에 로그인하면 차단이 예상대로 작동합니다.

PING s0.2mdn.net (0.0.0.0): 56 data bytes
64 bytes from 127.0.0.1: seq=0 ttl=64 time=0.268 ms
...

그러나 OpenWrt 라우터(유선 또는 무선)에 연결된 컴퓨터에서는 차단이 작동하지 않습니다.

danielsokolowski@DANDC-OFFICE:~$ ping s0.2mdn.net

Pinging s0-2mdn-net.l.google.com [172.217.1.166] with 32 bytes of data:
Reply from 172.217.1.166: bytes=32 time=22ms TTL=56
..

몇가지 정보:


root@481:~# cat /etc/resolv.conf
search lan
nameserver 127.0.0.1

root@481:~# route
Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
default         192.168.0.1     0.0.0.0         UG    0      0        0 wlan0
10.4.81.0       *               255.255.255.0   U     0      0        0 br-lan
192.168.0.0     *               255.255.255.0   U     0      0        0 wlan0

root@481:~# netstat -lp | grep dnsmasq
tcp        0      0 192.168.0.103:domain    0.0.0.0:*               LISTEN      1890/dnsmasq
tcp        0      0 localhost:domain        0.0.0.0:*               LISTEN      1890/dnsmasq
tcp        0      0 481.lan:domain          0.0.0.0:*               LISTEN      1890/dnsmasq
...
tcp        0      0 localhost:domain        :::*                    LISTEN      1890/dnsmasq
...
udp        0      0 192.168.0.103:domain    0.0.0.0:*                           1890/dnsmasq
udp        0      0 localhost:domain        0.0.0.0:*                           1890/dnsmasq
udp        0      0 481.lan:domain          0.0.0.0:*                           1890/dnsmasq
udp        0      0 0.0.0.0:bootps          0.0.0.0:*                           1890/dnsmasq
...
root@481:~#

danielsokolowski@DANDC-OFFICE:~$ ipconfig

Windows IP Configuration


...

Ethernet adapter Local Area Connection 2:

   Connection-specific DNS Suffix  . : lan
   Link-local IPv6 Address . . . . . : fe80::d940:8d32:8ecf:38b5%13
   IPv4 Address. . . . . . . . . . . : 10.4.81.10
   Subnet Mask . . . . . . . . . . . : 255.255.255.0
   Default Gateway . . . . . . . . . : 10.4.81.1

...

danielsokolowski@DANDC-OFFICE:~$ ping s0.2mdn.net

Pinging s0-2mdn-net.l.google.com [172.217.164.230] with 32 bytes of data:
Reply from 172.217.164.230: bytes=32 time=17ms TTL=56
Reply from 172.217.164.230: bytes=32 time=29ms TTL=56

관련 정보