banner
innei

innei

写代码是因为爱,写到世界充满爱!
github
telegram
twitter

AiFast/OpenWrt/SSRP/ADG DNS diversion/1st layer NAT configuration

This article discusses the configuration of Soft Router as the main router and OpenWrt as the side gateway. OpenWrt also provides DNS ad-blocking and domestic and foreign traffic diversion. The entire network is single-layer NAT and is set to full cone NAT for the operation of PCDN.

Network Environment#

  • Internal network: 10.0.0.0/24
  • External network: PPPoE dial-up
  • Soft Router: 10.0.0.1
  • OpenWrt: 10.0.0.2

Single-layer NAT Configuration#

Since Soft Router is the main router, it provides NAT for the entire internal network. Enable NAT1 type in Soft Router:

NAT1

Enable UPnP in Soft Router and disable UPnP in OpenWrt.

Disable full cone NAT in OpenWrt, disable firewall dynamic masquerading, and enable forwarding.

OpenWrt's dynamic masquerading is NAT, and after enabling it, there will be an additional layer of NAT, so it must be turned off.

After turning off dynamic masquerading, ARP verification may cause inability to access the Internet. It has been tested that when Soft Router is the main router, it does not affect Internet access.

Delete the following firewall rules if they exist:

iptables -t nat -I POSTROUTING -o eth0 -j MASQUERADE

The above firewall rules are also dynamic masquerading and should be deleted.

After the settings are complete, restart OpenWrt.

Verify Single-layer NAT#

Through Soft Router terminal monitoring, if OpenWrt (10.0.0.2) also provides NAT, it cannot see any traffic passing through other terminals in Soft Router. All traffic is sent to 10.0.0.2. If it is not all sent to OpenWrt, it proves to be single-layer NAT.

At this time, only scientific traffic will be displayed in Soft Router through OpenWrt. Domestic traffic is displayed for each corresponding terminal.

Use Dual ADG with SSRP for Domestic and Foreign DNS Diversion#

Configure Dual ADG#

You need to know that this setting does not require SmartDNS and Turbo ACC DNS caching. If enabled, disable them all.

You can directly install luci-app-adguardhome on OpenWrt. After installation, configure the domestic version of ADG.

First, set the redirection mode as the upstream server for dnsmasq.

After entering the ADG management panel, set the domestic DNS. The upstream DNS server settings are as follows (for reference):

https://dns.alidns.com/dns-query
https://doh.pub/dns-query
https://dns.pub/dns-query
tls://dns.pub
tls://dns.alidns.com
tls://dot.pub

Set the Bootstrap DNS server to the local ISP DNS (backup Alibaba Cloud):

211.136.150.66
211.136.112.50
223.5.5.5
223.6.6.6

211.136.150.66 211.136.112.50 are Shanghai Mobile DNS.

Set the speed limit to 0.

Next, configure the second ADG. You can use Docker or install ADG on the second virtual machine. I use the second machine (10.0.0.106) to install ADG.

After installation, configure the DNS to be foreign DNS.

The upstream DNS server settings are as follows (for reference):

https://dns.google/dns-query
tls://dns.google
https://dns.cloudflare.com/dns-query
https://dns.cloudflare.com/dns-query

Set the Bootstrap DNS server to the local ISP DNS (backup Alibaba Cloud):

211.136.150.66
211.136.112.50
223.5.5.5
223.6.6.6

Disable IPv6 resolution (some airports in SSRP do not support IPv6, which may cause inability to access the Internet). There is no speed limit.

Now remember:

  • Domestic DNS: 10.0.0.2:6053 (the port set by ADG)
  • Foreign DNS: 10.0.0.106:6053

Configure dnsmasq#

Go to OpenWrt's "Network" - "DHCP/DNS", and there should only be the address of ADG for DNS forwarding. In my case, it is 127.0.0.1#6053, and there is no other forwarding.

Configure SSRP#

Configure as shown in the figure below:

SSRP Configuration

Select bypass China mainland IP, and fill in the foreign DNS with the foreign diversion ADG. Do not fill in the domestic DNS. If it is already filled in, select "Other" and leave it blank.

Go to "Status" and update the "GFW List" database and the "Domestic IP Range" database.

Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.