It depends on what you want to do from the wireless clients. If all you want/need is Internet access, then there isn't much you need to do besides hook the wireless router up in it's default setup. If you want to connect with other computers on the wired LAN, then you might have to do a little more work.
The issue is the difference between an access point (bridge) and a router. You most likely have a router and not an access point (although some routers can work as access points). A router's job is to connect two different networks together. The access point simply allows the wireless clients to exist on the same network. If you don't understand IP networking, then all this techno-babble, won't mean much, but if you want to use the wireless router, you are going to need to set it up manually like this:
The 'Internet' interface on the router will need a static (assigned) IP address in the same class network that the main LAN router uses. You will have to assign a different network to the client side (wireless and LAN) and add a static route from all clients back to the address of the Internet interface of the wireless router. Something like this:
Main LAN - 192.168.0.x
Main LAN router - 192.168.0.1
Main LAN static route set same as clients (see below)
Wireless router Internet interface - 192.168.0.254
Wireless router network - 192.168.1.x
Wireless router client interface - 192.168.1.1
Wireless router default route - 192.168.0.1
NAT services turned OFF on wireless router
The static route that the main LAN router and clients must use:
route add net 192.168.1.0 mask 255.255.255.0 192.168.0.254 1
That means send all packets destined for the wireless LAN clients to the wireless LAN router's wired interface.
Lesson two on routing begins in 15 minutes
