Looks like you run allmost the same setup as we have.
You must do the following on your edge switches (4400's):
* Create VLAN's needed on that edge switch
* assign VLAN's to ports (untagged)
* assign vlans to your trunk ports (port connected to your core)... i assume vlan 1 is used for management so assign vlan 1 UNtagged to that trunk port. assign all other vlans tagged to that trunk port.
Now the core switch (here is all routing done):
* Create vlan's on the core switch like
Code:
vlan 1
description Default VLAN
name VLAN001
#
vlan 2
description VLAN002
name VLAN002
#
vlan 3
description VLAN003
name VLAN003
*Create vlan interfaces on the core switch like :
Code:
interface Vlan-interface1
ip address 10.200.0.2 255.255.0.0
#
interface Vlan-interface2
ip address 10.202.10.1 255.255.254.0
dhcp-server 1
#
interface Vlan-interface3
ip address 10.202.12.1 255.255.254.0
dhcp-server 1
* note the dhcp-server command used.. this is your dhcp-forwarder .. now enter the command were the dhcp server can be found:
Code:
dhcp-server 1 ip 10.202.200.201
*assign vlans to trunk ports
Code:
interface GigabitEthernet1/0/25
port link-type trunk
port trunk permit vlan 1 2 3
flow-control
broadcast-suppression pps 3000
*now the ACL's are a different story and it depends on your network setup. If you want everybody to access every subnet then you do not need to do anything.. by default all traffic is allowed. If not then you need the create ACL's and assign the ACL's the the interfaces (use the packet-filter command).
Hope this helps somehow.
bio..