White Paper DHCP across VLANS

  • Thread starter Thread starter CurtisC
  • Start date Start date
C

CurtisC

Does anyone have any experience setting up a DHCP pool on
a VLAN that can be accessed across multiple VLANS? Any
white papers or tech papers on how to setup something like
this using Cisco Switches?

Thanks
 
Just make 1 scope per. Vlan. and on the Cisco Switch you might have to put
on spanning-tree portfast (every port) if this is across at router put on
"ip helper + ip address of the dhcp server"

(like this:
interface GigabitEthernet3.4
description *** Vlan 4 til Print-net ***
encapsulation dot1Q 4
ip address 10.168.40.2 255.255.254.0
ip helper-address 10.168.16.43

and the switch.
interface FastEthernet0/5
switchport access vlan 3
spanning-tree portfast)
 
Back
Top