The only issue I ran into was running multiple DHCP servers via SVIs (and the only one that gave me trouble was the VOIP dhcp pool).
Running DHCP on cisco is easy, and it also allows you to guard against DHCP snooping/spoofing. I can understand why your boss would want to do it.
At the barest minimum, you just type this (we'll use 192.168.1.X/24 for an example)
ip dhcp excluded-addresses 192.168.1.1[start ip] 192.168.1.50 [end ip]
then create a pool:
ip dhcp pool [NAME] network 192.168.1.0 255.255.255.0 ip default-router 192.168.1.1
and that's it. You can create more than one, especially if you're using an L3 switch. Then you can have a pool for each SVI.
|