I was using OpenWrt 0.9 for quite long and decided to upgrade it to latest version of Kamikaze 8.09.
I set the wired configuration via the web GUI and everything worked as expected. For the Wi-Fi I could not find a good documentation. The best was probably at:
http://wiki.openwrt.org/oldwiki/openwrt … figuration
So I created:
/etc/config/wireless file:
=============================
config 'wifi-device' 'wifi'
option 'type' 'broadcom'
option 'channel' '5'
option 'disabled' '0'
config 'wifi-iface'
option 'device' 'wifi'
option 'network' 'lan'
option 'mode' 'ap'
option 'ssid' 'OpenWrt'
option 'hidden' '0'
option 'encryption' 'none'
==============================
However after the reboot the SSID was not seen as I expected.
Any ideas about the problem or proper documentation are welcome.
The other two files that I think are related are default from the installation:
/ect/config/network:
=============================
config 'switch' 'eth0'
option 'vlan0' '1 2 3 4 5*'
option 'vlan1' '0 5'
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 'ifname' 'eth0.0'
option 'proto' 'static'
option 'ipaddr' '192.168.1.254'
option 'gateway' '192.168.1.1'
option 'dns' '192.168.1.1'
option 'netmask' '255.255.255.192'
config 'interface' 'wan'
option 'ifname' 'eth0.1'
option 'proto' 'static'
option 'netmask' '255.255.255.0'
option 'gateway' '192.168.1.1'
option 'dns' '192.168.1.1'
option 'ipaddr' '192.168.1.70'
============================
/etc/config/dhcp:
===============================
config 'dnsmasq'
option 'domainneeded' '1'
option 'boguspriv' '1'
option 'filterwin2k' '0'
option 'localise_queries' '1'
option 'local' '/lan/'
option 'domain' 'lan'
option 'expandhosts' '1'
option 'nonegcache' '0'
option 'authoritative' '1'
option 'readethers' '1'
option 'leasefile' '/tmp/dhcp.leases'
option 'resolvfile' '/tmp/resolv.conf.auto'
config 'dhcp' 'lan'
option 'interface' 'lan'
option 'leasetime' '12h'
option 'ignore' '0'
option 'start' '192'
option 'limit' '5'
config 'dhcp' 'wan'
option 'interface' 'wan'
option 'ignore' '1'
====================================