Update Extreme Networks WS-AP3825I - How to flash with OpenWRT
parent
76fefdf053
commit
dc632ed179
@ -77,4 +77,30 @@ uci set network.lan.ipaddr=<ip address> && uci commit network && /etc/init.d/net
|
||||
```
|
||||
|
||||
## Setting up the AP as a bridge
|
||||
This devices do not need to serve out addresses. Follow [this guide](https://openwrt.org/docs/guide-user/network/wifi/wifiextenders/bridgedap) to set this up properly.
|
||||
This devices do not need to serve out addresses. Follow [this guide](https://openwrt.org/docs/guide-user/network/wifi/wifiextenders/bridgedap) to set this up properly. Summary of our particular changes below.
|
||||
|
||||
### Configuring the WiFi
|
||||
Modify `/etc/config/wireless` with the following. Be sure to update the network key. Leave the `wifi-device` sections as is -- only update the `wifi-iface` entries.
|
||||
|
||||
```
|
||||
config wifi-iface 'default_radio0'
|
||||
option device 'radio0'
|
||||
option network 'lan'
|
||||
option mode 'ap'
|
||||
option ssid 'crimsonFi'
|
||||
option encryption 'sae'
|
||||
option key '<encryption key>'
|
||||
```
|
||||
|
||||
...
|
||||
|
||||
```
|
||||
config wifi-iface 'default_radio1'
|
||||
option device 'radio1'
|
||||
option network 'lan'
|
||||
option mode 'ap'
|
||||
option ssid 'google how make internet work'
|
||||
option encryption 'psk2'
|
||||
option key '<encryption key'
|
||||
```
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user