| 3 | | On GLiNet X300B has 2 RJ-45 port one for LAN the other for WAN. We want to use both RJ-45 as LAN port. We edit '''/etc/config/network'''. |
| | 3 | On GLiNet X300B has 2 RJ-45 port one for LAN the other for WAN. We want to use both RJ-45 as LAN port. We edit '''/etc/config/network'''. [[br]] |
| | 4 | WAN port was on '''eth1''' so we just add eth1 to br-lan. |
| | 5 | {{{ |
| | 6 | root@OpenWrt:~# brctl addif br-lan eth1 |
| | 7 | root@OpenWrt:~# brctl show |
| | 8 | bridge name bridge id STP enabled interfaces |
| | 9 | br-lan 7fff.9483c41c5c43 no wlan0 |
| | 10 | eth1 |
| | 11 | eth0.1 |
| | 12 | }}} |
| | 13 | To make it permanent bridge, use following config. |