How can I access to router B's luci from PC?
Router A is connected to modem via wire
Router B is connected to Router A via 5ghz wifi
Router A's firewall config
config defaults
option input 'ACCEPT'
option output 'ACCEPT'
option forward 'REJECT'
option synflood_protect '1'
option flow_offloading '1'
option flow_offloading_hw '1'
config zone
option name 'lan'
option input 'ACCEPT'
option output 'ACCEPT'
option forward 'ACCEPT'
list network 'lan'
config zone
option name 'wan'
option output 'ACCEPT'
option mtu_fix '1'
option forward 'ACCEPT'
list network 'wan'
list network 'wan6'
option input 'ACCEPT'
option masq '1'
config forwarding
option src 'lan'
option dest 'wan'
config zone
option input 'ACCEPT'
option output 'ACCEPT'
option forward 'ACCEPT'
list network 'wan'
list network 'wan6'
option name 'wwan'
config forwarding
option src 'wan'
option dest 'wwan'
config forwarding
option src 'wwan'
option dest 'lan'
Router B's firewall rule to accept all requests from 192.168.* to wan
config rule
option target 'ACCEPT'
option src 'wan'
list src_ip '192.168.1.0/16'
option name 'Allow-192.168.1.0/16'
list proto 'all'
option dest '*'