No, that is not right. 'lan' should be the wifi and 'wan' the eth. Double-check in /etc/config/wireless that the wifi is also option network to lan not wan. You don't need the option bridge line since there is only going to be one interface on lan but there is probably no harm in leaving it in.
Since you know your modem is always going to be 192.168.0.1, you can set wan to a static IP in the 192.168.0 range but you also need to configure (in section 'wan')
option gateway '192.168.0.1'
option dns '192.168.0.1'
so that it knows how to get to the Internet.
I usually do everything possible over luci so command line stuff is pushing the limits of my knowledge.
I think the key to making a DHCP server is in /etc/config/dhcp, where you should have something like this:
config dhcp 'lan'
option interface 'lan'
option dhcpv6 'server'
option ra 'server'
option ra_management '1'
option start '100'
option limit '150'
option leasetime '12h'
so it will give your wifi users an address between 192.168.1.100 and 192.168.1.250. Do not have an option ignore line in there, because as the name suggests, that will shut down the server.
(Last edited by mk24 on 14 Nov 2014, 01:54)