If You are using webGUI:
Network-> interfaces->(select one interface) -> Edit -> physical settings
... here you can setup your bridge.

Or you can edit you config files:

root@OpenWrt:/etc/config# cat network

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

config interface 'lan'
        option type 'bridge'
        option proto 'static'
        option netmask '255.255.... or whatever'
        option _orig_ifname 'eth0 wlan0'
        option _orig_bridge 'true'
        option ifname 'eth0'
        option ipaddr '192.168.... or whatever'
        option gateway '192.168... or whatever'

Regards

---
​Andrés Gómez
_______________________________________________
openwrt-users mailing list
[email protected]
https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-users

Reply via email to