relay_configuration
I followed this document to carry out openwrt's network settings, wireless settings, firewall settings, and restarted the device after completing all the settings, but when my mobile phone and computer were connected to the WiFi signal of the wireless relay, I found that I could not access the Internet, but the ping gateway and ping Bing in the repeater were all right, in addition, I rechecked every step from the beginning, and found that after connecting to the superior WiFi, I have not used the relay bridge for bridging, and my network is normal, The mobile phone connected to the repeater, the computer can access the Internet normally, in addition, in addition to the above attempts, I also changed the wwan to dhcp to obtain the IP of the superior WiFi, but it is useless, does anyone understand why or have you encountered this problem?
/etc/config/wireless
config wifi-device 'radio0'
option type 'mac80211'
option path 'platform/ahb/18100000.wmac'
option channel 'auto'
option band '2g'
option htmode 'HT20'
option disabled '0'
option country 'CN'
config wifi-iface 'default_radio0'
option device 'radio0'
option network 'lan'
option mode 'ap'
option ssid 'zhongjitest'
option encryption 'psk2'
option key '12345678'
config wifi-iface 'repeater'
option device 'radio0'
option network 'wwan'
option mode 'sta'
option key '12345678'
option encryption 'psk2'
option ssid 'MyWiFi'
option disabled '0'
/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 globals 'globals'
option ula_prefix 'fd17:0d26:357d::/48'
config interface 'lan'
option type 'bridge'
option ifname 'eth1'
option proto 'static'
option ipaddr '192.168.1.1'
option netmask '255.255.255.0'
option ip6assign '60'
config interface 'relaybridge'
option proto 'relay'
list network 'lan'
list network 'wwan'
option ipaddr '192.168.110.72'
config interface 'wwan'
option _orig_ifname 'wlan0'
option _orig_bridge 'false'
option proto 'static'
option ipaddr '192.168.110.72'
option netmask '255.255.255.0'
option gateway '192.168.110.1'
option broadcast '192.168.110.255'
option dns '192.168.110.1'
/etc/config/firewall
config defaults
option syn_flood 1
option input ACCEPT
option output ACCEPT
option forward REJECT
option fullcone 0
config zone
option name lan
list network 'lan'
list network 'wwan'
option input ACCEPT
option output ACCEPT
option forward ACCEPT