yichya / luci-app-xray

(Almost) full feature Xray client for OpenWrt
Mozilla Public License 2.0
553 stars 328 forks source link

Proxy Settings => LAN Interface #330

Open komushi opened 10 months ago

komushi commented 10 months ago

I am using Raspberry PI 4 with the following interfaces:

  1. Default RJ45 port to connect to internet, interface='wan', device='eth0', bridge device name='br-wan'
  2. Default WIFI to provide wifi connectivity, interface='wifi', device='wlan0'
  3. USB RJ45 to provide lan connectivity, interface='lan', device='eth1'

Below is my /etc/config/network

config interface 'loopback'
    option proto 'static'
    option ipaddr '127.0.0.1'
    option netmask '255.0.0.0'
    option device 'lo'

config interface 'wan'
    option proto 'static'
    option netmask '255.255.255.0'
    option ip6assign '60'
    option ipaddr '192.168.11.8'
    option gateway '192.168.11.1'
    option dns '192.168.11.1'
    option device 'br-wan'

config interface 'wifi'
    option proto 'static'
    option ipaddr '192.168.1.1'
    option netmask '255.255.255.0'
    option device 'wlan0'

config interface 'lan'
    option proto 'static'
    option ipaddr '192.168.2.1'
    option netmask '255.255.255.0'
    option device 'eth1'

config device
    option name 'br-wan'
    option type 'bridge'
    list ports 'eth0'

Here is the question: What do I set in Proxy Settings => LAN Interface?

Thanks

yichya commented 10 months ago

Which network did you choose for your wireless interface?

image