Is this possible, to share wireless Internet to wireless LAN on Oleg firmware without second AP?
I've found tutorial for OpenWRT:
/etc/config/network
/etc/config/wireless
Should I switch to OpenWRT or is this possible for Oleg firmware to work the same WiFi interface as ISP client and Access Point at the same time?
I've found tutorial for OpenWRT:
/etc/config/network
Code:
config 'interface' 'lan'
option 'type' 'bridge'
option 'ifname' 'eth0.0'
option 'proto' 'static'
option 'netmask' '255.255.255.0'
option 'dns' '192.168.1.1'
option 'ipaddr' '192.168.1.1'
config 'interface' 'wan'
option 'proto' 'dhcp'
/etc/config/wireless
Code:
config 'wifi-device' 'wl0'
option 'type' 'broadcom'
option 'channel' '6'
config 'wifi-iface' 'cfg2'
option 'device' 'wl0'
option 'mode' 'sta'
option 'network' 'wan'
option 'ssid' 'MY_ISP'
option 'encryption' 'psk2'
option 'key' '0987654321'