Wan,
Basically, there are 2 x design models that you can use with wireless:
- Centralised / Tunnelled : All wireless traffic is tunnelled to the controller where it egressed into the appropriate VLAN.
- Distributed / Bridged : All wireless traffic is egressed directly into the appropriate VLAN from the AP.
The design decisions behind these models are well documented and easily googleable, however if using an MSM760 in the enterprise, I would recommend using a distributed design as the appliance only has 1 x 1GbE LAN interface (hospitality/guest/BYOD is different).
Assuming that you are implementing a distributed design, and (for the purposes of this config) that the MSM760 and APs are in VLAN 5, I would do the following:
# Controller = Access Port in VLAN 5
interface 1/0/X
description MSM Controller
port link-type access
port access vlan 5
#
# APs = Trunk port, pvid = 5, allowing 5,10,20,30
interface 1/0/Y
description MSM Controller
port link-type trunk
port trunk permit vlan 5,10,20,30
port trunk pvid vlan 5
poe enable
#
I wouldn't configure the DHCP relay on the MSM controller, but instead put the config on the VLAN interfaces of vlan 10, 20 and 30 of the 5800.
dhcp relay server-group 1 ip A.B.C.D
dhcp enable
interface Vlan-interface10
ip address ...............
dhcp select relay
dhcp relay server-select 1
#
interface Vlan-interface20
ip address ...............
dhcp select relay
dhcp relay server-select 1
#
interface Vlan-interface30
ip address ...............
dhcp select relay
dhcp relay server-select 1
#
I hope that this helps.
Regards,
Pete W