Configuration questions RB411

I have a RB411 used as CPE and have a few questions.

  1. Can I limit the Lan down and upload speeds via the CPE RB411 or would I only be
    able to take care of this at the core switch that the AP is connected to ?

  2. How would I NAT the WAN and Lan ports ?

  3. Is the WAN port auto setup to grap and IP if its in a DHCP network or are there settings
    I need to configure to accomplish this ??

Thanks

Yes you can. A simple queue for your ether1 address space should be sufficient.
http://www.mikrotik.com/testdocs/ros/3.0/qos/queue.php


The AP you’re connected to should be handling NAT for your WAN interface. For the lan, you have one of two options:
/ip firewall nat add chain=srcnat action=masquerade out-interface=WAN or
/ip firewall nat add chain=srcnat action=masquerade src-address=x.x.x.0/24 (substitute your lan address space)
http://www.mikrotik.com/testdocs/ros/3.0/qos/nat.php

No. I assume your WAN is connected to the AP and is running. You will have to enable dhcp-client for your WAN interface.
http://www.mikrotik.com/testdocs/ros/3.0/pnp/dhcp.php

Thanks for the information, I will go through it and let you know how I make out.